/* ===== DESIGN SYSTEM — COMPLETELY DIFFERENT FROM EAST ORLANDO PAGE ===== */
        /* East Orlando: dark navy hero, orange accents, Inter/Playfair fonts */
        /* Avalon Park: clean white/light hero, brand orange/blue accents, Inter/Merriweather, card-forward layout */
        :root {
            --brand-orange: #fe4a00;
            --brand-orange-dark: #FE4A00;
            --brand-orange-light: #FE4A00;
            --brand-orange-pale: #fff2ed;
            --brand-blue: #234190;
            --brand-blue-light: #234190;
            --charcoal: #1c2b3a;
            --slate: #3d5166;
            --gray-50: #f3f3f3;
            --gray-100: #f3f3f3;
            --gray-200: #f0f2f5;
            --gray-400: #4b5563;
            --gray-600: #4b5563;
            --white: #ffffff;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--charcoal);
            line-height: 1.6;
            background: var(--white);
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

        /* ===== TOP ANNOUNCEMENT BAR ===== */
        .announcement-bar {
            background: var(--brand-orange);
            color: var(--white);
            text-align: center;
            padding: 10px 24px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .announcement-bar a { color: #f0f2f5; text-decoration: underline; }

        /* ===== BREADCRUMB ===== */
        .breadcrumb {
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
            padding: 11px 0;
            font-size: 0.82rem;
            color: var(--gray-400);
        }
        .breadcrumb .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
        .breadcrumb a { color: var(--brand-orange); }
        .breadcrumb a:hover { color: var(--brand-orange-dark); }
        .breadcrumb strong { color: var(--charcoal); }

        /* ===== HERO — LIGHT BACKGROUND, SPLIT LAYOUT ===== */
        /* COMPLETELY DIFFERENT from East Orlando: white bg, image on left, text on right */
        .hero {
            background: var(--white);
            padding: 0;
            overflow: hidden;
        }
        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 560px;
        }
        .hero-image-panel {
            position: relative;
            overflow: hidden;
        }
        .hero-image-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .hero-image-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(254,74,0,0.85) 0%, transparent 60%);
            padding: 32px;
        }
        .hero-image-caption {
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 600;
        }
        .hero-image-caption span { color: #f0f2f5; }
        .hero-content {
            background: var(--gray-50);
            padding: 56px 52px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--brand-orange);
            font-size: 0.78rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }
        .hero-eyebrow::before {
            content: '';
            display: block;
            width: 28px;
            height: 3px;
            background: var(--brand-orange);
            border-radius: 2px;
        }
        .hero h1 {
            font-family: 'Merriweather', Georgia, serif;
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 1.15;
            color: var(--charcoal);
            margin-bottom: 18px;
        }
        .hero h1 em {
            font-style: normal;
            color: var(--brand-orange);
        }
        .hero-desc {
            font-size: 1.05rem;
            color: var(--slate);
            line-height: 1.75;
            margin-bottom: 28px;
        }
        .hero-proof {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 28px;
            padding: 16px 20px;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
        }
        .hero-proof-stars { color: #FE4A00; font-size: 1.1rem; letter-spacing: 2px; }
        .hero-proof-text strong { display: block; font-size: 0.95rem; color: var(--charcoal); }
        .hero-proof-text span { font-size: 0.8rem; color: var(--gray-400); }
        .hero-divider { width: 1px; height: 40px; background: var(--gray-200); }
        .hero-proof-badge { text-align: center; }
        .hero-proof-badge strong { display: block; font-size: 1.4rem; font-weight: 900; color: var(--brand-orange); }
        .hero-proof-badge span { font-size: 0.75rem; color: var(--gray-400); }
        .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
        .btn-teal {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--brand-orange);
            color: var(--white);
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.25s;
            box-shadow: 0 4px 16px rgba(254,74,0,0.3);
        }
        .btn-teal:hover { background: var(--brand-orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,74,0,0.4); }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 2px solid var(--brand-orange);
            color: var(--brand-orange);
            padding: 13px 26px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.25s;
        }
        .btn-outline:hover { background: var(--brand-orange-pale); transform: translateY(-2px); }

        /* ===== STATS RIBBON — HORIZONTAL NUMBERS ===== */
        /* DIFFERENT from East Orlando trust bar: amber background, large numbers */
        .stats-ribbon {
            background: var(--charcoal);
            padding: 36px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
        }
        .stat-item {
            text-align: center;
            padding: 0 24px;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        .stat-item:last-child { border-right: none; }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--brand-blue-light);
            line-height: 1;
            margin-bottom: 6px;
            font-family: 'Merriweather', serif;
        }
        .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 500; line-height: 1.4; }

        /* ===== SECTION BASE ===== */
        section { padding: 80px 0; }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--brand-orange);
            margin-bottom: 14px;
        }
        .section-tag::after {
            content: '';
            display: block;
            width: 24px;
            height: 2px;
            background: var(--brand-orange);
        }
        .section-heading {
            font-family: 'Merriweather', Georgia, serif;
            font-size: 2.2rem;
            font-weight: 900;
            line-height: 1.25;
            color: var(--charcoal);
            margin-bottom: 16px;
        }
        .section-body {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.8;
            max-width: 680px;
            margin-bottom: 48px;
        }

        /* ===== PROBLEM/SOLUTION SECTION ===== */
        /* UNIQUE: Avalon Park page opens with a "problem" framing, East Orlando used pure speed angle */
        .problem-section { background: var(--white); }
        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }
        .problem-card {
            background: #fff5f5;
            border: 1px solid #f0f2f5;
            border-radius: 16px;
            padding: 32px;
        }
        .problem-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        .problem-icon {
            width: 48px; height: 48px;
            background: #f0f2f5;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .problem-card h3 { font-size: 1.1rem; font-weight: 700; color: #234190; }
        .problem-card p { color: #234190; font-size: 0.92rem; line-height: 1.7; }
        .solution-card {
            background: var(--brand-orange-pale);
            border: 1px solid #f0f2f5;
            border-radius: 16px;
            padding: 32px;
        }
        .solution-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        .solution-icon {
            width: 48px; height: 48px;
            background: rgba(254,74,0,0.15);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .solution-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--brand-orange-dark); }
        .solution-card p { color: var(--brand-orange-dark); font-size: 0.92rem; line-height: 1.7; }
        .solution-list { list-style: none; margin-top: 16px; }
        .solution-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(254,74,0,0.1);
            color: var(--brand-orange-dark);
            font-size: 0.92rem;
        }
        .solution-list li:last-child { border-bottom: none; }
        .solution-list li::before { content: '✓'; color: var(--brand-orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

        /* ===== SERVICES — HORIZONTAL CARDS ===== */
        /* DIFFERENT from East Orlando: numbered grid → horizontal accordion-style cards */
        .services-section { background: var(--gray-50); }
        .service-row {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 0;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            overflow: hidden;
            margin-bottom: 16px;
            transition: box-shadow 0.3s;
        }
        .service-row:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
        .service-row-label {
            background: var(--brand-orange-pale);
            padding: 32px 28px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid #f0f2f5;
        }
        .service-row-icon {
            width: 52px; height: 52px;
            background: var(--brand-orange);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 14px;
        }
        .service-row-label h3 { font-size: 1.05rem; font-weight: 700; color: var(--brand-orange-dark); line-height: 1.3; }
        .service-row-body {
            padding: 32px 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .service-row-body p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.75; margin-bottom: 14px; }
        .service-row-body a {
            color: var(--brand-orange);
            font-weight: 600;
            font-size: 0.88rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.25s;
        }
        .service-row-body a:hover { gap: 10px; }
        .service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
        .service-tag {
            background: var(--brand-orange-pale);
            color: var(--brand-orange-dark);
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 50px;
        }

        /* ===== AVALON PARK HOMES SECTION ===== */
        /* UNIQUE to Avalon Park: neighborhood housing types breakdown */
        .homes-section { background: var(--white); }
        .homes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .home-type-card {
            border: 1px solid var(--gray-200);
            border-radius: 14px;
            padding: 28px;
            text-align: center;
            transition: all 0.3s;
        }
        .home-type-card:hover { border-color: var(--brand-orange); background: var(--brand-orange-pale); }
        .home-type-icon { font-size: 2.5rem; margin-bottom: 12px; }
        .home-type-card h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
        .home-type-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }
        .home-type-size { font-size: 19px; font-weight: 700; color: var(--brand-orange); margin-top: 10px; }
        .homes-callout {
            background: var(--charcoal);
            border-radius: 16px;
            padding: 36px 40px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 32px;
            align-items: center;
        }
        .homes-callout h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
        .homes-callout p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; }
        .btn-amber {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--brand-blue);
            color: var(--white);
            padding: 15px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            white-space: nowrap;
            transition: all 0.25s;
            box-shadow: 0 4px 16px rgba(51,104,175,0.35);
        }
        .btn-amber:hover { background: var(--brand-blue-light); transform: translateY(-2px); }

        /* ===== REVIEWS — MASONRY STYLE ===== */
        /* DIFFERENT from East Orlando: dark strip with 3-col grid → light bg, 2-col masonry */
        .reviews-section { background: var(--gray-50); }
        .reviews-header {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: end;
            gap: 24px;
            margin-bottom: 40px;
        }
        .reviews-header .google-rating {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 14px 20px;
        }
        .google-rating .stars { color: #FE4A00; font-size: 1.2rem; }
        .google-rating .score { font-size: 1.8rem; font-weight: 900; color: var(--charcoal); }
        .google-rating .meta { font-size: 0.8rem; color: var(--gray-400); }
        .reviews-masonry {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .review-tile {
            background: var(--white);
            border-radius: 16px;
            padding: 28px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
        }
        .review-tile:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); border-color: var(--brand-orange); }
        .review-tile.featured {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
            grid-row: span 2;
        }
        .review-tile-stars { color: #FE4A00; font-size: 1rem; margin-bottom: 14px; }
        .review-tile.featured .review-tile-stars { color: #FE4A00; }
        .review-tile-text {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 18px;
        }
        .review-tile.featured .review-tile-text { color: rgba(255,255,255,0.92); font-size: 1.05rem; }
        .review-tile-text strong { color: var(--brand-orange-dark); font-style: normal; }
        .review-tile.featured .review-tile-text strong { color: #f0f2f5; font-style: normal; }
        .review-tile-author { display: flex; align-items: center; gap: 12px; }
        .review-avatar {
            width: 38px; height: 38px;
            border-radius: 50%;
            background: var(--brand-orange-pale);
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 0.85rem;
            color: var(--brand-orange-dark);
            flex-shrink: 0;
        }
        .review-tile.featured .review-avatar { background: rgba(255,255,255,0.2); color: var(--white); }
        .review-author-name { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
        .review-tile.featured .review-author-name { color: var(--white); }
        .review-author-loc { font-size: 0.75rem; color: var(--gray-400); }
        .review-tile.featured .review-author-loc { color: rgba(255,255,255,0.85); }
        .review-tile-date { font-size: 0.72rem; color: var(--gray-400); margin-top: 10px; }
        .review-tile.featured .review-tile-date { color: rgba(255,255,255,0.85); }
        .reviews-cta {
            text-align: center;
            margin-top: 32px;
        }
        .reviews-cta a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--brand-orange);
            font-weight: 700;
            font-size: 0.9rem;
            border: 2px solid var(--brand-orange);
            padding: 10px 24px;
            border-radius: 8px;
            transition: all 0.25s;
        }
        .reviews-cta a:hover { background: var(--brand-orange-pale); }

        /* ===== NEIGHBORHOOD PHOTO GALLERY ===== */
        /* UNIQUE: visual gallery with local landmarks, different from East Orlando's 2-col grid */
        .community-section { background: var(--white); }
        .gallery-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            grid-template-rows: 240px 240px;
            gap: 16px;
        }
        .gallery-item {
            border-radius: 14px;
            overflow: hidden;
            position: relative;
        }
        .gallery-item:first-child { grid-row: span 2; }
        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .gallery-item:hover img { transform: scale(1.05); }
        .gallery-caption {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(254,74,0,0.9) 0%, transparent 100%);
            padding: 20px 18px 14px;
            color: var(--white);
        }
        .gallery-caption strong { display: block; font-size: 0.9rem; font-weight: 700; }
        .gallery-caption span { font-size: 0.75rem; color: rgba(255,255,255,0.75); }
        .community-text {
            margin-top: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .community-text-block h3 { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
        .community-text-block p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.75; }

        /* ===== FAQ — ACCORDION STYLE ===== */
        /* DIFFERENT from East Orlando's 2-col card grid → single-col accordion */
        .faq-section { background: var(--gray-50); }
        .faq-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
        }
        .faq-sidebar { position: sticky; top: 24px; }
        .faq-sidebar h2 { font-family: 'Merriweather', serif; font-size: 2rem; font-weight: 900; color: var(--charcoal); margin-bottom: 16px; line-height: 1.3; }
        .faq-sidebar p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
        .faq-sidebar-cta {
            background: var(--brand-orange);
            color: var(--white);
            padding: 20px 24px;
            border-radius: 14px;
        }
        .faq-sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 12px; }
        .faq-sidebar-cta a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            font-weight: 700;
            font-size: 1.05rem;
        }
        .faq-list { display: flex; flex-direction: column; gap: 12px; }
        .faq-item {
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
            overflow: hidden;
        }
        .faq-question {
            padding: 20px 24px;
            font-weight: 700;
            font-size: 0.97rem;
            color: var(--charcoal);
            display: flex;
            align-items: flex-start;
            gap: 14px;
            line-height: 1.4;
        }
        .faq-q-num {
            background: var(--brand-orange-pale);
            color: var(--brand-orange);
            font-size: 0.75rem;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 6px;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .faq-answer {
            padding: 0 24px 20px 52px;
            color: var(--gray-600);
            font-size: 0.92rem;
            line-height: 1.8;
            border-top: 1px solid var(--gray-100);
        }

        /* ===== PROCESS SECTION ===== */
        /* UNIQUE: step-by-step process, not present on East Orlando page */
        .process-section { background: var(--white); }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 36px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: var(--gray-200);
            z-index: 0;
        }
        .process-step {
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        .step-circle {
            width: 72px; height: 72px;
            background: var(--white);
            border: 3px solid var(--brand-orange);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 20px;
            position: relative;
        }
        .step-number {
            position: absolute;
            top: -6px; right: -6px;
            width: 22px; height: 22px;
            background: var(--brand-orange);
            border-radius: 50%;
            color: var(--white);
            font-size: 0.65rem;
            font-weight: 800;
            display: flex; align-items: center; justify-content: center;
        }
        .process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
        .process-step p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.65; }

        /* ===== COVERAGE MAP ===== */
        /* DIFFERENT layout from East Orlando: full-width map with overlay list */
        .coverage-section { background: var(--gray-50); }
        .coverage-layout {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 40px;
            align-items: start;
        }
        .coverage-list-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; }
        .coverage-neighborhoods {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .coverage-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: var(--white);
            border-radius: 10px;
            border: 1px solid var(--gray-200);
            transition: all 0.2s;
        }
        .coverage-item:hover { border-color: var(--brand-orange); background: var(--brand-orange-pale); }
        .coverage-item-left { display: flex; align-items: center; gap: 10px; }
        .coverage-dot { width: 8px; height: 8px; background: var(--brand-orange); border-radius: 50%; flex-shrink: 0; }
        .coverage-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
        .coverage-zip { font-size: 0.75rem; color: var(--gray-400); background: var(--gray-100); padding: 2px 8px; border-radius: 50px; }
        .coverage-map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            border: 1px solid var(--gray-200);
        }
        .coverage-map-container iframe { width: 100%; height: 480px; border: none; display: block; }

        /* ===== FINAL CTA — DIFFERENT DESIGN ===== */
        /* DIFFERENT from East Orlando: full-width orange → two-column with image */
        .final-cta {
            background: var(--white);
            padding: 80px 0;
        }
        .final-cta-card {
            background: linear-gradient(135deg, var(--brand-orange-dark) 0%, var(--brand-orange) 100%);
            border-radius: 24px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        .final-cta-content {
            padding: 56px 52px;
            color: var(--white);
        }
        .final-cta-content h2 {
            font-family: 'Merriweather', serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .final-cta-content p { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
        .final-cta-guarantees { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
        .final-cta-guarantee {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
        }
        .final-cta-guarantee::before { content: '✓'; color: #f0f2f5; font-weight: 700; }
        .final-cta-image {
            position: relative;
            overflow: hidden;
        }
        .final-cta-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }
        .final-cta-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--brand-orange) 0%, transparent 40%);
        }
        .btn-white-solid {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--brand-orange-dark);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.05rem;
            transition: all 0.25s;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .btn-white-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

        /* ===== STICKY MOBILE CTA ===== */
        .mobile-sticky {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            background: var(--brand-orange-dark);
            padding: 12px 20px;
            z-index: 1000;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        }
        .mobile-sticky a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--white);
            font-weight: 800;
            font-size: 1.05rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero-image-panel { height: 320px; }
            .hero-content { padding: 40px 36px; }
            .problem-grid { grid-template-columns: 1fr; }
            .homes-grid { grid-template-columns: 1fr 1fr; }
            .homes-callout { grid-template-columns: 1fr; gap: 20px; }
            .reviews-masonry { grid-template-columns: 1fr; }
            .review-tile.featured { grid-row: span 1; }
            .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
            .gallery-item:first-child { grid-row: span 1; }
            .faq-layout { grid-template-columns: 1fr; }
            .faq-sidebar { position: static; }
            .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
            .process-steps::before { display: none; }
            .coverage-layout { grid-template-columns: 1fr; }
            .final-cta-card { grid-template-columns: 1fr; }
            .final-cta-image { height: 240px; }
            .community-text { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
            .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
            .stat-item:nth-child(2n) { border-right: none; }
            .stat-item:nth-child(5) { border-bottom: none; }
            .service-row { grid-template-columns: 1fr; }
            .service-row-label { border-right: none; border-bottom: 1px solid #f0f2f5; }
            .homes-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .gallery-item { height: 220px; }
            .process-steps { grid-template-columns: 1fr; }
            section { padding: 52px 0; }
            .section-heading { font-size: 1.75rem; }
            .mobile-sticky { display: block; }
            body { padding-bottom: 58px; }
            .reviews-header { grid-template-columns: 1fr; }
        }

Scoped: .shah-ticker, .shah-header, .shah-mobile-menu, .shah-footer
   ========================================================================== */

/* ---------- Font Import ---------- */


/* ---------- REMOVE ELEMENTOR INJECTED CONTENT ---------- */
.elementor-location-footer,
.elementor-location-header,
div[data-elementor-type="footer"],
div[data-elementor-type="header"],
.footer-service-areas,
.footer-tagline {
  display: none !important;
}

/* ---------- ANNOUNCEMENT TICKER ---------- */
.shah-ticker {
  position: relative !important;
  z-index: 99999 !important;
  background: #FE4A00 !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
}

.shah-ticker__track {
  display: flex !important;
  width: max-content !important;
  animation: shahTickerScroll 34s linear infinite !important;
}

.shah-ticker__track:hover {
  animation-play-state: paused !important;
}

.shah-ticker__content {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.shah-ticker__item {
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 19px;
  font-weight: 700;
  line-height: 1 !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}

.shah-ticker__dot {
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  background: #fff !important;
  border-radius: 50% !important;
  opacity: 0.7 !important;
  flex-shrink: 0 !important;
}

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

/* ---------- SITE HEADER ---------- */
.shah-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99998 !important;
  background: #234190 !important;
  border-bottom: 3px solid #FE4A00 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  width: 100% !important;
}

.shah-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  height: 84px !important;
}

/* Logo */
.shah-header__logo {
  flex-shrink: 0 !important;
}

.shah-header__logo a {
  display: block !important;
  text-decoration: none !important;
}

.shah-header__logo img {
  width: 180px !important;
  height: auto !important;
  display: block !important;
}

/* Desktop Nav */
.shah-header__nav {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
}

.shah-header__nav-list {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

.shah-header__nav-item {
  position: relative !important;
}

.shah-header__nav-item > a {
  display: block !important;
  padding: 20px 12px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: color 0.2s ease !important;
}

.shah-header__nav-item > a:hover,
.shah-header__nav-active > a {
  color: #FE4A00 !important;
}

/* Dropdown */
.shah-header__dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 280px !important;
  background: #234190 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  border-radius: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(4px) !important;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
  z-index: 99999 !important;
}

.shah-header__dropdown--wide {
  min-width: 320px !important;
}

.shah-header__nav-has-dropdown:hover > .shah-header__dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.shah-header__dropdown li {
  margin: 0 !important;
  padding: 0 !important;
}

.shah-header__dropdown li a {
  display: block !important;
  padding: 10px 20px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  transition: background 0.15s ease !important;
  white-space: normal !important;
  line-height: 1.4 !important;
}

.shah-header__dropdown li:last-child a {
  border-bottom: none !important;
}

.shah-header__dropdown li a:hover,
.shah-header__dropdown-active {
  background: #FE4A00 !important;
  color: #fff !important;
}

/* Right section */
.shah-header__right {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.shah-header__phone {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  transition: color 0.2s ease !important;
}

.shah-header__phone:hover {
  color: #FE4A00 !important;
}

.shah-header__phone svg {
  flex-shrink: 0 !important;
}

.shah-header__open-badge {
  display: inline-block !important;
  background: #374151 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 3px 8px !important;
  border-radius: 3px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.shah-header__location {
  display: block !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 11px !important;
  color: rgba(255,255,255,0.75) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

/* Hamburger — mobile only */
.shah-header__hamburger {
  display: none !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  width: 44px !important;
  height: 44px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.shah-header__hamburger-bar {
  display: block !important;
  width: 26px !important;
  height: 3px !important;
  background: #234190 !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
}

/* ---------- MOBILE MENU ---------- */
.shah-mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 100000 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.shah-mobile-menu.shah-mobile-menu--open {
  pointer-events: auto !important;
  visibility: visible !important;
}

.shah-mobile-menu__overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0,0,0,0.6) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.shah-mobile-menu--open .shah-mobile-menu__overlay {
  opacity: 1 !important;
}

.shah-mobile-menu__panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 320px !important;
  max-width: 85vw !important;
  height: 100% !important;
  background: #0a1628 !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  display: flex !important;
  flex-direction: column !important;
}

.shah-mobile-menu--open .shah-mobile-menu__panel {
  transform: translateX(0) !important;
}

.shah-mobile-menu__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.shah-mobile-menu__logo img {
  width: 160px !important;
  height: auto !important;
  display: block !important;
}

.shah-mobile-menu__close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  background: none !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.shah-mobile-menu__close:hover {
  background: rgba(255,255,255,0.1) !important;
}

.shah-mobile-menu__nav {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 8px 0 !important;
}

.shah-mobile-menu__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.shah-mobile-menu__item {
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.shah-mobile-menu__parent-row {
  display: flex !important;
  align-items: center !important;
}

.shah-mobile-menu__link {
  display: block !important;
  flex: 1 !important;
  padding: 15px 20px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
}

.shah-mobile-menu__link:hover {
  color: #FE4A00 !important;
}

.shah-mobile-menu__toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  background: none !important;
  border: none !important;
  border-left: 1px solid rgba(255,255,255,0.1) !important;
  cursor: pointer !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  flex-shrink: 0 !important;
}

.shah-mobile-menu__toggle-icon {
  color: #FE4A00 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  transition: transform 0.2s ease !important;
}

.shah-mobile-menu__toggle--open .shah-mobile-menu__toggle-icon {
  transform: rotate(45deg) !important;
}

.shah-mobile-menu__submenu {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease !important;
  background: rgba(0,0,0,0.2) !important;
}

.shah-mobile-menu__submenu--open {
  max-height: 2000px !important;
}

.shah-mobile-menu__sublink {
  display: block !important;
  padding: 12px 20px 12px 36px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  line-height: 1.4 !important;
}

.shah-mobile-menu__sublink:hover {
  color: #FE4A00 !important;
  background: rgba(255,255,255,0.03) !important;
}

/* CTA at bottom of mobile menu */
.shah-mobile-menu__cta {
  padding: 20px !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}

.shah-mobile-menu__phone {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.shah-mobile-menu__phone:hover {
  color: #FE4A00 !important;
}

.shah-mobile-menu__badge {
  display: inline-block !important;
  background: #374151 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 4px 10px !important;
  border-radius: 3px !important;
}

.shah-mobile-menu__schedule-btn {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 14px 24px !important;
  background: #FE4A00 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: background 0.2s ease !important;
}

.shah-mobile-menu__schedule-btn:hover {
  background: #fe4a00 !important;
}

/* ---------- FOOTER ---------- */

.shah-footer__container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

/* Service Areas Band */
.shah-footer__service-areas {
  background: linear-gradient(135deg, #0a1628 0%, #0a1628 100%) !important;
  padding: 56px 0 !important;
  width: 100% !important;
}

.shah-footer__areas-heading {
  text-align: center !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0 0 32px 0 !important;
  letter-spacing: -0.02em !important;
}

.shah-footer__city-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}

.shah-footer__areas-tagline {
  text-align: center !important;
  margin-top: 24px !important;
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.6 !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.shah-footer__city-link {
  display: block !important;
  padding: 14px 18px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-left: 3px solid #FE4A00 !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  line-height: 1.4 !important;
}

.shah-footer__city-link:hover {
  background: rgba(255,102,0,0.15) !important;
  border-color: rgba(255,102,0,0.3) !important;
  border-left-color: #FE4A00 !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

/* Main Footer */
.shah-footer__main {
  background: #234190 !important;
  padding: 32px 0 !important;
  width: 100% !important;
}

.shah-footer__columns {
  display: grid !important;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr !important;
  gap: 48px !important;
}

.shah-footer__col {
  min-width: 0 !important;
}

.shah-footer__col--logo img {
  width: 220px !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 20px !important;
}

.shah-footer__tagline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 17px !important;
  color: #fff !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.shah-footer__col-heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 0 20px 0 !important;
}

.shah-footer__links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.shah-footer__links li {
  margin: 0 0 14px 0 !important;
}

.shah-footer__links li a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.shah-footer__links li a:hover {
  color: #FE4A00 !important;
}

/* Contact column */
.shah-footer__contact-item {
  margin-bottom: 20px !important;
}

.shah-footer__contact-label {
  display: block !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 6px !important;
}

.shah-footer__contact-phone {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.shah-footer__contact-phone:hover {
  color: #FE4A00 !important;
}

.shah-footer__address {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  color: #fff !important;
  line-height: 1.5 !important;
}

.shah-footer__license {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  color: #fff !important;
}

.shah-footer__emergency {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  color: #FE4A00 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.shah-footer__emergency:hover { text-decoration: underline !important; }

/* Social Icons (inside logo column) */
.shah-footer__social-icons {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 20px !important;
}

.shah-footer__social-icons a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.08) !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  text-decoration: none !important;
}

.shah-footer__social-icons a:hover {
  background: #FE4A00 !important;
  transform: translateY(-2px) !important;
}

.shah-footer__social-icons a svg {
  width: 20px !important;
  height: 20px !important;
}

/* Copyright Bar */
.shah-footer__copyright {
  background: #FE4A00 !important;
  padding: 14px 0 !important;
  width: 100% !important;
}

.shah-footer__copyright-text {
  text-align: center !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.9) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.shah-footer__copyright-text a {
  color: #fff !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   RESPONSIVE — 1024px (nav collapse to mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .shah-header__nav {
    display: none !important;
  }

  .shah-header__location {
    display: none !important;
  }

  .shah-header__open-badge {
    display: none !important;
  }

  .shah-header__hamburger {
    display: flex !important;
  }

  .shah-header__inner {
    height: 60px !important;
    padding: 0 16px !important;
  }

  .shah-header__logo img {
    width: 150px !important;
  }

  .shah-header__phone-number {
    display: none !important;
  }

  .shah-header__phone svg {
    width: 24px !important;
    height: 24px !important;
  }

  .shah-ticker__item {
    font-size: 19px;
    padding: 0 12px !important;
  }

  .shah-ticker {
    height: 36px !important;
  }
}

/* ==========================================================================
   RESPONSIVE — 768px (tablet)
   ========================================================================== */
@media (max-width: 768px) {
  .shah-footer__city-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .shah-footer__service-areas {
    padding: 36px 0 !important;
  }

  .shah-footer__columns {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }

  .shah-footer__main {
    padding: 32px 0 !important;
  }
}

/* ==========================================================================
   RESPONSIVE — 480px (compact mobile)
   ========================================================================== */
@media (max-width: 480px) {
  .shah-ticker__item {
    font-size: 19px;
    padding: 0 10px !important;
  }

  .shah-ticker {
    height: 32px !important;
  }

  .shah-ticker__dot {
    width: 4px !important;
    height: 4px !important;
  }

  .shah-header__inner {
    height: 56px !important;
    padding: 0 12px !important;
  }

  .shah-header__logo img {
    width: 130px !important;
  }

  .shah-footer__city-grid {
    grid-template-columns: 1fr !important;
  }

  .shah-footer__service-areas {
    padding: 28px 0 !important;
  }

  .shah-footer__areas-heading {
    font-size: 20px !important;
  }

  .shah-footer__columns {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .shah-footer__main {
    padding: 32px 0 !important;
  }

  .shah-footer__copyright-text {
    font-size: 12px !important;
  }

  .shah-mobile-menu__link {
    font-size: 16px !important;
    padding: 13px 16px !important;
  }

  .shah-mobile-menu__sublink {
    font-size: 14px !important;
    padding: 10px 16px 10px 30px !important;
  }

  .shah-mobile-menu__phone {
    font-size: 18px !important;
  }

  .shah-mobile-menu__panel {
    width: 290px !important;
  }

  .shah-footer__social-icons {
    gap: 10px !important;
  }

  .shah-footer__social-icons a {
    width: 36px !important;
    height: 36px !important;
  }

  .shah-footer__social-icons a svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ---------- Hide mobile menu on desktop ---------- */
@media (min-width: 1025px) {
  .shah-mobile-menu {
    display: none !important;
  }

  .shah-header__hamburger {
    display: none !important;
  }
}

/* ---------- Prevent body scroll when mobile menu is open ---------- */
body.shah-mobile-open {
  overflow: hidden !important;
}

/* ── NEARBY CITIES SECTION ── */
.city-nearby {
  background: #fff;
  padding: 52px 20px 48px;
  border-top: 1px solid #ffffff;
}
.city-nearby__inner {
  max-width: 1060px;
  margin: 0 auto;
}
.city-nearby h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: #234190;
  text-align: center;
  margin: 0 0 8px;
}
.city-nearby__sub {
  font-family: 'Inter', sans-serif;
  text-align: center;
  color: #234190;
  font-size: 1rem;
  margin: 0 0 32px;
}
.city-nearby__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.city-nearby__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px solid #FE4A00;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f0f2f5 25%, #f0f2f5 60%, #FE4A00 100%);
  color: #374151;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.city-nearby__link:hover {
  background: linear-gradient(135deg, #f0f2f5 0%, #FE4A00 50%, #FE4A00 100%);
  transform: translateY(-1px);
}
.city-nearby__pin { flex-shrink: 0; display: block; }
@media (max-width: 700px) { .city-nearby__grid { grid-template-columns: repeat(2, 1fr); } }

<!-- Page Content -->
<style>



.ap-page *, .ap-page *::before, .ap-page *::after {box-sizing:border-box !important;margin:0;padding:0}
.ap-page {font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif !important;color:#234190 !important;line-height:1.7 !important;overflow-x:hidden;width:100% !important;max-width:100% !important;margin-left:auto !important;margin-right:auto !important}
.ap-page img {max-width:100% !important;height:auto !important;display:block !important}
.ap-page a {text-decoration:none;color:inherit}
/* FULL-WIDTH THEME OVERRIDES */
.ap-hero,.ap-breadcrumb,.ap-trust-bar,.ap-section,.ap-review-strip,.ap-community-section,.ap-founder-section,.ap-cta-section,.ap-faq-section,.ap-footer-service-areas {width:100% !important;max-width:100% !important;margin-left:0 !important;margin-right:0 !important}
.entry-content,.site-main,.page .entry-content,.page-content {max-width:100% !important;width:100% !important;padding-left:0 !important;padding-right:0 !important;margin-left:auto !important;margin-right:auto !important}

/* NUCLEAR THEME BUTTON RESET */
.ap-page button,
.ap-page button[type],
.ap-page .ap-faq-item button,
.ap-page .ap-faq-section button,
body .ap-page button,
body .ap-faq-question,
body button.ap-faq-question,
#content .ap-page button,
.site-main .ap-page button,
.entry-content .ap-page button,
.entry-content button.ap-faq-question {
background:#FE4A00 !important;background-color:#FE4A00 !important;
border:none !important;border-radius:0 !important;
color:#fff !important;
box-shadow:none !important;outline:none !important;
text-transform:none !important;letter-spacing:normal !important;
padding:0 !important;margin:0 !important;
font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif !important;
-webkit-appearance:none !important;appearance:none !important;
}

.ap-container {max-width:1200px;margin:0 auto;padding:0 24px}
.sr-only {position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* BREADCRUMB */
.ap-breadcrumb {background:#f3f3f3;padding:12px 0;font-size:0.85rem;color:#4b5563;border-bottom:1px solid #f0f2f5}
.ap-breadcrumb a {color:#0a1628}
.ap-breadcrumb a:link,.ap-breadcrumb a:visited {color:#0a1628 !important}
.ap-breadcrumb a:hover {text-decoration:underline}
.ap-breadcrumb span {margin:0 8px}

/* HERO — fullwidth-overlay */
.ap-hero {position:relative;background:linear-gradient(135deg, #0a1628 0%, #2d1b4e 40%, #1a1a3e 70%, #0f0a2e 100%);color:#fff;overflow:hidden}
.ap-hero::after {content:'';position:absolute;bottom:0;left:0;right:0;height:6px;background:linear-gradient(90deg,#FE4A00,#FE4A00,#FE4A00)}
.ap-hero-badge {display:inline-flex;align-items:center;gap:8px;background:rgba(255,102,0,0.15);border:1px solid rgba(255,102,0,0.4);border-radius:50px;padding:8px 20px;font-size:0.85rem;font-weight:600;color:#FE4A00;margin-bottom:24px;letter-spacing:0.5px}
.ap-hero-badge .ap-pulse {width:8px;height:8px;background:#FE4A00;border-radius:50%;animation:ap-pulse 2s infinite}
@keyframes ap-pulse {0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)}}
.ap-hero h1 {font-size:3rem;font-weight:900;line-height:1.1;margin-bottom:20px;letter-spacing:-0.02em;color:#fff !important;border:none !important;padding:0 !important}
.ap-hero h1 span {color:#FE4A00;position:relative}
.ap-hero-sub {font-size:1.15rem;color:rgba(255,255,255,0.85);margin-bottom:32px;max-width:520px}
.ap-hero-sub strong {color:#fff}
.ap-hero-ctas {display:flex;gap:16px;flex-wrap:wrap}
.ap-btn-primary {display:inline-flex;align-items:center;gap:10px;background:#FE4A00;color:#fff !important;padding:16px 32px;border-radius:8px;font-weight:700;font-size:1.05rem;transition:all 0.3s;box-shadow:0 4px 20px rgba(255,102,0,0.4) !important}
.ap-btn-primary:link,.ap-btn-primary:visited {color:#fff !important}
.ap-btn-primary:hover {background:#fe4a00;transform:translateY(-2px);box-shadow:0 6px 30px rgba(255,102,0,0.5) !important}
.ap-btn-secondary {display:inline-flex;align-items:center;gap:10px;background:transparent;color:#fff !important;padding:16px 32px;border-radius:8px;font-weight:700;font-size:1.05rem;border:2px solid rgba(255,255,255,0.3);transition:all 0.3s}
.ap-btn-secondary:link,.ap-btn-secondary:visited {color:#fff !important}
.ap-btn-secondary:hover {border-color:#fff;background:rgba(255,255,255,0.1)}
.ap-guarantee-card {background:rgba(255,255,255,0.05);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.1);border-radius:20px;padding:40px;text-align:center;position:relative;box-shadow:0 8px 32px rgba(0,0,0,0.2) !important}
.ap-guarantee-card::before {content:'';position:absolute;inset:-2px;border-radius:22px;background:linear-gradient(135deg,rgba(255,102,0,0.5),transparent 50%,rgba(255,102,0,0.3));z-index:-1}
.ap-guarantee-number {font-size:6rem;font-weight:900;line-height:1;background:linear-gradient(135deg, #FE4A00 0%, #FE4A00 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.ap-guarantee-label {font-size:1.5rem;font-weight:700;margin-top:4px;color:#fff}
.ap-guarantee-sub {color:rgba(255,255,255,0.85);margin-top:12px;font-size:1rem}
.ap-guarantee-penalty {display:inline-block;margin-top:20px;background:rgba(255,102,0,0.2);border:1px solid rgba(255,102,0,0.4);border-radius:8px;padding:10px 24px;font-weight:700;color:#FE4A00;font-size:1.1rem}

.ap-hero::before {content:'';position:absolute;top:0;left:0;right:0;bottom:0;background-image:linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);background-size:40px 40px;z-index:1}
.ap-hero {padding:120px 0 100px;text-align:center}
.ap-hero-grid {position:relative;z-index:2;max-width:900px;margin:0 auto}
.ap-hero-sub {margin-left:auto;margin-right:auto;max-width:700px}
.ap-hero-ctas {justify-content:center}
.ap-hero h1 {font-size:3.5rem}
.ap-hero-stats {display:flex;justify-content:center;gap:48px;margin-top:48px;flex-wrap:wrap}
.ap-hero-stat {text-align:center}
.ap-hero-stat-num {font-size:3rem;font-weight:900;color:#FE4A00}
.ap-hero-stat-label {font-size:0.9rem;color:rgba(255,255,255,0.85);margin-top:4px}

/* TRUST BAR — stat-blocks */
.ap-trust-bar {background:#fff;padding:32px 0;border-bottom:1px solid #ffffff}
.ap-trust-items {display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.ap-trust-item {padding:20px 24px;border-left:4px solid #FE4A00;background:#f3f3f3}
.ap-trust-icon {display:none}
.ap-trust-text strong {display:block;font-size:1.8rem;font-weight:900;color:#0a1628;line-height:1.1}
.ap-trust-text span {font-size:0.8rem;color:#4b5563;margin-top:4px;display:block}

/* SECTIONS */
.ap-section {padding:60px 0 !important}
.ap-section-label {display:inline-block !important;font-size:0.8rem !important;font-weight:700 !important;text-transform:uppercase !important;letter-spacing:2px !important;color:#FE4A00 !important;margin-bottom:12px !important}
.ap-section-title {font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif !important;font-size:2.4rem !important;font-weight:800 !important;line-height:1.2 !important;color:#234190 !important;margin-bottom:16px !important;border:none !important;padding:0 !important;text-transform:uppercase !important;letter-spacing:2px !important;font-weight:900 !important}
.ap-section-desc {font-size:1.1rem !important;color:#4b5563 !important;max-width:700px;margin-bottom:40px !important}

/* WHY CHOOSE US */
.ap-why-section {background:#fff}
.ap-why-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.ap-why-card {background:#f3f3f3 !important;border-radius:0px !important;padding:32px !important;border:none !important;transition:all 0.3s;position:relative;overflow:hidden;box-shadow:none !important}
.ap-why-card:hover {border-color:none !important;transform:translateY(-4px);box-shadow:0 4px 16px rgba(0,0,0,0.08) !important}
.ap-why-card-icon {width:56px;height:56px;background:linear-gradient(135deg, #FE4A00 0%, #FE4A00 100%);border-radius:14px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.5rem;margin-bottom:20px}
.ap-why-card h3 {font-size:1.2rem;font-weight:700;margin-bottom:10px;color:#234190 !important}
.ap-why-card p {color:#4b5563;font-size:0.95rem}
.ap-why-card.ap-featured {background:linear-gradient(135deg,#0a1628,#2d1b4e) !important;color:#fff !important;border-color:transparent !important;grid-row:span 2}
.ap-why-card.ap-featured h3 {color:#fff !important}
.ap-why-card.ap-featured p {color:rgba(255,255,255,0.8)}
.ap-why-card.ap-featured .ap-why-card-icon {background:rgba(255,255,255,0.15)}
.ap-featured-stat {font-size:3.5rem;font-weight:900;color:#FE4A00;line-height:1;margin:24px 0 8px}
.ap-featured-stat-label {font-size:1rem;color:rgba(255,255,255,0.85)}

/* SERVICES */
.ap-services-section {background:linear-gradient(180deg,#f3f3f3 0%,#fff 100%)}
.ap-services-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.ap-service-card {background:#fff !important;border-radius:0px !important;padding:32px !important;border:none !important;transition:all 0.3s;position:relative;box-shadow:none !important}
.ap-service-card:hover {border-color:#0a1628 !important;transform:translateY(-4px);box-shadow:0 4px 16px rgba(0,0,0,0.08) !important}
.ap-service-card-number {font-size:3rem;font-weight:900;color:#f3f3f3;line-height:1;margin-bottom:16px}
.ap-service-card h3 {font-size:1.15rem;font-weight:700;margin-bottom:10px;color:#234190 !important}
.ap-service-card p {color:#4b5563;font-size:0.92rem;margin-bottom:16px}
.ap-service-link {color:#FE4A00 !important;font-weight:600;font-size:0.9rem;display:inline-flex;align-items:center;gap:6px;transition:gap 0.3s}
.ap-service-link:link,.ap-service-link:visited {color:#FE4A00 !important}
.ap-service-link:hover {gap:10px}

/* COST TABLE */
.ap-cost-section {background:#fff}
.ap-cost-table {width:100% !important;border-collapse:collapse !important;border-radius:0px !important;overflow:hidden !important;box-shadow:0 4px 20px rgba(0,0,0,0.1) !important}
.ap-cost-table thead {background:linear-gradient(135deg,#0a1628,#2d1b4e);color:#fff}
.ap-cost-table th {padding:16px 24px;text-align:left;font-weight:700;font-size:0.95rem;color:#fff !important}
.ap-cost-table td {padding:14px 24px;border-bottom:1px solid #f0f2f5;font-size:0.95rem}
.ap-cost-table tbody tr:nth-child(even) {background:#f3f3f3}
.ap-cost-table tbody tr:hover {background:#f0f2f5}
.ap-cost-note {margin-top:16px;font-size:0.85rem;color:#4b5563;font-style:italic}

/* NEIGHBORHOODS */
.ap-neighborhoods-section {background:#fff}
.ap-neighborhoods-grid {display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.ap-neighborhood-list {display:grid;grid-template-columns:1fr 1fr;gap:12px}
.ap-neighborhood-item {display:flex !important;align-items:center !important;gap:12px !important;padding:14px 18px !important;background:#f3f3f3 !important;border-radius:10px !important;border:1px solid #f0f2f5 !important;transition:all 0.3s;box-shadow:0 2px 8px rgba(0,0,0,0.06) !important}
.ap-neighborhood-item:hover {border-color:#FE4A00;background:#fff}
.ap-neighborhood-item .ap-dot {width:10px;height:10px;background:#FE4A00;border-radius:50%;flex-shrink:0}
.ap-neighborhood-item .ap-name {font-weight:600;font-size:0.95rem}
.ap-neighborhood-item .ap-zip {font-size:0.8rem;color:#234190}
.ap-map-container {border-radius:0px !important;overflow:hidden !important;border:2px solid #ffffff !important;box-shadow:0 8px 30px rgba(0,0,0,0.1) !important}
.ap-map-container iframe {width:100%;height:500px;border:0}

/* FAQ — cards-grid */
.ap-faq-section {background:linear-gradient(180deg,#f3f3f3 0%,#fff 100%)}
.ap-faq-grid {display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
.ap-faq-item {background:#fff !important;border:1px solid #ffffff !important;border-radius:0px !important;padding:28px !important;box-shadow:0 4px 16px rgba(0,0,0,0.08) !important;transition:all 0.3s}
.ap-faq-item:hover {border-color:#FE4A00 !important;box-shadow:0 8px 24px rgba(0,0,0,0.12) !important;transform:translateY(-2px)}
.ap-faq-item h3 {font-size:1.05rem;font-weight:700;color:#234190 !important;margin-bottom:12px;padding-bottom:12px;border-bottom:2px solid #FE4A00}
.ap-faq-item p {color:#4b5563 !important;font-size:0.92rem !important;line-height:1.7 !important}

/* FOUNDER */
.ap-founder-section {background: #234190 !important;color:#fff !important;position:relative;overflow:hidden;padding:60px 0}
.ap-founder-section::before {content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;background:radial-gradient(circle,rgba(255,102,0,0.1) 0%,transparent 70%);border-radius:50%}
.ap-founder-section,.ap-founder-section div,.ap-founder-section span,.ap-founder-section p {color:#fff !important}
.ap-founder-grid {display:grid;grid-template-columns:1fr 2fr;gap:60px;align-items:center;position:relative;z-index:2;
  background: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 16px !important;
  padding: 36px !important;
}
.ap-founder-image {width:100%;aspect-ratio:1;border-radius:20px;overflow:hidden;border:2px solid rgba(255,255,255,0.1)}
.ap-founder-image img {width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.ap-founder-quote {font-size:1.3rem;font-style:italic;line-height:1.8;color:rgba(255,255,255,0.9) !important;margin-bottom:24px;position:relative;padding-left:24px;border-left:4px solid #FE4A00}
.ap-founder-name {font-weight:700;font-size:1.1rem;color:#fff !important}
.ap-founder-title {color:rgba(255,255,255,0.85) !important;font-size:0.95rem}
.ap-founder-license {margin-top:4px;color:#FE4A00 !important;font-size:0.85rem;font-weight:600}

/* CTA — split-card */
.ap-cta-section {background:#fff;padding:60px 0 !important}
.ap-cta-content {display:grid;grid-template-columns:1fr 1fr;border-radius:16px;overflow:hidden;box-shadow:0 8px 40px rgba(0,0,0,0.12) !important}
.ap-cta-left {background:linear-gradient(135deg,#0a1628,#2d1b4e);padding:48px 40px;color:#fff}
.ap-cta-right {background:#FE4A00;padding:48px 40px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}
.ap-cta-section h2 {font-size:2rem;font-weight:900;margin-bottom:12px;color:#fff !important;border:none !important;padding:0 !important}
.ap-cta-section p {font-size:1.05rem;color:rgba(255,255,255,0.85);margin-bottom:0}
.ap-cta-phone {font-size:2rem;font-weight:900;color:#fff;margin-bottom:16px;display:flex;align-items:center;gap:12px}
.ap-btn-white {display:inline-flex;align-items:center;gap:10px;background:#fff;color:#FE4A00 !important;padding:18px 40px;border-radius:8px;font-weight:800;font-size:1.2rem;transition:all 0.3s;box-shadow:0 4px 20px rgba(0,0,0,0.15) !important}
.ap-btn-white:link,.ap-btn-white:visited {color:#FE4A00 !important}
.ap-btn-white:hover {transform:translateY(-2px);box-shadow:0 8px 30px rgba(0,0,0,0.2) !important}

/* MOBILE CTA */
.ap-mobile-cta {display:none;position:fixed;bottom:0;left:0;right:0;background:#FE4A00;padding:12px 20px;z-index:1000;box-shadow:0 -4px 20px rgba(0,0,0,0.15)}
.ap-mobile-cta a {display:flex;align-items:center;justify-content:center;gap:10px;color:#fff !important;font-weight:800;font-size:1.1rem}
.ap-mobile-cta a:link,.ap-mobile-cta a:visited {color:#fff !important}

/* DIVIDER — angle */
.ap-divider-angle {height:60px;background:inherit;clip-path:polygon(0 0,100% 60px,100% 100%,0 100%);margin-top:-60px;position:relative;z-index:1}

/* RESPONSIVE */
@media (max-width:1024px) {
.ap-hero-grid {grid-template-columns:1fr;gap:40px}
.ap-hero h1 {font-size:2.4rem}
.ap-why-grid {grid-template-columns:1fr 1fr}
.ap-why-card.ap-featured {grid-row:span 1}
.ap-services-grid {grid-template-columns:1fr 1fr}
.ap-neighborhoods-grid {grid-template-columns:1fr}
.ap-founder-grid {grid-template-columns:1fr;
  background: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 16px !important;
  padding: 36px !important;
}
.ap-founder-image {max-width:200px}
.ap-faq-grid {grid-template-columns:repeat(2,1fr)}
.ap-cta-content {grid-template-columns:1fr}
}
@media (max-width:768px) {
.ap-hero {padding:50px 0 40px}
.ap-hero h1 {font-size:2rem}
.ap-trust-items {grid-template-columns:1fr 1fr;gap:16px}
.ap-why-grid {grid-template-columns:1fr}
.ap-services-grid {grid-template-columns:1fr}
.ap-neighborhood-list {grid-template-columns:1fr}
.ap-section {padding:40px 0 !important}
.ap-section-title {font-size:1.8rem !important}
.ap-hero-ctas {flex-direction:column}
.ap-btn-primary,.ap-btn-secondary {justify-content:center}
.ap-mobile-cta {display:block}
.ap-page {padding-bottom:60px}
.ap-cta-content {flex-direction:column;text-align:center}
}

/* ═══ BODY THEME: AP ═══ */
section.problem-section {
  background: #f0f2f5 !important;
}
section.problem-section h2 {
  color: #234190 !important;
}
section.problem-section p {
  color: #4b5563 !important;
}
section.problem-section .problem-card,
section.problem-section .ap-why-card {
  background: #ffffff !important;
  border-color: #fe4a00 !important;
}
section.problem-section h3 {
  color: #234190 !important;
}
section.faq-section {
  background: #f3f3f3 !important;
}

/* ===== AVALON PARK: Deep Purple/Indigo — Premium Residential ===== */

/* WHY section (problem-section): deep purple bg */
section.problem-section { background: #0a1628 !important; }
section.problem-section h2 { color: #fff !important; }
section.problem-section p { color: rgba(255,255,255,0.78) !important; }
section.problem-section .section-label,
section.problem-section .section-tag { color: rgba(255,255,255,0.85) !important; }

/* Problem cards = why cards: glassmorphism purple */
section.problem-section .problem-card,
section.problem-section .ap-why-card {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
}
section.problem-section .problem-card h3,
section.problem-section .ap-why-card h3 { color: #fff !important; }
section.problem-section .problem-card p,
section.problem-section .ap-why-card p { color: rgba(255,255,255,0.85) !important; }
/* Purple icon circles */
section.problem-section .problem-card-header,
section.problem-section .ap-why-card-icon {
  background: linear-gradient(135deg, #234190, #234190) !important;
  color: #fff !important;
  border-radius: 50% !important;
}

/* ap-why-section (the dedicated WHY section with namespaced cards) */
.ap-why-section { background: #234190 !important; }
.ap-why-section h2 { color: #fff !important; }
.ap-why-section .ap-section-label { color: rgba(255,255,255,0.85) !important; }
.ap-why-card {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}
.ap-why-card h3 { color: #fff !important; }
.ap-why-card p { color: rgba(255,255,255,0.85) !important; }
.ap-why-card .ap-why-card-icon { background: linear-gradient(135deg, #234190, #234190) !important; }

/* Featured card: deep purple gradient */
.ap-why-card.ap-featured {
  background: linear-gradient(135deg, #234190, #234190) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.ap-why-card.ap-featured h3 { color: #fff !important; }
.ap-why-card.ap-featured p { color: rgba(255,255,255,0.82) !important; }
.ap-why-card.ap-featured .ap-featured-stat { color: #FE4A00 !important; }
.ap-why-card.ap-featured .ap-featured-stat-label { color: rgba(255,255,255,0.85) !important; }
.ap-why-card.ap-featured .ap-why-card-icon { background: rgba(255,255,255,0.12) !important; }

/* Services: white bg, 3-col, purple top border */
.ap-services-section { background: #fff !important; }
.ap-services-section h2 { color: #234190 !important; }
.ap-services-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 24px !important; }
.ap-service-card {
  background: #fff !important;
  border: none !important;
  border-top: 4px solid #234190 !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 2px 12px rgba(61,26,110,0.08) !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.ap-service-card:hover { transform: translateY(-3px) !important; box-shadow: 0 8px 24px rgba(61,26,110,0.18) !important; }
.ap-service-card h3 { color: #234190 !important; padding: 20px 24px 8px !important; }
.ap-service-card p { color: #4b5563 !important; padding: 0 24px 20px !important; }

/* FAQ: deep purple bg, white faq items */
section.faq-section { background: #0a1628 !important; }
section.faq-section h2 { color: #fff !important; }
section.faq-section .section-label { color: rgba(255,255,255,0.85) !important; }
.faq-item {
  background: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  margin-bottom: 8px !important;
}
.faq-item h3 { color: #234190 !important; }
.faq-item p { color: #374151 !important; }

/* ap-faq-section (if separate) */
.ap-faq-section { background: #234190 !important; }
.ap-faq-section h2 { color: #fff !important; }
.ap-faq-item {
  background: #fff !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 6px !important;
}
.ap-faq-item h3 { color: #234190 !important; }
.ap-faq-item p { color: #374151 !important; }

/* CTA: purple gradient bg */
.ap-cta-section { background: #234190 !important; }
/* === MAP LAYOUT FIX: full-width stacked === === */
.coverage-layout { display: block !important; }
.coverage-neighborhoods { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 12px !important; margin-bottom: 32px !important; }
.coverage-map-container { border-radius: 12px !important; overflow: hidden !important; border: 2px solid #ffffff !important; box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important; }
.coverage-map-container iframe { width: 100% !important; height: 400px !important; border: 0 !important; display: block !important; }
@media (max-width: 768px) {
  .coverage-neighborhoods { grid-template-columns: 1fr 1fr !important; }
  .coverage-map-container iframe { height: 280px !important; }
}
@media (max-width: 480px) {
  .coverage-neighborhoods { grid-template-columns: 1fr !important; }
}

/* === SERVICE AREA EAST-ORLANDO STYLE === === */
.coverage-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 18px !important;
  background: #ffffff !important;
  border: 2px solid #FE4A00 !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  transition: all 0.3s !important;
}
.coverage-item:hover { background: #fff !important; border-color: #fe4a00 !important; }
.coverage-name { font-weight:600; font-size:0.95rem; color:#234190; }
.coverage-zip { font-size:0.8rem; color:#234190; }
.coverage-map-container {
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
}
.coverage-map-container iframe { width:100% !important; height:450px !important; border:0 !important; display:block !important; }
@media (max-width:768px) { .coverage-map-container iframe { height:280px !important; } }
