/* ==========================================================================
           1. GLOBAL VARIABLES & RESET
           ========================================================================== */
        :root {
            --primary: #3A8CFF;
            --primary-light: #6DAAFF;
            --primary-dark: #2260C2;
            --secondary: rgb(244, 106, 0);
            --secondary-light: rgb(255, 140, 51);
            --secondary-dark: rgb(200, 85, 0);
            --dark-bg: #0F2547;
            --dark-bg-elevated: #16325C;
            --dark-bg-glass: rgba(15, 37, 71, 0.85);
            --light-bg: #F8FAFC;
            --light-gray: #E2E8F0;
            --text-dark: #1E293B;
            --text-light: #64748B;
            --text-white: #FFFFFF;
            --text-off-white: #F1F5F9;
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(255, 255, 255, 0.2);
            --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
            
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            --transition-fast: 0.2s ease;
            --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            
            --border-radius-sm: 8px;
            --border-radius-md: 16px;
            --border-radius-lg: 24px;
            --border-radius-pill: 60px;
            
            --container-width: 1320px;
            --container-padding: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--light-bg);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

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

        ul {
            list-style: none;
        }

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

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background-color: rgba(58, 140, 255, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: var(--border-radius-pill);
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            font-family: var(--font-heading);
        }

        .section-title {
            font-size: 3rem;
            color: var(--dark-bg);
        }

        .section-title span {
            color: var(--primary);
        }

        .section-desc {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
            font-size: 1.125rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 32px;
            border-radius: var(--border-radius-pill);
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition-medium);
            border: none;
            outline: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--text-white);
            box-shadow: 0 4px 14px rgba(58, 140, 255, 0.39);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(58, 140, 255, 0.23);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--text-white);
            box-shadow: 0 4px 14px rgba(244, 106, 0, 0.39);
        }

        .btn-secondary:hover {
            background-color: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(244, 106, 0, 0.23);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

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

        /* ==========================================================================
           2. TOP UTILITY BAR
           ========================================================================== */
        .top-bar {
            background-color: var(--dark-bg);
            color: var(--text-white);
            padding: 8px 0;
            font-size: 0.875rem;
            position: relative;
            z-index: 100;
        }

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

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

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

        .top-bar-item i {
            color: var(--primary);
        }

        .top-bar-item a:hover {
            color: var(--primary);
        }

        /* ==========================================================================
           3. FLOATING PILL GLASSMORPHIC HEADER
           ========================================================================== */
        header {
            position: fixed;
            top: 50px;
            left: 0;
            width: 100%;
            z-index: 999;
            transition: all var(--transition-medium);
            padding: 0 24px;
        }

        header.scrolled {
            top: 12px;
        }

        .header-inner {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius-pill);
            padding: 12px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--glass-shadow);
            max-width: var(--container-width);
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-container img {
            height: 48px;
            width: auto;
        }

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

        .nav-item {
            position: relative;
        }

        .nav-link {
            font-family: var(--font-heading);
            font-weight: 600;
            color: var(--dark-bg);
            padding: 8px 0;
            display: inline-block;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width var(--transition-fast);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        /* Dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: #ffffff;
            border-radius: var(--border-radius-md);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            min-width: 260px;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-fast);
            padding: 16px 0;
            border: 1px solid var(--light-gray);
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(10px);
        }

        .dropdown-item {
            display: block;
            padding: 10px 24px;
            color: var(--text-dark);
            font-family: var(--font-heading);
            font-weight: 500;
            transition: all var(--transition-fast);
        }

        .dropdown-item:hover {
            background-color: var(--light-bg);
            color: var(--primary);
            padding-left: 32px;
        }

        /* Header Right */
        .header-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .google-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            padding: 8px 16px;
            border-radius: var(--border-radius-pill);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid var(--light-gray);
        }

        .google-badge img {
            width: 24px;
            height: 24px;
        }

        .google-badge-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .google-badge-rating {
            font-weight: 700;
            font-size: 0.875rem;
            color: #333;
        }

        .google-badge-stars {
            color: #fbbc04;
            font-size: 0.75rem;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-phone-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: rgba(244, 106, 0, 0.1);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            animation: pulse-orange 2s infinite;
        }

        @keyframes pulse-orange {
            0% { box-shadow: 0 0 0 0 rgba(244, 106, 0, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(244, 106, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(244, 106, 0, 0); }
        }

        .header-phone-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .header-phone-label {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .header-phone-number {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.125rem;
            color: var(--dark-bg);
        }

        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--dark-bg);
            cursor: pointer;
        }

        /* ==========================================================================
           4. HERO SECTION
           ========================================================================== */
        .hero {
            position: relative;
            padding: 200px 0 100px;
            background-color: var(--dark-bg);
            overflow: hidden;
            color: var(--text-white);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://cal.amang.in/wp-content/uploads/2026/09/HVAC-1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.3;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(15, 37, 71, 1) 0%, rgba(15, 37, 71, 0.8) 50%, rgba(15, 37, 71, 0.4) 100%);
            z-index: 2;
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }

        .shape-1 {
            top: -10%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: rgba(58, 140, 255, 0.3);
        }

        .shape-2 {
            bottom: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(244, 106, 0, 0.2);
        }

        .hero .container {
            position: relative;
            z-index: 10;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        /* Hero Content Left */
        .hero-content {
            animation: fadeUp 1s ease forwards;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: var(--border-radius-pill);
            backdrop-filter: blur(4px);
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .hero-tag i {
            color: var(--secondary);
        }

        .hero-title {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
        }

        .hero-title span {
            color: var(--primary-light);
            position: relative;
            display: inline-block;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--secondary);
            z-index: -1;
            border-radius: 4px;
            opacity: 0.8;
        }

        .hero-desc {
            font-size: 1.25rem;
            color: var(--text-off-white);
            margin-bottom: 40px;
            max-width: 600px;
        }

        /* Trust Chips */
        .trust-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 48px;
        }

        .trust-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: var(--border-radius-md);
            font-size: 0.9375rem;
            font-weight: 500;
        }

        .trust-chip i {
            color: #22C55E;
            font-size: 1.125rem;
        }

        /* Interactive Service Explorer (Tabs in Hero) */
        .hero-explorer {
            background: rgba(22, 50, 92, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-lg);
            padding: 24px;
            margin-top: 40px;
        }

        .explorer-header {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 16px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .explorer-header::-webkit-scrollbar {
            display: none;
        }

        .explorer-tab {
            padding: 10px 20px;
            border-radius: var(--border-radius-pill);
            background: transparent;
            color: var(--text-off-white);
            border: 1px solid transparent;
            cursor: pointer;
            font-family: var(--font-heading);
            font-weight: 600;
            white-space: nowrap;
            transition: all var(--transition-fast);
        }

        .explorer-tab:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .explorer-tab.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .explorer-content {
            position: relative;
            min-height: 120px;
        }

        .explorer-pane {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-medium);
            transform: translateY(10px);
        }

        .explorer-pane.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            position: relative;
        }

        .explorer-pane h4 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: white;
        }

        .explorer-pane p {
            color: var(--text-off-white);
            font-size: 0.9375rem;
            margin-bottom: 16px;
        }

        .explorer-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .explorer-list li {
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .explorer-list li i {
            color: var(--primary-light);
            font-size: 0.75rem;
        }

        /* Hero Form Right */
        .hero-form-wrapper {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            color: var(--text-dark);
            animation: fadeInRight 1s ease forwards 0.3s;
            opacity: 0;
        }

        .hero-form-header {
            margin-bottom: 24px;
            text-align: center;
        }

        .hero-form-header h3 {
            font-size: 2rem;
            color: var(--dark-bg);
            margin-bottom: 8px;
        }

        .hero-form-header p {
            color: var(--text-light);
            font-size: 0.9375rem;
        }

        .booking-form .form-group {
            margin-bottom: 16px;
        }

        .booking-form .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--dark-bg);
        }

        .booking-form .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--light-gray);
            border-radius: var(--border-radius-md);
            background: rgba(255, 255, 255, 0.9);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all var(--transition-fast);
        }

        .booking-form .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(58, 140, 255, 0.1);
        }

        .booking-form select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .booking-form .btn-submit {
            width: 100%;
            padding: 16px;
            margin-top: 8px;
            font-size: 1.125rem;
        }

        .form-footer {
            margin-top: 16px;
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .form-footer i {
            color: #22C55E;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* ==========================================================================
           5. STATS BAR (ANIMATED COUNTERS)
           ========================================================================== */
        .stats-section {
            background-color: var(--primary);
            padding: 40px 0;
            color: white;
            position: relative;
            z-index: 20;
            margin-top: -30px; /* Overlap hero slightly */
            border-radius: var(--border-radius-lg);
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

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

        .stat-item {
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.9;
        }

        /* ==========================================================================
           6. CERTIFICATION BADGES STRIP
           ========================================================================== */
        .badges-section {
            padding: 20px 0;
            background-color: #fff;
            border-bottom: 1px solid var(--light-gray);
            overflow: hidden;
        }

        .badges-track {
            display: flex;
            align-items: center;
            gap: 40px;
            white-space: nowrap;
            animation: scrollBadges 20s linear infinite;
            width: max-content;
        }

        .badges-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollBadges {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .badge-item {
            flex-shrink: 0;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-light);
            gap: 10px;
            padding: 12px 0;
        }

        .badge-item:hover {
            filter: grayscale(0%);
            opacity: 1;
            color: var(--dark-bg);
        }

        .badge-separator {
            flex-shrink: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--light-gray);
        }

        /* ==========================================================================
           7. ABOUT US / OWNER STORY
           ========================================================================== */
        .about-section {
            background-color: var(--light-bg);
            overflow: hidden;
        }

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

        .about-images {
            position: relative;
            padding-right: 40px;
            padding-bottom: 40px;
        }

        .about-img-main {
            border-radius: var(--border-radius-lg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .about-img-main img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .about-img-main:hover img {
            transform: scale(1.05);
        }

        .about-img-secondary {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 55%;
            border: 10px solid var(--light-bg);
            border-radius: var(--border-radius-lg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            z-index: 3;
            overflow: hidden;
        }

        .about-img-secondary img {
            width: 100%;
            height: auto;
        }

        .about-experience-badge {
            position: absolute;
            top: 40px;
            left: -30px;
            background-color: var(--secondary);
            color: white;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 4;
            box-shadow: 0 10px 20px rgba(244, 106, 0, 0.3);
            border: 8px solid white;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .about-experience-badge .years {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
        }

        .about-experience-badge .text {
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .about-content p {
            color: var(--text-light);
            font-size: 1.125rem;
            margin-bottom: 24px;
        }

        .signature-box {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid var(--light-gray);
        }

        .owner-info h4 {
            margin: 0;
            font-size: 1.25rem;
            color: var(--dark-bg);
        }

        .owner-info span {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9375rem;
        }

        /* ==========================================================================
           8. CORE SERVICES (MIXED LAYOUTS)
           ========================================================================== */
        .services-section {
            background-color: #fff;
        }

        /* Large Hero Feature Cards */
        .services-hero-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .srv-hero-card {
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            position: relative;
            min-height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            transition: all var(--transition-medium);
            text-decoration: none;
        }

        .srv-hero-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .srv-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1;
            transition: transform var(--transition-slow);
        }

        .srv-hero-card:hover .srv-hero-bg {
            transform: scale(1.05);
        }

        /* Dark Card for Slab Leaks */
        .card-dark .srv-hero-bg {
            background-image: url('https://cal.amang.in/wp-content/uploads/2026/09/plumbingem-1.jpg');
        }

        .card-dark .srv-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15,37,71,0.9) 0%, rgba(15,37,71,0.4) 100%);
            z-index: 2;
        }

        .card-dark .srv-content {
            position: relative;
            z-index: 3;
            color: white;
        }

        .card-dark .srv-title {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .card-dark .srv-desc {
            color: rgba(255,255,255,0.8);
            font-size: 1.125rem;
            margin-bottom: 24px;
        }

        /* Light Bordered Card for HVAC */
        .card-light {
            background-color: var(--light-bg);
            border: 1px solid var(--light-gray);
            justify-content: flex-start;
        }

        .card-light .srv-hero-bg {
            height: 50%;
            top: auto;
            bottom: 0;
            background-image: url('https://cal.amang.in/wp-content/uploads/2026/09/hvacrepair-1.jpg');
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
        }

        .card-light .srv-content {
            position: relative;
            z-index: 3;
            background: var(--light-bg);
            border-radius: var(--border-radius-md);
            padding: 30px;
            margin: 10px;
        }



        .card-light .srv-title {
            color: var(--dark-bg);
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .card-light .srv-desc {
            color: var(--text-light);
            font-size: 1.125rem;
            margin-bottom: 24px;
        }

        .srv-feature-list {
            list-style: none;
            margin-bottom: 24px;
        }

        .srv-feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .card-dark .srv-feature-list li {
            color: white;
        }

        .card-light .srv-feature-list li {
            color: var(--text-dark);
        }

        .srv-feature-list i {
            color: var(--primary);
            background: rgba(255,255,255,0.9);
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 0.75rem;
        }

        .card-dark .srv-feature-list i {
            background: rgba(255,255,255,0.2);
            color: var(--secondary);
        }

        .srv-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.125rem;
            transition: gap var(--transition-fast);
        }

        .card-dark .srv-link {
            color: var(--secondary);
        }

        .card-light .srv-link {
            color: var(--primary);
        }

        .srv-hero-card:hover .srv-link {
            gap: 16px;
        }

        /* Medium Icon+Text Cards */
        .services-medium-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .srv-med-card {
            background: white;
            border: 1px solid var(--light-gray);
            border-radius: var(--border-radius-lg);
            padding: 40px 30px;
            transition: all var(--transition-medium);
            position: relative;
            overflow: hidden;
        }

        .srv-med-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-medium);
        }

        .srv-med-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        .srv-med-card:hover::before {
            transform: scaleX(1);
        }

        .srv-med-icon {
            width: 70px;
            height: 70px;
            background: var(--light-bg);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 24px;
            transition: all var(--transition-fast);
        }

        .srv-med-card:hover .srv-med-icon {
            background: var(--primary);
            color: white;
        }

        .srv-med-title {
            font-size: 1.5rem;
            color: var(--dark-bg);
            margin-bottom: 16px;
        }

        .srv-med-desc {
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .srv-med-link {
            color: var(--dark-bg);
            font-weight: 700;
            font-family: var(--font-heading);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .srv-med-card:hover .srv-med-link {
            color: var(--primary);
        }

        /* Image+Text Row for Water Heaters */
        .services-image-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: var(--dark-bg);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            margin-bottom: 60px;
        }

        .srv-img-col {
            position: relative;
            min-height: 400px;
        }

        .srv-img-col img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .srv-text-col {
            padding: 60px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .srv-text-col .section-tag {
            background: rgba(255,255,255,0.1);
            color: var(--secondary);
            align-self: flex-start;
        }

        .srv-text-col h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .srv-text-col p {
            color: var(--text-off-white);
            font-size: 1.125rem;
            margin-bottom: 30px;
        }

        .wh-brands {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .wh-brand {
            background: white;
            padding: 8px 16px;
            border-radius: var(--border-radius-sm);
            color: var(--dark-bg);
            font-weight: 800;
            font-family: var(--font-heading);
            font-size: 1.25rem;
        }

        /* ==========================================================================
           9. WATER HEATER COMPARISON TABLE
           ========================================================================== */
        .comparison-section {
            background-color: var(--light-bg);
        }

        .table-wrapper {
            background: white;
            border-radius: var(--border-radius-lg);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            overflow: hidden;
            border: 1px solid var(--light-gray);
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .compare-table th, .compare-table td {
            padding: 24px;
            border-bottom: 1px solid var(--light-gray);
        }

        .compare-table th {
            background-color: var(--dark-bg);
            color: white;
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 600;
            width: 33.333%;
        }

        .compare-table th:first-child {
            background-color: var(--dark-bg-elevated);
        }

        .compare-table tr:last-child td {
            border-bottom: none;
        }

        .compare-table td {
            font-size: 1rem;
            color: var(--text-dark);
            vertical-align: top;
        }

        .compare-table td:first-child {
            font-weight: 600;
            font-family: var(--font-heading);
            color: var(--dark-bg);
            font-size: 1.125rem;
            background-color: var(--light-bg);
        }

        .check-icon { color: #22C55E; margin-right: 8px; }
        .times-icon { color: #EF4444; margin-right: 8px; }
        .warn-icon { color: #F59E0B; margin-right: 8px; }

        /* ==========================================================================
           10. WHY CHOOSE US (4 ICON CARDS)
           ========================================================================== */
        .why-us-section {
            background-color: #fff;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .why-card {
            text-align: center;
            padding: 40px 24px;
            border-radius: var(--border-radius-lg);
            background: var(--light-bg);
            transition: all var(--transition-medium);
            border: 1px solid transparent;
        }

        .why-card:hover {
            background: white;
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(58, 140, 255, 0.1);
            transform: translateY(-10px);
        }

        .why-icon-wrap {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all var(--transition-fast);
        }

        .why-card:hover .why-icon-wrap {
            background: var(--primary);
            color: white;
        }

        .why-title {
            font-size: 1.25rem;
            color: var(--dark-bg);
            margin-bottom: 16px;
        }

        .why-desc {
            color: var(--text-light);
            font-size: 0.9375rem;
        }

        /* ==========================================================================
           11. HOW WE WORK (PROCESS STEPS)
           ========================================================================== */
        .process-section {
            background-color: var(--dark-bg);
            color: white;
        }

        .process-section .section-title {
            color: white;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
        }

        /* Connecting Line */
        .process-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: dashed 2px rgba(255,255,255,0.2);
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--dark-bg);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            box-shadow: 0 0 0 8px rgba(58, 140, 255, 0.1);
            transition: all var(--transition-fast);
        }

        .process-step:hover .step-number {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .step-title {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .step-desc {
            color: var(--text-off-white);
            opacity: 0.8;
        }

        /* ==========================================================================
           12. CUSTOMER REVIEWS (3-COLUMN)
           ========================================================================== */
        .reviews-section {
            background-color: var(--light-bg);
        }

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

        .review-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--border-radius-lg);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid var(--light-gray);
            position: relative;
        }

        .review-quote-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 3rem;
            color: var(--light-bg);
            z-index: 1;
        }

        .stars {
            color: #fbbc04;
            font-size: 1.25rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .review-text {
            font-size: 1.0625rem;
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            line-height: 1.8;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            z-index: 2;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .review-card:nth-child(2n) .reviewer-avatar { background: var(--secondary); }
        .review-card:nth-child(3n) .reviewer-avatar { background: var(--dark-bg); }

        .reviewer-name h5 {
            margin: 0;
            font-size: 1.125rem;
            color: var(--dark-bg);
        }

        .reviewer-name span {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .reviews-action {
            text-align: center;
            margin-top: 50px;
        }

        /* ==========================================================================
           13. INTERACTIVE MAP & SERVICE AREAS
           ========================================================================== */
        .map-section {
            padding: 0;
            position: relative;
        }

        .map-container {
            position: relative;
            height: 600px;
            width: 100%;
            background-color: #e5e3df;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(20%) contrast(1.1);
        }

        .service-areas-overlay {
            position: absolute;
            top: 50px;
            left: 5%;
            width: 400px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border: 1px solid var(--glass-border);
            z-index: 10;
        }

        .area-title {
            font-size: 2rem;
            color: var(--dark-bg);
            margin-bottom: 24px;
        }

        .city-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .city-tab {
            padding: 8px 16px;
            background: white;
            border: 1px solid var(--light-gray);
            border-radius: var(--border-radius-pill);
            cursor: pointer;
            font-size: 0.9375rem;
            font-weight: 500;
            transition: all var(--transition-fast);
        }

        .city-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .city-tab.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .city-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .city-content.active {
            display: block;
        }

        .city-content h4 {
            font-size: 1.25rem;
            color: var(--dark-bg);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .city-content h4 i {
            color: var(--secondary);
        }

        .city-content p {
            color: var(--text-light);
            font-size: 0.9375rem;
            margin-bottom: 20px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ==========================================================================
           14. FAQ ACCORDION
           ========================================================================== */
        .faq-section {
            background-color: #fff;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 16px;
            border: 1px solid var(--light-gray);
            border-radius: var(--border-radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(58, 140, 255, 0.05);
        }

        .faq-question {
            padding: 24px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question h4 {
            margin: 0;
            font-size: 1.125rem;
            color: var(--dark-bg);
            font-family: var(--font-body);
            font-weight: 600;
        }

        .faq-toggle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all var(--transition-fast);
        }

        .faq-item.active .faq-toggle {
            background: var(--primary);
            color: white;
            transform: rotate(45deg);
        }

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

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 24px 24px;
        }

        .faq-answer p {
            margin: 0;
            color: var(--text-light);
            border-top: 1px solid var(--light-gray);
            padding-top: 20px;
        }

        /* ==========================================================================
           15. EMERGENCY CTA BANNER
           ========================================================================== */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: radial-gradient(circle at 20% 50%, white 2px, transparent 2px),
                              radial-gradient(circle at 80% 30%, white 2px, transparent 2px);
            background-size: 50px 50px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3.5rem;
            margin-bottom: 24px;
            color: white;
        }

        .cta-desc {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 24px;
        }

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

        .btn-white:hover {
            background: var(--light-bg);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .btn-outline-white {
            border: 2px solid white;
            color: white;
        }

        .btn-outline-white:hover {
            background: white;
            color: var(--secondary-dark);
        }

        /* ==========================================================================
           16. FULL 4-COLUMN FOOTER
           ========================================================================== */
        footer {
            background-color: var(--dark-bg);
            color: var(--text-off-white);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-logo {
            margin-bottom: 24px;
            height: 60px;
            filter: brightness(0) invert(1);
        }

        .footer-col p {
            color: var(--text-light);
            margin-bottom: 24px;
            font-size: 0.9375rem;
        }

        .footer-socials {
            display: flex;
            gap: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all var(--transition-fast);
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-light);
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

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

        .footer-links a::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.75rem;
        }

        .footer-contact-info {
            list-style: none;
        }

        .footer-contact-info li {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .footer-contact-info i {
            color: var(--primary);
            font-size: 1.25rem;
            margin-top: 4px;
        }

        .footer-contact-info strong {
            display: block;
            color: white;
            margin-bottom: 4px;
            font-family: var(--font-heading);
            font-weight: 600;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* ==========================================================================
           17. MOBILE STICKY CALL BAR & RESPONSIVE
           ========================================================================== */
        .mobile-sticky-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 12px 24px;
        }

        .mobile-sticky-inner {
            display: flex;
            gap: 16px;
        }

        .mobile-sticky-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            border-radius: var(--border-radius-pill);
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
        }

        .btn-call-mobile {
            background: var(--secondary);
            color: white;
        }

        .btn-book-mobile {
            background: var(--primary);
            color: white;
        }

        /* Media Queries */
        @media (max-width: 1200px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-form-wrapper { max-width: 600px; margin: 0 auto; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .stat-item:nth-child(2)::after { display: none; }
            .process-grid::before { display: none; }
        }

        @media (max-width: 1024px) {
            .header-inner { padding: 12px 24px; }
            .nav-menu, .header-right .google-badge { display: none; }
            .mobile-menu-toggle { display: block; }
            
            .about-grid, .services-image-row { grid-template-columns: 1fr; }
            .about-images { margin-bottom: 40px; }
            .services-hero-row { grid-template-columns: 1fr; }
            .services-medium-row { grid-template-columns: repeat(2, 1fr); }
            .why-us-grid { grid-template-columns: repeat(2, 1fr); }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .section-padding { padding: 60px 0; }
            .hero { padding: 150px 0 60px; }
            .hero-title { font-size: 3rem; }
            
            .services-medium-row, .why-us-grid, .process-grid, .reviews-grid, .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid { grid-template-columns: 1fr; }
            .stat-item::after { display: none; }
            
            .compare-table th, .compare-table td { padding: 16px 12px; font-size: 0.875rem; }
            
            .service-areas-overlay {
                position: relative;
                top: 0;
                left: 0;
                width: 100%;
                border-radius: 0;
                box-shadow: none;
            }
            .map-container { height: auto; display: flex; flex-direction: column-reverse; }
            .map-container iframe { height: 400px; }
            
            .mobile-sticky-bar { display: block; }
            footer { padding-bottom: 100px; } /* Space for sticky bar */
            .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
            
            .cta-title { font-size: 2.5rem; }
            .cta-buttons { flex-direction: column; }
        }

        /* --- MOBILE MENU AND RESPONSIVE FIXES --- */

        /* VIP Section Styles */
        .vip-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2a40 100%);
            position: relative;
            overflow: hidden;
        }
        .vip-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(225, 112, 19, 0.1) 0%, transparent 40%);
            pointer-events: none;
        }
        .text-white { color: var(--text-white); }

        .vip-highlights {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .vip-highlight-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-lg);
            padding: 32px 24px;
            text-align: center;
            transition: all var(--transition-medium);
            position: relative;
        }

        .vip-highlight-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .vip-highlight-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(58, 140, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--primary-light);
        }

        .vip-highlight-card h4 {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .vip-highlight-card p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9375rem;
            margin: 0;
            line-height: 1.5;
        }

        .vip-upgrade-card {
            border-color: rgba(244, 106, 0, 0.3);
            background: rgba(244, 106, 0, 0.05);
        }

        .vip-upgrade-card .vip-highlight-icon {
            background: rgba(244, 106, 0, 0.15);
            color: var(--secondary);
        }

        .vip-upgrade-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary);
            color: white;
            padding: 4px 16px;
            border-radius: var(--border-radius-pill);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .vip-cta-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 48px;
        }

        @media (max-width: 992px) {
            .vip-highlights { grid-template-columns: repeat(2, 1fr); }
        }

        /* Mobile Menu Styles */
        body.mobile-menu-open {
            overflow: hidden;
        }
        .mobile-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-medium);
            pointer-events: none;
        }
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        .nav-menu.mobile-active {
            position: fixed;
            top: 0; right: 0;
            width: 300px;
            height: 100vh;
            background: white;
            z-index: 1002;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 80px 30px 30px;
            box-shadow: -5px 0 30px rgba(0,0,0,0.15);
            transform: translateX(100%);
            transition: transform var(--transition-medium);
            margin: 0;
            overflow-y: auto;
        }
        .nav-menu.mobile-active.slide-in {
            transform: translateX(0);
        }
        .mobile-close {
            display: none;
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 1.5rem;
            color: var(--dark-bg);
            cursor: pointer;
        }
        .nav-menu.mobile-active .mobile-close {
            display: block;
        }
        .nav-menu.mobile-active .nav-item {
            width: 100%;
            border-bottom: 1px solid var(--border-color, #eee);
        }
        .nav-menu.mobile-active .nav-link {
            display: block;
            padding: 15px 0;
            font-size: 1.1rem;
        }
        .nav-menu.mobile-active .dropdown {
            position: static;
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            transform: none;
            display: none;
            padding-left: 15px;
            border-left: 2px solid var(--primary);
            margin-bottom: 15px;
        }
        .nav-menu.mobile-active .nav-item.open .dropdown {
            display: block;
        }
        .mobile-nav-cta {
            display: none;
            width: 100%;
            margin-top: 30px;
        }
        .nav-menu.mobile-active .mobile-nav-cta {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Base <=768px fixes */
        @media (max-width: 768px) {
            .top-bar { display: none; }
            header { top: 0 !important; padding: 0; }
            .header-inner { border-radius: 0; padding: 12px 20px; }
            .stats-section { margin-top: 0; border-radius: 0; width: 100%; }
            .table-wrapper { overflow-x: auto; }
            .footer-grid { display: flex; flex-direction: column; gap: 30px; }
            .srv-hero-card { min-height: 350px; }
            .card-light { clip-path: none; }
        }

        /* Extra small devices <=480px fixes */
        @media (max-width: 480px) {
            .hero-title { font-size: 2.2rem; }
            .trust-chips { flex-direction: column; align-items: flex-start; gap: 10px; }
            .hero-explorer { display: flex; flex-direction: column; overflow: hidden; }
            .explorer-header { overflow-x: auto; white-space: nowrap; padding-bottom: 10px; flex-wrap: nowrap; }
            .hero-form-wrapper { padding: 20px; }
            .service-areas-overlay { width: 100%; max-width: none; right: 0; bottom: 0; border-radius: 0; padding: 20px; }
            .cta-buttons { display: flex; flex-direction: column; width: 100%; }
            .cta-buttons .btn { width: 100%; text-align: center; justify-content: center; }
            .vip-highlights { grid-template-columns: 1fr; }
            .vip-cta-row { flex-direction: column; align-items: stretch; }
            .vip-cta-row .btn { text-align: center; justify-content: center; }
        }

/* ==========================================================================
   WORDPRESS FSE CONTAINER RESETS
   ========================================================================== */
.wp-site-blocks,
.entry-content.wp-block-post-content,
.wp-block-post-content,
.is-layout-flow,
.is-layout-constrained,
.has-global-padding {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    padding-inline: 0 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

body.home {
    background-color: var(--light-bg);
    color: var(--text-dark);
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}
