:root {
            --maroon: #800020;
            --maroon-dark: #660018;
            --maroon-light: #a0002a;
            --gold: #FFD700;
            --gold-dark: #DAA520;
            --gold-light: #FFF8DC;
            --white: #FFFFFF;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--gray-800);
            overflow-x: hidden;
            font-size: 16px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .navbar {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--maroon);
            font-weight: 800;
            font-size: 1.5rem;
            z-index: 1002;
        }
        
        .nav-logo img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-link:hover {
            color: var(--maroon);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-dropdown {
            position: relative;
        }
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 240px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            padding: 1rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
            z-index: 1001;
        }
        
        .nav-dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-link {
            display: block;
            padding: 0.8rem 1.5rem;
            color: var(--gray-700);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .dropdown-link:hover {
            background: var(--gray-50);
            color: var(--maroon);
        }
        
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .nav-phone {
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        
        .nav-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3);
        }
        
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1002;
            position: relative;
        }
        
        .mobile-menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--maroon);
            border-radius: 3px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
            background: var(--white);
            z-index: 1001;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-y: auto;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
            color: var(--white);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
        }
        
        .mobile-menu-logo img {
            width: 30px;
            height: 30px;
            object-fit: contain;
            background: var(--white);
            border-radius: 6px;
            padding: 3px;
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 4px;
            transition: background 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-menu-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .mobile-menu-items {
            padding: 0;
        }
        
        .mobile-menu-item {
            border-bottom: 1px solid var(--gray-100);
        }
        
        .mobile-menu-item:last-child {
            border-bottom: none;
        }
        
        .mobile-menu-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 1.5rem;
            color: var(--gray-800);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            min-height: 56px;
            background: var(--white);
        }
        
        .mobile-menu-link:hover,
        .mobile-menu-link:focus {
            background: var(--gray-50);
            color: var(--maroon);
            padding-left: 2rem;
        }
        
        .mobile-menu-link.has-dropdown::after {
            content: '▼';
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            color: var(--gray-500);
        }
        
        .mobile-menu-item.active .mobile-menu-link.has-dropdown::after {
            transform: rotate(180deg);
        }
        
        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            background: var(--gray-50);
            transition: max-height 0.4s ease;
        }
        
        .mobile-menu-item.active .mobile-dropdown {
            max-height: 400px;
        }
        
        .mobile-dropdown-link {
            display: flex;
            align-items: center;
            padding: 1rem 2.5rem;
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--gray-200);
            min-height: 48px;
            background: var(--gray-50);
        }
        
        .mobile-dropdown-link:last-child {
            border-bottom: none;
        }
        
        .mobile-dropdown-link:hover,
        .mobile-dropdown-link:focus {
            background: var(--white);
            color: var(--maroon);
            padding-left: 3rem;
        }
        
        .mobile-menu-cta {
            margin: 1.5rem;
            padding: 1rem;
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
            color: var(--white);
            text-decoration: none;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-height: 56px;
            box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
        }
        
        .mobile-menu-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3);
        }
        
        .hero {
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 50%, var(--maroon) 100%);
            color: var(--white);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
            box-sizing: border-box;
        }
        
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            transform: translateX(-50%) translateY(-50%);
            object-fit: cover;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(128, 0, 32, 0.7) 0%, rgba(102, 0, 24, 0.8) 50%, rgba(128, 0, 32, 0.7) 100%);
            z-index: 1;
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            width: 100%;
            min-height: calc(100vh - 160px);
        }
        
        .hero-text {
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid var(--gold);
            border-radius: 50px;
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }
        
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            line-height: 1.5;
            color: var(--gold-light);
        }
        
        .hero-services {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 2rem;
        }
        
        .hero-service {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            white-space: nowrap;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--maroon);
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
            min-height: 56px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 1.2rem 2.5rem;
            border: 2px solid var(--white);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-height: 56px;
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--maroon);
            transform: translateY(-2px);
        }
        
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 450px;
        }
        
        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 215, 0, 0.2);
            backdrop-filter: blur(20px);
            overflow: hidden;
            padding: 15px;
        }
        
        .hero-image {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 20px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            max-height: 400px;
            min-height: 300px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
            color: var(--white);
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-height: 380px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(128, 0, 32, 0.15);
            border-color: var(--maroon);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--gold);
            font-size: 0.8rem;
            font-weight: 700;
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .service-card p {
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            flex-grow: 1;
        }
        
        .service-link {
            color: var(--maroon);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            margin-top: auto;
        }
        
        .service-link:hover {
            color: var(--maroon-light);
            transform: translateX(5px);
        }
        
        .authority {
            background: var(--gray-50);
        }
        
        .authority-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .authority-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-align: center;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .authority-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }
        
        .authority-card:hover::before {
            transform: scaleX(1);
        }
        
        .authority-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(128, 0, 32, 0.15);
            border-color: var(--maroon);
        }
        
        .authority-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--gold);
            font-size: 1rem;
            font-weight: 700;
        }
        
        .authority-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .authority-card p {
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            flex-grow: 1;
        }
        
        .authority-link {
            color: var(--maroon);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            margin-top: auto;
        }
        
        .authority-link:hover {
            color: var(--maroon-light);
            transform: translateX(5px);
        }
        
        .location-coverage {
            background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
            color: var(--white);
        }
        
        /* Full-width Clark County banner that sits above the city grid */
        .county-banner {
            margin-top: 3rem;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.14) 0%, rgba(255, 215, 0, 0.06) 100%);
            border: 2px solid var(--gold);
            border-radius: 18px;
            padding: 2rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
        }
        .county-banner:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 44px rgba(255, 215, 0, 0.25);
        }
        .county-banner-text h3 {
            color: var(--gold-light);
            font-size: 1.6rem;
            font-weight: 800;
            margin: 0 0 0.35rem;
        }
        .county-banner-text p {
            color: var(--gray-300);
            margin: 0;
            font-size: 1rem;
            line-height: 1.5;
        }
        .county-banner .btn-primary {
            white-space: nowrap;
            flex-shrink: 0;
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .location-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .location-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        @media (max-width: 820px) {
            .location-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 540px) {
            .location-grid { grid-template-columns: 1fr; }
            .county-banner { flex-direction: column; text-align: center; align-items: stretch; }
        }
        
        .location-icon {
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--maroon);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: 700;
            font-size: 0.7rem;
        }
        
        .location-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--gold);
        }
        
        .location-card p {
            font-size: 0.9rem;
            color: var(--gray-300);
            line-height: 1.4;
            margin-bottom: 1rem;
            flex-grow: 1;
        }
        
        .location-link {
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .location-link:hover {
            color: var(--gold);
        }

        /* Light-background variant: location cards inside a .content-section
           (service pillar "Available Across Clark County" lists) sit on a light
           background, so recolor for contrast. The dark homepage version in
           .location-coverage is unaffected. */

        /* Center the rows so 5 cards read as 3-on-top + 2-centered-below
           (instead of a lopsided 3 + 2 left-aligned). */
        .content-section .location-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
        .content-section .location-card {
            flex: 0 1 300px;
            max-width: 340px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            box-shadow: 0 4px 18px rgba(0,0,0,0.05);
            min-height: 0;
            padding: 1.75rem;
        }
        .content-section .location-card:hover {
            background: var(--white);
            border-color: var(--maroon);
            box-shadow: 0 12px 30px rgba(128, 0, 32, 0.12);
        }
        .content-section .location-card h3 {
            color: var(--gray-900);
        }
        .content-section .location-card p {
            color: var(--gray-600);
        }
        .content-section .location-link {
            color: var(--maroon);
            font-weight: 600;
        }
        .content-section .location-link:hover {
            color: var(--maroon-light);
        }

        .pricing {
            background: var(--white);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .pricing-card {
            background: var(--gray-50);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(128, 0, 32, 0.15);
            border-color: var(--maroon);
            background: var(--white);
        }
        
        .pricing-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }
        
        .pricing-range {
            font-size: 2rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 1rem;
        }
        
        .pricing-features {
            list-style: none;
            margin: 1.5rem 0;
            flex-grow: 1;
        }
        
        .pricing-features li {
            padding: 0.5rem 0;
            color: var(--gray-600);
            position: relative;
            padding-left: 1.5rem;
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--maroon);
            font-weight: 600;
        }
        
        .faq {
            background: var(--gray-50);
        }
        
        .faq-container {
            max-width: 860px;
            margin: 0 auto;
            display: grid;
            gap: 1.25rem;
        }

        /* Redesigned FAQ card: integrated Q&A, gold accent bar, no divider.
           Answers are always visible, so question + answer read as one unit. */
        .faq-item {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-left: 4px solid var(--gold);
            border-radius: 14px;
            margin-bottom: 0;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(128, 0, 32, 0.10);
            border-left-color: var(--maroon);
        }

        .faq-question {
            padding: 1.75rem 2rem 0.5rem;
            cursor: default;
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
            border-bottom: none;
            min-height: 0;
        }

        /* Decorative "Q" marker in front of each question */
        .faq-question::before {
            content: 'Q';
            flex-shrink: 0;
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
            color: var(--gold);
            font-size: 0.95rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0.1rem;
        }

        .faq-question h3 {
            color: var(--gray-900);
            margin: 0;
            font-size: 1.18rem;
            font-weight: 700;
            line-height: 1.4;
            flex-grow: 1;
        }

        /* Toggle hidden — FAQ answers are always visible (no click to expand) */
        .faq-toggle {
            display: none;
        }

        /* Answers always open and fully visible */
        .faq-answer {
            max-height: none;
            overflow: visible;
        }

        .faq-answer-content {
            padding: 0 2rem 1.75rem calc(2rem + 34px + 0.85rem);
            color: var(--gray-600);
            line-height: 1.75;
            font-size: 1.02rem;
        }

        @media (max-width: 480px) {
            .faq-question { padding: 1.25rem 1.25rem 0.4rem; gap: 0.6rem; }
            .faq-question::before { width: 28px; height: 28px; font-size: 0.8rem; }
            .faq-answer-content { padding: 0 1.25rem 1.25rem 1.25rem; }
        }
        
        .google-reviews {
            background: var(--white);
        }
        
        .reviews-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .google-embed {
            width: 100%;
            max-width: 500px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin: 2rem auto;
        }
        
        .google-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Real customer testimonials (verbatim Google reviews, no self-schema) */
        .testimonials { background: var(--gray-50); }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }
        .testimonial-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 18px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 34px rgba(128,0,32,0.10);
        }
        .testimonial-stars {
            color: var(--gold-dark);
            font-size: 1.1rem;
            letter-spacing: 0.15rem;
            margin-bottom: 0.9rem;
        }
        .testimonial-text {
            color: var(--gray-700);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 1.25rem;
            flex-grow: 1;
        }
        .testimonial-author {
            font-weight: 700;
            color: var(--gray-900);
            font-size: 0.95rem;
        }
        .testimonial-meta {
            color: var(--gray-500);
            font-size: 0.85rem;
            margin-top: 0.15rem;
        }

        /* Review-widget placeholder (until a live widget embed is added) */
        .reviews-placeholder {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            padding: 3rem 2rem;
            max-width: 520px;
            margin: 2rem auto 0;
        }
        .reviews-stars {
            color: var(--gold-dark);
            font-size: 2.2rem;
            letter-spacing: 0.2rem;
            line-height: 1;
            margin-bottom: 0.75rem;
        }
        .reviews-score {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1.5rem;
        }
        
        .contact {
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
            color: var(--white);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .contact-info h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .contact-info p {
            font-size: 1.1rem;
            color: var(--gray-300);
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        
        .contact-details {
            display: grid;
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            min-height: 80px;
        }
        
        .contact-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--gold);
        }
        
        .contact-item-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--maroon);
            font-size: 0.6rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .contact-item-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        
        .contact-item-info p {
            color: var(--gray-400);
            margin: 0;
            font-size: 0.95rem;
        }
        
        .contact-item-info a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-item-info a:hover {
            color: var(--gold-light);
        }
        
        .map-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            background: var(--gray-700);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (min-width: 769px) {
            .mobile-menu-toggle,
            .mobile-menu-overlay,
            .mobile-menu {
                display: none !important;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .nav-phone {
                font-size: 0.8rem;
                padding: 0.6rem 1rem;
            }
            
            .hero-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .services-grid,
            .authority-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .location-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 480px) {
            .nav-container {
                padding: 1rem 15px;
            }
            
            .nav-logo {
                font-size: 1.3rem;
            }
            
            .nav-logo img {
                width: 35px;
                height: 35px;
            }
            
            .nav-phone {
                font-size: 0.75rem;
                padding: 0.5rem 0.8rem;
            }
            
            .mobile-menu {
                width: 280px;
                max-width: 90vw;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .hero {
                min-height: 100vh;
                padding-top: 80px;
            }

            /* Mobile: hide the video entirely (saves the ~4.8MB download and
               protects LCP). The team.webp photo serves as a static full-screen
               hero background instead. Desktop keeps the autoplay video. */
            .hero-video {
                display: none;
            }

            .hero {
                background: linear-gradient(135deg, rgba(128, 0, 32, 0.8) 0%, rgba(102, 0, 24, 0.9) 50%, rgba(128, 0, 32, 0.8) 100%), url('/assets/team.webp');
                background-size: cover;
                background-position: center;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                padding: 1rem 15px;
                min-height: calc(100vh - 140px);
            }
            
            .hero-visual {
                min-height: 300px;
                order: -1;
            }
            
            .hero-image-container {
                max-width: 350px;
                padding: 12px;
            }
            
            .hero-image {
                max-height: 280px;
                min-height: 200px;
                border-radius: 15px;
            }
            
            .hero-services {
                justify-content: center;
                gap: 0.5rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-service {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 1rem 2rem;
            }
            
            .location-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .authority-card,
            .service-card,
            .pricing-card {
                padding: 1.5rem;
            }
            
            .map-container {
                height: 300px;
            }
            
            .section {
                padding: 50px 0;
            }
            
            .section-header {
                margin-bottom: 2.5rem;
            }
            
            .section-title {
                font-size: clamp(1.5rem, 4vw, 2.2rem);
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 360px) {
            .hero-badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            
            .hero h1 {
                font-size: clamp(1.5rem, 6vw, 2.2rem);
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-service {
                font-size: 0.75rem;
                padding: 0.3rem 0.6rem;
            }
            
            .btn-primary,
            .btn-secondary {
                font-size: 1rem;
                padding: 0.9rem 1.5rem;
            }

            .faq-question h3 {
                font-size: 1.05rem;
            }
        }
        
        @media (hover: none) and (pointer: coarse) {
            .btn-primary,
            .btn-secondary,
            .authority-link,
            .service-link,
            .location-link,
            .nav-phone {
                min-height: 48px;
                min-width: 48px;
            }
            
            .faq-question {
                min-height: 60px;
            }
            
            .mobile-menu-link,
            .mobile-dropdown-link,
            .mobile-menu-cta {
                min-height: 48px;
            }
            
            .mobile-menu-close {
                min-height: 44px;
                min-width: 44px;
            }
            
            .contact-item {
                min-height: 72px;
            }
        }
        
        .text-center {
            text-align: center;
        }
        
        .hidden {
            display: none;
        }
        
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        .mobile-menu::-webkit-scrollbar {
            width: 4px;
        }
        
        .mobile-menu::-webkit-scrollbar-track {
            background: var(--gray-100);
        }
        
        .mobile-menu::-webkit-scrollbar-thumb {
            background: var(--maroon);
            border-radius: 2px;
        }
        
        .mobile-menu-toggle:focus,
        .mobile-menu-link:focus,
        .mobile-dropdown-link:focus,
        .mobile-menu-close:focus {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        
        .mobile-menu,
        .mobile-menu-overlay,
        .mobile-menu-toggle span,
        .mobile-dropdown {
            will-change: transform, opacity;
        }
        
        @media print {
            .navbar,
            .mobile-menu,
            .hero-video {
                display: none;
            }
            
            .hero {
                background: var(--maroon);
                color: var(--white);
                padding: 2rem 0;
                min-height: auto;
            }
            
            .section {
                padding: 1rem 0;
            }
        }
/* ===== Site Footer (shared across all pages) ===== */
.site-footer { background: var(--gray-900); color: var(--gray-300); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-col h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col a { color: var(--gray-300); text-decoration: none; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-weight: 800; font-size: 1.4rem; text-decoration: none; margin-bottom: 1rem; }
.footer-logo img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand p { line-height: 1.7; margin-bottom: 1rem; max-width: 340px; }
.footer-rating { color: var(--gold-light); font-weight: 600; font-size: 0.95rem; }
.footer-contact li { line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--gray-700); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--gray-300); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== Inner-page hero ===== */
.hero.hero-inner { min-height: 100vh; }
.hero.hero-inner .hero-content { grid-template-columns: 1fr; min-height: calc(100vh - 160px); text-align: center; }
.hero.hero-inner .hero-text { max-width: 860px; margin: 0 auto; }
.hero.hero-inner .hero-cta { justify-content: center; }
.hero.hero-inner .hero-badge { display: inline-flex; }

/* ===== Inner-page content sections ===== */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--gray-50); }
.content-narrow { max-width: 820px; margin: 0 auto; }
.content-narrow h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gray-900); margin: 2rem 0 1rem; line-height: 1.25; }
.content-narrow h3 { font-size: 1.25rem; color: var(--gray-900); margin: 1.5rem 0 0.75rem; }
.content-narrow p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.2rem; font-size: 1.05rem; }
.content-narrow ul, .content-narrow ol { margin: 0 0 1.5rem 1.5rem; color: var(--gray-600); line-height: 1.8; }
.content-narrow li { margin-bottom: 0.5rem; }
.content-narrow a { color: var(--maroon); text-decoration: underline; }
.content-cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; text-align: center; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }