/* ===== DESIGN SYSTEM — LAKE NONA PAGE ===== */
        /* UNIQUE APPROACH: Premium white-glove luxury aesthetic */
        /* Cormorant Garamond — elegant serif used by luxury brands */
        /* Content angle: White-glove service for Medical City professionals + giving pledge */
        /* Layout: Minimal, spacious, editorial — like a luxury real estate or hospitality brand */
        /* East Orlando: dark navy, Inter/Playfair, speed */
        /* Avalon Park: white/light, Inter/Merriweather, quality */
        /* Waterford Lakes: charcoal, Inter/DM Serif, flat-rate trust */
        /* UCF Area: blue-deep, Inter/Space Grotesk, audience-segmented */
        /* Azalea Park: cream/forest, Inter/Lora, neighborhood story */
        /* Lake Nona: pure white, Inter/Cormorant Garamond, luxury + giving pledge */
        :root {
            --orange: #fe4a00;
            --orange-dark: #FE4A00;
            --orange-pale: #f3f3f3;
            --orange-mid: #FE4A00;
            --blue: #234190;
            --blue-dark: #234190;
            --blue-pale: #f0f2f5;
            --blue-mid: #3a7bd5;
            --white: #ffffff;
            --off-white: #f3f3f3;
            --pearl: #f0f2f5;
            --charcoal: #0a1628;
            --slate: #0a1628;
            --gray-100: #f3f3f3;
            --gray-200: #f0f2f5;
            --gray-300: #f0f2f5;
            --gray-400: #4b5563;
            --gray-600: #4b5563;
            --gold: #FE4A00;
            --gold-pale: #f3f3f3;
        }

        *, *::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.7;
            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 32px; }

        /* ===== TOP ANNOUNCEMENT BAR ===== */
        .announcement-bar {
            background: var(--blue);
            color: var(--white);
            text-align: center;
            padding: 10px 32px;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .announcement-bar a { color: #f0f2f5; font-weight: 700; }
        .announcement-bar a:hover { text-decoration: underline; }
        .announcement-bar .sep { margin: 0 12px; opacity: 0.4; }

        /* ===== NAV ===== */
        .site-nav {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            padding: 18px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 8px rgba(0,0,0,0.06);
        }
        .nav-brand {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--charcoal);
            letter-spacing: 0.3px;
        }
        .nav-brand span { color: var(--orange); }
        .breadcrumb {
            font-size: 0.78rem;
            color: var(--gray-400);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a { color: var(--blue); }
        .breadcrumb a:hover { color: var(--orange); }
        .nav-cta {
            background: var(--orange);
            color: var(--white);
            padding: 11px 22px;
            border-radius: 3px;
            font-weight: 700;
            font-size: 0.88rem;
            letter-spacing: 0.2px;
            transition: background 0.2s;
        }
        .nav-cta:hover { background: var(--orange-dark); }

        /* ===== HERO — FULL-BLEED SPLIT: LEFT TEXT, RIGHT PHOTO GRID ===== */
        /* UNIQUE: 55/45 split — left is brand blue with large serif headline, right is 2x2 photo mosaic */
        .hero {
            display: grid;
            grid-template-columns: 55% 45%;
            min-height: 600px;
        }
        .hero-left {
            background: var(--blue);
            padding: 72px 64px 72px 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero-eyebrow {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero-eyebrow::before {
            content: '';
            display: inline-block;
            width: 28px;
            height: 1px;
            background: var(--orange);
        }
        .hero h1 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 700;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        .hero h1 em {
            font-style: italic;
            color: #f0f2f5;
        }
        .hero-sub {
            font-size: 1rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.75;
            margin-bottom: 32px;
            max-width: 480px;
        }
        .hero-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }
        .btn-orange {
            background: var(--orange);
            color: var(--white);
            padding: 16px 28px;
            border-radius: 3px;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s, transform 0.15s;
        }
        .btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }
        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.85);
            padding: 14px 24px;
            border-radius: 3px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.85); }
        .hero-trust-pills {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .trust-pill {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.8);
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 500;
        }
        .trust-pill.highlight {
            background: rgba(254,74,0,0.2);
            border-color: rgba(254,74,0,0.4);
            color: #f0f2f5;
        }

        /* Hero right: photo mosaic */
        .hero-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 3px;
            overflow: hidden;
        }
        .hero-photo {
            overflow: hidden;
        }
        .hero-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .hero-photo:hover img { transform: scale(1.04); }
        .hero-photo.span-col {
            grid-column: 1 / 3;
        }

        /* ===== GIVING PLEDGE SECTION ===== */
        /* UNIQUE: Prominent "Giving Back" section — no other page has this */
        .giving-section {
            background: var(--gold-pale);
            border-top: 3px solid var(--gold);
            border-bottom: 3px solid var(--gold);
            padding: 56px 0;
        }
        .giving-layout {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 48px;
            align-items: center;
        }
        .giving-icon {
            width: 96px;
            height: 96px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(201,168,76,0.2);
            flex-shrink: 0;
        }
        .giving-icon svg { width: 48px; height: 48px; }
        .giving-text h2 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 10px;
        }
        .giving-text h2 span { color: var(--orange); }
        .giving-text p {
            font-size: 0.97rem;
            color: var(--slate);
            line-height: 1.75;
            max-width: 640px;
        }
        .giving-stat {
            text-align: center;
            flex-shrink: 0;
        }
        .giving-stat-val {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--orange);
            line-height: 1;
        }
        .giving-stat-label {
            font-size: 0.8rem;
            color: var(--slate);
            max-width: 140px;
            line-height: 1.4;
            margin-top: 6px;
        }

        /* ===== SERVICES — HORIZONTAL SCROLL CARDS ===== */
        /* UNIQUE: Horizontal card layout with large photo tops — premium magazine style */
        .services-section {
            padding: 80px 0;
            background: var(--white);
        }
        .section-eyebrow {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-eyebrow::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 1.5px;
            background: var(--orange);
        }
        .section-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 700;
            color: var(--charcoal);
            line-height: 1.15;
            margin-bottom: 12px;
        }
        .section-sub {
            font-size: 0.97rem;
            color: var(--slate);
            max-width: 580px;
            line-height: 1.75;
        }
        .section-header { margin-bottom: 48px; }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-card {
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            overflow: hidden;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .service-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        .service-card-top {
            background: var(--blue-pale);
            padding: 28px 24px 20px;
            position: relative;
        }
        .service-card-top.orange-bg { background: var(--orange-pale); }
        .service-icon {
            width: 44px;
            height: 44px;
            background: var(--blue);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }
        .service-icon.orange { background: var(--orange); }
        .service-icon svg { width: 22px; height: 22px; fill: white; }
        .service-card-top h3 {
            font-weight: 700;
            font-size: 1rem;
            color: var(--charcoal);
            margin-bottom: 6px;
        }
        .service-card-top .badge {
            display: inline-block;
            background: var(--orange);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 100px;
            letter-spacing: 0.5px;
        }
        .service-card-body {
            padding: 20px 24px 24px;
        }
        .service-card-body p {
            font-size: 0.88rem;
            color: var(--slate);
            line-height: 1.7;
            margin-bottom: 14px;
        }
        .service-link {
            font-size: 0.83rem;
            font-weight: 700;
            color: var(--blue);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .service-link:hover { color: var(--orange); }

        /* ===== TRUST METRICS BAR ===== */
        .metrics-bar {
            background: var(--blue);
            padding: 48px 0;
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            text-align: center;
        }
        .metric-item {
            padding: 0 20px;
            border-right: 1px solid rgba(255,255,255,0.12);
        }
        .metric-item:last-child { border-right: none; }
        .metric-val {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1;
            margin-bottom: 6px;
        }
        .metric-val .accent { color: #f0f2f5; }
        .metric-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            line-height: 1.4;
        }

        /* ===== REVIEWS ===== */
        /* UNIQUE: Premium review layout — large feature review + side column */
        .reviews-section {
            padding: 80px 0;
            background: var(--pearl);
        }
        .reviews-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        .reviews-left .section-eyebrow { margin-bottom: 12px; }
        .reviews-left .section-title { margin-bottom: 16px; }
        .google-score-block {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            padding: 16px 20px;
            margin-bottom: 24px;
        }
        .google-score-block svg { width: 28px; height: 28px; flex-shrink: 0; }
        .google-score-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--charcoal);
            line-height: 1;
        }
        .google-score-stars { color: #FE4A00; font-size: 1rem; }
        .google-score-count { font-size: 0.82rem; color: var(--gray-400); }
        .feature-review {
            background: var(--blue);
            color: var(--white);
            border-radius: 8px;
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
        }
        .feature-review::before {
            content: '\201C';
            font-family: 'Cormorant Garamond', serif;
            font-size: 9rem;
            line-height: 1;
            color: rgba(255,255,255,0.07);
            position: absolute;
            top: -10px;
            left: 12px;
        }
        .feature-review-stars { color: #FE4A00; font-size: 0.95rem; margin-bottom: 14px; }
        .feature-review-text {
            font-size: 1rem;
            line-height: 1.75;
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
            position: relative;
        }
        .feature-review-text strong { color: var(--white); }
        .feature-review-byline {
            font-weight: 700;
            font-size: 0.88rem;
            color: var(--white);
        }
        .feature-review-byline span { font-weight: 400; color: rgba(255,255,255,0.85); margin-left: 4px; }
        .reviews-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .review-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            padding: 20px 20px;
        }
        .review-card-stars { color: #FE4A00; font-size: 0.85rem; margin-bottom: 8px; }
        .review-card-text {
            font-size: 0.88rem;
            color: var(--slate);
            line-height: 1.65;
            margin-bottom: 10px;
        }
        .review-card-text strong { color: var(--charcoal); }
        .review-card-byline {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--charcoal);
        }
        .review-card-byline span { font-weight: 400; color: var(--gray-400); margin-left: 4px; }
        .reviews-cta {
            margin-top: 8px;
            text-align: center;
        }
        .btn-outline-blue {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1.5px solid var(--blue);
            color: var(--blue);
            padding: 12px 28px;
            border-radius: 3px;
            font-weight: 700;
            font-size: 0.88rem;
            transition: all 0.2s;
        }
        .btn-outline-blue:hover { background: var(--blue); color: var(--white); }

        /* ===== NEIGHBORHOODS ===== */
        .neighborhoods-section {
            padding: 80px 0;
            background: var(--white);
        }
        .neighborhoods-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }
        .neighborhood-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin: 24px 0 28px;
        }
        .neighborhood-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            background: var(--pearl);
            border: 1px solid var(--gray-200);
            border-radius: 4px;
            font-size: 0.85rem;
            transition: border-color 0.15s, background 0.15s;
        }
        .neighborhood-chip:hover { border-color: var(--orange); background: var(--orange-pale); }
        .neighborhood-chip .dot {
            width: 7px; height: 7px;
            background: var(--orange);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .neighborhood-chip-name { font-weight: 600; color: var(--charcoal); }
        .neighborhood-chip-zip { font-size: 0.72rem; color: var(--gray-400); margin-left: auto; }
        .map-embed {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.1);
        }

        /* ===== GALLERY — PREMIUM EDITORIAL GRID ===== */
        /* UNIQUE: 3-column asymmetric editorial grid with caption overlays */
        .gallery-section {
            padding: 80px 0;
            background: var(--blue);
        }
        .gallery-section .section-eyebrow { color: rgba(255,255,255,0.85); }
        .gallery-section .section-eyebrow::before { background: rgba(255,255,255,0.3); }
        .gallery-section .section-title { color: var(--white); }
        .gallery-section .section-sub { color: rgba(255,255,255,0.85); }
        .gallery-editorial {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: 260px 260px;
            gap: 8px;
            margin-top: 40px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }
        .gallery-item.tall { grid-row: 1 / 3; }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover img { transform: scale(1.05); }
        .gallery-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(transparent, rgba(28,31,46,0.85));
            padding: 28px 16px 14px;
            color: var(--white);
        }
        .gallery-overlay-title {
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 2px;
        }
        .gallery-overlay-sub {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.85);
        }

        /* ===== FAQ ===== */
        /* UNIQUE: Clean accordion with blue left border, no card boxes */
        .faq-section {
            padding: 80px 0;
            background: var(--off-white);
        }
        .faq-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: start;
        }
        .faq-sidebar {
            position: sticky;
            top: 90px;
        }
        .faq-sidebar .section-title { margin-bottom: 16px; }
        .faq-sidebar p {
            font-size: 0.93rem;
            color: var(--slate);
            line-height: 1.75;
            margin-bottom: 24px;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .faq-item {
            border-bottom: 1px solid var(--gray-200);
            padding: 20px 0;
        }
        .faq-item:first-child { border-top: 1px solid var(--gray-200); }
        .faq-q {
            font-weight: 700;
            font-size: 0.93rem;
            color: var(--charcoal);
            margin-bottom: 10px;
            padding-left: 16px;
            border-left: 3px solid var(--orange);
            line-height: 1.4;
        }
        .faq-a {
            font-size: 0.88rem;
            color: var(--slate);
            line-height: 1.75;
            padding-left: 16px;
        }

        /* ===== FINAL CTA ===== */
        .final-cta {
            padding: 80px 0;
            background: var(--orange);
            position: relative;
            overflow: hidden;
        }
        .final-cta::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 400px; height: 400px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        .final-cta::after {
            content: '';
            position: absolute;
            bottom: -120px; left: -60px;
            width: 300px; height: 300px;
            background: rgba(255,255,255,0.04);
            border-radius: 50%;
        }
        .final-cta-inner {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }
        .final-cta h2 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 14px;
            line-height: 1.15;
        }
        .final-cta p {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 32px;
        }
        .final-cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .btn-white-lg {
            background: var(--white);
            color: var(--orange-dark);
            padding: 18px 36px;
            border-radius: 3px;
            font-weight: 800;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.15s, box-shadow 0.15s;
        }
        .btn-white-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
        .btn-ghost-white {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.85);
            padding: 16px 28px;
            border-radius: 3px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s;
        }
        .btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }
        .final-cta-trust {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .final-cta-trust-item {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.85);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .final-cta-trust-item::before { content: "✓"; color: rgba(255,255,255,0.9); font-weight: 800; }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--blue-dark);
            color: rgba(255,255,255,0.85);
            padding: 32px 40px;
            text-align: center;
            font-size: 0.8rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .footer-links a { color: rgba(255,255,255,0.85); }
        .footer-links a:hover { color: #f0f2f5; }
        .site-footer a { color: #f0f2f5; }

        /* ===== MOBILE STICKY ===== */
        .mobile-sticky {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            background: var(--blue);
            padding: 12px 20px;
            z-index: 999;
            border-top: 3px solid var(--orange);
            gap: 10px;
        }
        .mobile-sticky a {
            flex: 1;
            text-align: center;
            padding: 13px;
            border-radius: 3px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .mobile-sticky .call-btn { background: var(--orange); color: var(--white); }
        .mobile-sticky .text-btn { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero { grid-template-columns: 1fr; }
            .hero-right { display: none; }
            .hero-left { padding: 56px 40px; }
            .giving-layout { grid-template-columns: 1fr; text-align: center; }
            .giving-icon { margin: 0 auto; }
            .giving-stat { margin: 0 auto; }
            .services-grid { grid-template-columns: 1fr 1fr; }
            .metrics-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
            .metric-item { border-right: none; }
            .reviews-layout { grid-template-columns: 1fr; }
            .neighborhoods-layout { grid-template-columns: 1fr; }
            .gallery-editorial { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
            .gallery-item.tall { grid-row: auto; }
            .faq-layout { grid-template-columns: 1fr; }
            .faq-sidebar { position: static; }
        }
        @media (max-width: 768px) {
            .services-grid { grid-template-columns: 1fr; }
            .metrics-grid { grid-template-columns: repeat(2, 1fr); }
            .neighborhood-grid { grid-template-columns: 1fr; }
            .gallery-editorial { grid-template-columns: 1fr; }
            .final-cta-btns { flex-direction: column; align-items: center; }
            .announcement-bar { display: none; }
            .mobile-sticky { display: flex; }
            body { padding-bottom: 70px; }
            .hero-left { padding: 40px 24px; }
            .container { padding: 0 20px; }
        }

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>



.ln-page *, .ln-page *::before, .ln-page *::after {box-sizing:border-box !important;margin:0;padding:0}
.ln-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}
.ln-page img {max-width:100% !important;height:auto !important;display:block !important}
.ln-page a {text-decoration:none;color:inherit}
/* FULL-WIDTH THEME OVERRIDES */
.ln-hero,.ln-breadcrumb,.ln-trust-bar,.ln-section,.ln-review-strip,.ln-community-section,.ln-founder-section,.ln-cta-section,.ln-faq-section,.ln-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 */
.ln-page button,
.ln-page button[type],
.ln-page .ln-faq-item button,
.ln-page .ln-faq-section button,
body .ln-page button,
body .ln-faq-question,
body button.ln-faq-question,
#content .ln-page button,
.site-main .ln-page button,
.entry-content .ln-page button,
.entry-content button.ln-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;
}

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

/* HERO — fullwidth-overlay */
.ln-hero {position:relative;background:linear-gradient(135deg, #0a1628 0%, #0a1628 40%, #0a1628 70%, #0a1628 100%);color:#fff;overflow:hidden}
.ln-hero::after {content:'';position:absolute;bottom:0;left:0;right:0;height:6px;background:linear-gradient(90deg,#FE4A00,#FE4A00,#FE4A00)}
.ln-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}
.ln-hero-badge .ln-pulse {width:8px;height:8px;background:#FE4A00;border-radius:50%;animation:ln-pulse 2s infinite}
@keyframes ln-pulse {0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)}}
.ln-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}
.ln-hero h1 span {color:#FE4A00;position:relative}
.ln-hero-sub {font-size:1.15rem;color:rgba(255,255,255,0.85);margin-bottom:32px;max-width:520px}
.ln-hero-sub strong {color:#fff}
.ln-hero-ctas {display:flex;gap:16px;flex-wrap:wrap}
.ln-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}
.ln-btn-primary:link,.ln-btn-primary:visited {color:#fff !important}
.ln-btn-primary:hover {background:#fe4a00;transform:translateY(-2px);box-shadow:0 6px 30px rgba(255,102,0,0.5) !important}
.ln-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}
.ln-btn-secondary:link,.ln-btn-secondary:visited {color:#fff !important}
.ln-btn-secondary:hover {border-color:#fff;background:rgba(255,255,255,0.1)}
.ln-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}
.ln-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}
.ln-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}
.ln-guarantee-label {font-size:1.5rem;font-weight:700;margin-top:4px;color:#fff}
.ln-guarantee-sub {color:rgba(255,255,255,0.85);margin-top:12px;font-size:1rem}
.ln-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}

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

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

/* SECTIONS */
.ln-section {padding:60px 0 !important}
.ln-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;font-family:'Space Mono',monospace !important}
.ln-section-title {font-family:'Space Mono',monospace !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}
.ln-section-desc {font-size:1.1rem !important;color:#4b5563 !important;max-width:700px;margin-bottom:40px !important}

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

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

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

/* NEIGHBORHOODS */
.ln-neighborhoods-section {background:#fff}
.ln-neighborhoods-grid {display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.ln-neighborhood-list {display:grid;grid-template-columns:1fr 1fr;gap:12px}
.ln-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}
.ln-neighborhood-item:hover {border-color:#FE4A00;background:#fff}
.ln-neighborhood-item .ln-dot {width:10px;height:10px;background:#FE4A00;border-radius:50%;flex-shrink:0}
.ln-neighborhood-item .ln-name {font-weight:600;font-size:0.95rem}
.ln-neighborhood-item .ln-zip {font-size:0.8rem;color:#234190}
.ln-map-container {border-radius:4px !important;overflow:hidden !important;border:2px solid #ffffff !important;box-shadow:0 8px 30px rgba(0,0,0,0.1) !important}
.ln-map-container iframe {width:100%;height:500px;border:0}

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

/* FOUNDER */
.ln-founder-section {background: #234190 !important;color:#fff !important;position:relative;overflow:hidden;padding:60px 0}
.ln-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%}
.ln-founder-section,.ln-founder-section div,.ln-founder-section span,.ln-founder-section p {color:#fff !important}
.ln-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;
}
.ln-founder-image {width:100%;aspect-ratio:1;border-radius:20px;overflow:hidden;border:2px solid rgba(255,255,255,0.1)}
.ln-founder-image img {width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.ln-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}
.ln-founder-name {font-weight:700;font-size:1.1rem;color:#fff !important}
.ln-founder-title {color:rgba(255,255,255,0.85) !important;font-size:0.95rem}
.ln-founder-license {margin-top:4px;color:#FE4A00 !important;font-size:0.85rem;font-weight:600}

/* CTA — bordered-banner */
.ln-cta-section {background:#fff;padding:60px 0 !important;text-align:center}
.ln-cta-content {border:3px solid #FE4A00;border-radius:16px;padding:48px 40px;max-width:800px;margin:0 auto}
.ln-cta-section h2 {font-size:2.2rem;font-weight:900;margin-bottom:12px;color:#234190 !important;border:none !important;padding:0 !important}
.ln-cta-section p {font-size:1.15rem;margin-bottom:28px;color:#4b5563}
.ln-btn-cta {display:inline-flex;align-items:center;gap:10px;background:#FE4A00;color:#fff !important;padding:18px 40px;border-radius:8px;font-weight:800;font-size:1.2rem;transition:all 0.3s;box-shadow:0 4px 20px rgba(255,102,0,0.3) !important}
.ln-btn-cta:link,.ln-btn-cta:visited {color:#fff !important}
.ln-btn-cta:hover {background:#fe4a00;transform:translateY(-2px);box-shadow:0 8px 30px rgba(255,102,0,0.4) !important}

/* MOBILE CTA */
.ln-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)}
.ln-mobile-cta a {display:flex;align-items:center;justify-content:center;gap:10px;color:#fff !important;font-weight:800;font-size:1.1rem}
.ln-mobile-cta a:link,.ln-mobile-cta a:visited {color:#fff !important}



/* RESPONSIVE */
@media (max-width:1024px) {
.ln-hero-grid {grid-template-columns:1fr;gap:40px}
.ln-hero h1 {font-size:2.4rem}
.ln-why-grid {grid-template-columns:1fr 1fr}
.ln-why-card.ln-featured {grid-row:span 1}
.ln-services-grid {grid-template-columns:1fr 1fr}
.ln-neighborhoods-grid {grid-template-columns:1fr}
.ln-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;
}
.ln-founder-image {max-width:200px}
.ln-faq-grid {grid-template-columns:repeat(2,1fr)}
.ln-cta-content {grid-template-columns:1fr}
}
@media (max-width:768px) {
.ln-hero {padding:50px 0 40px}
.ln-hero h1 {font-size:2rem}
.ln-trust-items {grid-template-columns:1fr 1fr;gap:16px}
.ln-why-grid {grid-template-columns:1fr}
.ln-services-grid {grid-template-columns:1fr}
.ln-neighborhood-list {grid-template-columns:1fr}
.ln-section {padding:40px 0 !important}
.ln-section-title {font-size:1.8rem !important}
.ln-hero-ctas {flex-direction:column}
.ln-btn-primary,.ln-btn-secondary {justify-content:center}
.ln-mobile-cta {display:block}
.ln-page {padding-bottom:60px}
.ln-cta-content {flex-direction:column;text-align:center}
}

/* ═══ BODY THEME: LN ═══ */
section.giving-section {
  background: #234190 !important;
}
section.giving-section h2 {
  color: #fff !important;
}
section.giving-section p {
  color: rgba(255,255,255,0.85) !important;
}
section.giving-section .section-eyebrow {
  color: #3a7bd5 !important;
}
section.faq-section {
  background: #234190 !important;
}
section.faq-section h2,
section.faq-section .faq-q-text {
  color: #fff !important;
}
/* ===== PRICING SECTION ===== */
.ln-pricing-section {
    background: #f3f3f3;
    padding: 80px 0;
}
.ln-pricing-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.ln-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.ln-pricing-table thead tr {
    background: #234190;
    color: #fff;
}
.ln-pricing-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.ln-pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #ffffff;
    color: #374151;
    vertical-align: top;
}
.ln-pricing-table tbody tr:last-child td {
    border-bottom: none;
}
.ln-pricing-table tbody tr:nth-child(even) {
    background: #ffffff;
}
.ln-pricing-table tbody tr:hover {
    background: #ffffff;
}
.ln-pricing-table td:last-child {
    font-weight: 600;
    color: #234190;
    white-space: nowrap;
}
.ln-waived {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #FE4A00;
    margin-top: 2px;
}
.ln-pricing-note {
    margin-top: 24px;
    text-align: center;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}
.ln-pricing-note strong {
    color: #234190;
}
@media (max-width: 768px) {
    .ln-pricing-table thead { display: none; }
    .ln-pricing-table td {
        display: block;
        padding: 8px 16px;
        border-bottom: none;
    }
    .ln-pricing-table td:first-child {
        font-weight: 700;
        color: #234190;
        padding-top: 16px;
        font-size: 1rem;
    }
    .ln-pricing-table td:last-child {
        padding-bottom: 16px;
        border-bottom: 1px solid #ffffff;
    }
    .ln-pricing-table tbody tr:last-child td:last-child {
        border-bottom: none;
    }
}

/* ═══ READABILITY FIXES: LN (lake-nona) ═══ */

/* section.faq-section is dark (#234190) — fix .faq-q and .faq-a text */
section.faq-section .faq-q { color: #fff !important; }
section.faq-section .faq-item .faq-q { color: #fff !important; }
section.faq-section .faq-a { color: rgba(255,255,255,0.78) !important; }
section.faq-section .faq-item .faq-a { color: rgba(255,255,255,0.78) !important; }
section.faq-section .faq-item { border-color: rgba(255,255,255,0.12) !important; }

/* section.giving-section is dark (#0a1628) — fix .giving-stat-label */
section.giving-section .giving-stat-label { color: rgba(255,255,255,0.85) !important; }
section.giving-section .giving-stat-val { color: #FE4A00 !important; }
section.giving-section .giving-icon { background: rgba(255,255,255,0.1) !important; }

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

/* === SERVICE AREA EAST-ORLANDO STYLE === === */
.neighborhood-chip {
  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;
}
.neighborhood-chip:hover { background: #fff !important; border-color: #fe4a00 !important; }
.neighborhood-chip-name { font-weight:600; font-size:0.95rem; color:#234190; }
.neighborhood-chip-zip { font-size:0.8rem; color:#234190; }
.ln-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;
}
.ln-map-container iframe { width:100% !important; height:450px !important; border:0 !important; display:block !important; }
@media (max-width:768px) { .ln-map-container iframe { height:280px !important; } }
