/* ============================================
   Tomov Plumbing Services
   Professional Plumbing Website Styles
   ============================================ */

/* CSS Custom Properties */
:root {
    --primary: #0e4a6f;
    --primary-light: #1a6b9a;
    --primary-dark: #082d44;
    --secondary: #0891b2;
    --secondary-light: #22d3ee;
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-dark: #0284c7;
    --white: #ffffff;
    --off-white: #f8f9fb;
    --light-gray: #eef1f5;
    --gray: #6b7c93;
    --dark-gray: #4a5568;
    --dark: #0c1929;
    --text: #2d3748;
    --text-light: #718096;
    --success: #27ae60;
    --danger: #e74c3c;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-accent: 0 8px 30px rgba(14, 165, 233, 0.3);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Playfair Display", Georgia, serif;
    --container-width: 1200px;
}

/* Font display swap for CWV */
@font-face {
    font-family: "Inter";
    font-display: swap;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    content-visibility: auto;
}

/* CLS prevention: reserve space for images */
.service-card-img img,
.gallery-item img,
.about-main-image {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.gallery-item-tall img {
    aspect-ratio: 5/6;
}

/* Content-visibility for below-fold sections (CWV) */
.services,
.pricing,
.gallery,
.areas,
.faq,
.testimonials,
.contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    color: var(--primary);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}
h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}
h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}
h4 {
    font-size: 1.1rem;
}

.text-accent {
    color: var(--accent);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.1),
        rgba(14, 165, 233, 0.05)
    );
    color: var(--accent);
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.section-badge-blue {
    background: linear-gradient(
        135deg,
        rgba(41, 128, 185, 0.1),
        rgba(41, 128, 185, 0.05)
    );
    color: var(--secondary);
    border-color: rgba(41, 128, 185, 0.15);
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn i {
    font-size: 0.9em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark), #c0440a);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-dark);
}

.btn-white {
    background: var(--white);
    color: var(--accent);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 38px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ================================
   TOP BAR
   ================================ */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--accent);
    margin-right: 4px;
}

.top-bar-divider {
    opacity: 0.3;
}

.top-bar-right a {
    color: var(--accent-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right a:hover {
    color: var(--white);
}

/* ================================
   HEADER / NAVIGATION
   ================================ */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.logo-light .logo-name {
    color: var(--white);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-light .logo-tagline {
    color: rgba(255, 255, 255, 0.6);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(14, 165, 233, 0.06);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: var(--shadow-accent);
    transition: var(--transition);
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 50%,
        #0a1628 100%
    );
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 20% 80%,
            rgba(14, 165, 233, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 20%,
            rgba(41, 128, 185, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 50% 50%,
            rgba(255, 255, 255, 0.02) 0%,
            transparent 70%
        ),
        url("/images/general-plumbing.jpg") center/cover no-repeat;
    opacity: 0.06;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 8c0 0-8 10-8 16a8 8 0 0 0 16 0c0-6-8-16-8-16z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 80px 20px 120px;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge i {
    color: var(--accent-light);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
    color: var(--accent-light);
    font-size: 0.85rem;
}

/* Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--white);
    max-width: 380px;
    margin-left: auto;
}

.hero-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.hero-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ================================
   STATS SECTION
   ================================ */
.stats {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid var(--secondary-light);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.stat-item:hover::after {
    animation: water-ripple 1.5s ease-out;
}

@keyframes water-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, 0.2);
}

.stat-icon {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: 100px 0;
    background:
        url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q25 10 50 20 T100 20 T150 20 T200 20' fill='none' stroke='%232980b9' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E")
            repeat,
        var(--off-white);
    position: relative;
}

.services::before,
.process::before,
.faq::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 28px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='28' viewBox='0 0 20 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2c0 0-8 10-8 16a8 8 0 0 0 16 0c0-6-8-16-8-16z' fill='%232980b9' fill-opacity='0.25'/%3E%3C/svg%3E")
        no-repeat center;
    background-size: contain;
    z-index: 5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--secondary),
        var(--secondary-light)
    );
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.service-card.featured::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    background: linear-gradient(
        135deg,
        rgba(15, 43, 70, 0.08),
        rgba(15, 43, 70, 0.03)
    );
    color: var(--primary);
    transition: var(--transition);
    border-left: 3px solid rgba(41, 128, 185, 0.25);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-card > p,
.service-card-body > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.service-features li i {
    color: var(--success);
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 12px;
    color: var(--accent-dark);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-badge {
    text-align: left;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-lead {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.1),
        rgba(14, 165, 233, 0.05)
    );
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow:
        inset 0 3px 0 0 rgba(41, 128, 185, 0.2),
        inset 0 -3px 0 0 rgba(41, 128, 185, 0.2);
}

.about-feature h4 {
    margin-bottom: 4px;
    color: var(--primary);
}

.about-feature p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-card-stack {
    position: relative;
    padding: 30px;
}

.about-card-main {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-card-main .about-card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.about-card-main h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.about-card-main p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.about-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-accent);
    text-align: center;
}

.about-card-accent-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.about-card-accent-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-card-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--white);
    color: var(--primary);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.about-card-badge i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ================================
   EMERGENCY BANNER
   ================================ */
.emergency-banner {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.emergency-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='30' viewBox='0 0 60 30' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='9' width='60' height='3' rx='1' fill='%23ffffff' fill-opacity='0.05'/%3E%3Crect x='0' y='18' width='60' height='3' rx='1' fill='%23ffffff' fill-opacity='0.05'/%3E%3Crect x='25' y='7' width='10' height='7' rx='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3Crect x='25' y='16' width='10' height='7' rx='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}

.emergency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--white);
}

.emergency-icon {
    font-size: 2.8rem;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.emergency-content h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.emergency-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* ================================
   PROCESS SECTION
   ================================ */
.process {
    padding: 100px 0;
    background:
        url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q25 10 50 20 T100 20 T150 20 T200 20' fill='none' stroke='%232980b9' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E")
            repeat,
        var(--off-white);
    position: relative;
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    flex: 1;
    max-width: 320px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-accent);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        rgba(15, 43, 70, 0.08),
        rgba(15, 43, 70, 0.03)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.92rem;
}

.process-connector {
    display: flex;
    align-items: center;
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 80px;
    opacity: 0.5;
}

.process-connector i {
    display: none;
}

.process-connector::before {
    content: "";
    display: block;
    width: 50px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='50' height='16' viewBox='0 0 50 16' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='5' width='50' height='6' rx='2' fill='%23e8720c'/%3E%3Crect x='0' y='3' width='8' height='10' rx='1' fill='%23e8720c'/%3E%3Crect x='42' y='3' width='8' height='10' rx='1' fill='%23e8720c'/%3E%3C/svg%3E")
        no-repeat center;
    background-size: contain;
    opacity: 0.7;
}

/* ================================
   SERVICE AREAS SECTION
   ================================ */
.areas {
    padding: 100px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.area-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
    border: 1px solid transparent;
}

.area-item:hover {
    background: var(--white);
    border-color: var(--accent);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.area-item i {
    color: var(--accent);
    font-size: 0.75rem;
}

.areas-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.08),
        rgba(14, 165, 233, 0.03)
    );
    padding: 20px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.areas-note i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.areas-note p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.areas-note a {
    color: var(--accent);
    font-weight: 600;
}

.areas-note a:hover {
    color: var(--accent-dark);
}

/* ================================
   FAQ SECTION
   ================================ */
.faq {
    padding: 100px 0;
    background:
        url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q25 10 50 20 T100 20 T150 20 T200 20' fill='none' stroke='%232980b9' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E")
            repeat,
        var(--off-white);
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    color: var(--accent);
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #f1c40f;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--dark-gray);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.82rem;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: 100px 0;
    background:
        url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q25 10 50 20 T100 20 T150 20 T200 20' fill='none' stroke='%232980b9' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E")
            repeat,
        var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-badge {
    text-align: left;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.1),
        rgba(14, 165, 233, 0.05)
    );
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    color: var(--text-light);
    font-size: 0.92rem;
}

.contact-detail a:hover {
    color: var(--accent);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form {
    padding: 40px;
}

.contact-form h3 {
    margin-bottom: 28px;
    text-align: center;
    font-size: 1.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7c93' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Honeypot — invisible to humans */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Captcha group */
.captcha-group label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.captcha-group label i {
    color: var(--accent);
}

.captcha-q {
    font-weight: 700;
    color: var(--accent);
}

/* Form alerts */
.form-alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert-success {
    background: rgba(39, 174, 96, 0.1);
    color: #1e8449;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.form-alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.82rem;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-note i {
    font-size: 0.75rem;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    margin-top: 20px;
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.92rem;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

.footer-contact-item a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p + p {
    margin-top: 4px;
}

/* ================================
   FLOATING CALL BUTTON
   ================================ */
.floating-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: floating-pulse 2s infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.6);
}

@keyframes floating-pulse {
    0%,
    100% {
        box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
    }
    50% {
        box-shadow:
            0 8px 30px rgba(14, 165, 233, 0.3),
            0 0 0 10px rgba(14, 165, 233, 0.1);
    }
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ================================
   ANIMATIONS
   ================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-card {
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-badge {
        text-align: center;
    }

    .about-card-stack {
        max-width: 450px;
        margin: 0 auto;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info .section-badge {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emergency-inner {
        flex-direction: column;
        text-align: center;
    }

    .emergency-content {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 60px 20px 100px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-card {
        padding: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        margin-top: 0;
        transform: rotate(90deg);
    }

    .process-step {
        max-width: 100%;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .floating-call {
        display: flex;
    }

    .back-to-top {
        left: auto;
        right: 24px;
        bottom: 96px;
    }

    .section-header,
    .services,
    .about,
    .process,
    .areas,
    .faq,
    .testimonials,
    .contact {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .emergency-content h2 {
        font-size: 1.3rem;
    }
}

/* ================================
   SERVICE CARDS WITH IMAGES
   ================================ */
.service-card-img {
    margin: -40px -32px 24px -32px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    height: 200px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body > p {
    flex: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
    margin-top: 20px;
}

.service-price {
    font-size: 0.92rem;
    color: var(--gray);
}

.service-price strong {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 800;
}

/* About Image */
.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-main-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-wrapper .about-card-accent {
    position: absolute;
    top: 0;
    right: 0;
}

.about-image-wrapper .about-card-badge {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* ================================
   PRICING SECTION
   ================================ */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.pricing-popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 6px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 0 0 var(--radius);
}

.pricing-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-card.popular .pricing-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.pricing-card-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.pricing-items {
    margin-bottom: 24px;
}

.pricing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    font-size: 0.92rem;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item span:first-child {
    color: var(--dark-gray);
}

.pricing-amount {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.pricing-more {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--light-gray);
}

.pricing-more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.pricing-more-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
}

.pricing-more-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.12),
        rgba(14, 165, 233, 0.05)
    );
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-more-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.pricing-more-item span {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.pricing-disclaimer {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.pricing-disclaimer i {
    color: var(--secondary);
    margin-right: 4px;
}

.pricing-disclaimer a {
    color: var(--accent);
    font-weight: 600;
}

.pricing-disclaimer a:hover {
    color: var(--accent-dark);
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery {
    padding: 100px 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    width: fit-content;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ================================
   RESPONSIVE: PRICING & GALLERY
   ================================ */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-more-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 768px) {
    .service-card-img {
        margin: -28px -22px 20px -22px;
        height: 180px;
    }

    .pricing-more-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .about-main-image {
        height: 350px;
    }
}

/* ================================
   INNER PAGE HERO
   ================================ */
.page-hero {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 30% 80%,
            rgba(14, 165, 233, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 20%,
            rgba(41, 128, 185, 0.08) 0%,
            transparent 50%
        );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb i {
    font-size: 0.6rem;
}

.breadcrumb span {
    color: var(--accent-light);
}

/* ================================
   SERVICES DETAIL PAGE
   ================================ */
.services-detail {
    padding: 80px 0;
}

.service-detail-block {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 50px 0;
    border-bottom: 1px solid var(--light-gray);
    align-items: start;
}

.service-detail-block:last-child {
    border-bottom: none;
}

.service-detail-block.emergency-detail {
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.05),
        rgba(14, 165, 233, 0.02)
    );
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 165, 233, 0.15);
    margin-top: 20px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.emergency-detail .service-detail-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.service-detail-content h2 {
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.service-detail-content > p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.service-detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 28px;
}

.service-detail-list h4 {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 1rem;
}

.service-detail-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.92rem;
    color: var(--dark-gray);
}

.service-detail-list ul li i {
    font-size: 0.8rem;
}

.service-detail-list ul li .fa-check-circle {
    color: var(--success);
}

.service-detail-list ul li .fa-exclamation-circle {
    color: var(--danger);
}

/* ================================
   ABOUT PAGE
   ================================ */
.about-page {
    padding: 80px 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-page-content h2 {
    margin-bottom: 20px;
}

.about-page-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-page-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: var(--off-white);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, 0.2);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.12),
        rgba(14, 165, 233, 0.05)
    );
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ================================
   CONTACT MAP
   ================================ */
.contact-map iframe {
    box-shadow: var(--shadow);
}

/* ================================
   INNER PAGE RESPONSIVE
   ================================ */
@media (max-width: 768px) {
    .service-detail-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-detail-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page-values {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .service-detail-block.emergency-detail {
        padding: 30px 20px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .header,
    .floating-call,
    .back-to-top,
    .hero-wave,
    .emergency-banner {
        display: none;
    }

    body {
        color: #000;
    }

    .hero {
        background: #f5f5f5;
        min-height: auto;
        padding: 40px 0;
    }

    .hero h1,
    .hero-content {
        color: #000;
    }
}
