:root {
    /* Primary Colors - Updated to Green Theme */
    --electric-blue: #10B981;
    --electric-blue-light: #34D399;
    --electric-blue-dark: #059669;

    /* Secondary Colors */
    --emerald-green: #10B981;
    --emerald-green-light: #34D399;
    --emerald-green-dark: #059669;

    /* Status Colors */
    --occupied-orange: #F59E0B;
    --offline-gray: #6B7280;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* Fonts */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--gray-50);
    color: var(--gray-700);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: var(--electric-blue);
    transition: color 0.2s;
}

a:hover {
    color: var(--electric-blue-dark);
}

/* Header */
header {
    background-color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--electric-blue);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Header Navigation */
.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-links a {
    color: var(--gray-600);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.lang-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    transition: all 0.2s;
}

.lang-selector-wrapper:hover {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
}

.lang-selector-wrapper .ic {
    color: var(--gray-600);
    pointer-events: none;
}

.lang-selector-wrapper:hover .ic {
    color: var(--electric-blue);
}

#language-select {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    outline: none;
    padding-right: 16px;
    /* Space for arrow */
    appearance: none;
    /* Remove default arrow in some browsers */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 14px;
    min-width: 80px;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .logo {
    gap: var(--spacing-sm);
}

[dir="rtl"] .popup-btn i {
    margin-right: 0;
    margin-left: 8px;
}

[dir="rtl"] #language-select {
    padding-right: 0;
    padding-left: 16px;
    background-position: left center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 8px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--gray-100);
        z-index: 1100;
        /* Ensure it is on top */
    }

    .nav-links.active {
        display: flex !important;
        /* Force display */
        animation: slideDown 0.3s ease-out forwards;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 12px;
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        margin: 12px 0;
        padding: 10px;
        border: 1px solid var(--gray-200);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background-color: var(--electric-blue);
    color: var(--white) !important;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--electric-blue-dark);
}

/* Specific Popup Sizing for Mobile */
@media (max-width: 480px) {
    .station-popup {
        min-width: 260px;
        max-width: 300px;
        padding: 16px 12px;
    }

    .station-popup h3 {
        font-size: 1.1rem;
    }

    .station-popup p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .popup-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .popup-btn i {
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--electric-blue), var(--electric-blue-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.store-badge img {
    height: 48px;
    transition: transform 0.2s;
}

.store-badge:hover img {
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) 20px 0;
}

.map-container {
    height: 400px;
    width: 100%;
    margin: var(--spacing-md) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    /* For rounded corners if container has them */
}

@media (min-width: 1024px) {
    .map-container {
        height: 500px;
    }
}

/* Demo / mock-data disclaimer above the map */
.map-disclaimer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    border-left: 4px solid var(--occupied-orange);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: #92400E;
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-disclaimer .ic {
    color: var(--occupied-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-disclaimer span {
    flex: 1;
    min-width: 220px;
}

.map-disclaimer strong {
    color: #92400E;
}

.cta-inline {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 8px 16px;
}

[dir="rtl"] .map-disclaimer {
    border-left: 1px solid #FCD34D;
    border-right: 4px solid var(--occupied-orange);
}

/* SEO / AI content section */
.content-section {
    padding: var(--spacing-xl) 20px;
    background-color: var(--white);
}

.content-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.content-wrap .section-title {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.content-wrap h3 {
    font-size: 1.3rem;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.content-wrap p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* Features */
.features {
    padding: var(--spacing-xl) 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 24px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.card-desc {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-xl) 20px;
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    counter-reset: step;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    text-align: center;
    padding: var(--spacing-lg);
    position: relative;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: transform 0.2s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--electric-blue);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.step-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xl) 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--gray-600);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h4 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--spacing-sm);
}

.footer-col a {
    color: var(--gray-600);
}

.footer-col a:hover {
    color: var(--electric-blue);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Google Maps InfoWindow Styles */
.gm-style .gm-style-iw-c {
    padding: 0 !important;
    border-radius: 20px !important;
    /* Even more rounded */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    /* Heaviest shadow */
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    max-height: none !important;
}

/* Custom Popup Content */
.station-popup {
    padding: 24px 16px 16px 16px;
    /* Maximum padding */
    min-width: 340px;
    /* Very wide */
    max-width: 420px;
}

.station-popup h3 {
    font-size: 1.5rem;
    /* Large headline */
    font-weight: 800;
    /* Extra bold */
    margin-bottom: 12px;
    color: var(--gray-900);
    line-height: 1.2;
}

.station-popup p {
    font-size: 1.1rem;
    /* Very readable text */
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.5;
}

.popup-buttons {
    display: flex;
    gap: 16px;
    /* More gap */
    width: 100%;
}

.popup-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    /* Big touch targets */
    border-radius: 12px;
    text-decoration: none !important;
    font-size: 1rem;
    /* Standard readability */
    font-weight: 600;
    color: white !important;
    transition: transform 0.1s, opacity 0.2s;
    white-space: nowrap;
}

.popup-btn:active {
    transform: scale(0.98);
}

.popup-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    /* Subtle lift */
}

.popup-btn.app-store {
    background-color: #000000;
}

.popup-btn.google-play {
    background-color: #00A669;
    /* Slightly brighter emerald */
}

.popup-btn i {
    font-size: 1.5rem;
    /* Huge icons */
    margin-right: 10px;
}

/* Remove default close button margin spacing */
.gm-ui-hover-effect {
    top: 12px !important;
    /* Adjust for larger padding */
    right: 12px !important;
    width: 36px !important;
    /* Larger close button */
    height: 36px !important;
    background-color: rgba(0, 0, 0, 0.08) !important;
    border-radius: 50% !important;
}

.gm-ui-hover-effect img {
    margin: 8px !important;
    /* Center the X icon */
    width: 20px !important;
    height: 20px !important;
}

/* Map Pin Styles */
.custom-pin {
    background: transparent;
    border: none;
}

/* Pulse Animation Z-Index Fix */
.pin-inner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 200;
    /* Higher than pulse */
    box-sizing: border-box;
    /* Ensure border doesn't break size */
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.6;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    70% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* ============================================================
   RESPONSIVE REFINEMENTS (full responsive across all devices)
   ============================================================ */

/* Global safety: prevent horizontal overflow & keep media fluid */
html {
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

.store-badge img {
    width: auto;
    /* keep aspect ratio with fixed height */
}

/* Fluid typography — scales smoothly from small phones to desktop */
.hero h1 {
    font-size: clamp(1.9rem, 6vw, 2.5rem);
}

.hero p {
    font-size: clamp(1rem, 2.6vw, 1.125rem);
}

.section-title {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
}

.card-title {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.content-wrap h3 {
    font-size: clamp(1.15rem, 3.4vw, 1.3rem);
}

.content-wrap p {
    font-size: clamp(0.98rem, 2.5vw, 1.05rem);
}

.station-popup h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

/* Tablet and below */
@media (max-width: 1024px) {
    .map-section,
    .features,
    .how-it-works,
    .faq,
    .content-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    header {
        padding: 12px 16px;
    }

    .hero {
        padding: 40px 16px;
    }

    .map-section,
    .features,
    .how-it-works,
    .content-section,
    .faq {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Language selector fills width inside the open mobile menu */
    .lang-selector-wrapper {
        width: 100%;
        justify-content: center;
        margin: 4px 0;
    }

    /* Demo/mock disclaimer stacks vertically on small screens */
    .map-disclaimer {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 14px;
    }

    .map-disclaimer span {
        min-width: 0;
    }

    .cta-inline {
        width: 100%;
        text-align: center;
        white-space: normal;
    }

    .hero-badges {
        gap: 10px;
    }

    .store-badge img {
        height: 44px;
    }

    .content-wrap .section-title {
        text-align: left;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero {
        padding: 32px 16px;
    }

    .section-title {
        margin-bottom: 24px;
    }

    .map-container {
        height: 320px;
    }

    .store-badge img {
        height: 42px;
    }

    .footer-content {
        gap: 24px;
    }

    .footer-col {
        flex: 1 1 100%;
        min-width: 0;
    }
}

/* Landscape phones / very short viewports keep the map usable */
@media (max-width: 480px) and (min-height: 640px) {
    .map-container {
        height: 360px;
    }
}
/* ============================================================
   PROGRAMMATIC CITY PAGES (/charging-stations/)
   ============================================================ */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px 0;
    font-size: 0.9rem;
    color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-600); }
.breadcrumb span { margin: 0 4px; color: var(--gray-400); }

.city-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 8px;
}
.city-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    margin-bottom: var(--spacing-md);
}
.city-intro {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 820px;
}
.city-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    max-width: 640px;
}
.city-stats .stat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 16px;
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--emerald-green-dark);
    line-height: 1.1;
}
.stat-num small { font-size: 0.8rem; font-weight: 600; }
.stat-label { font-size: 0.8rem; color: var(--gray-500); }
.city-cta { display: inline-block; margin-top: 4px; }

.city-map-section { max-width: 1100px; margin: var(--spacing-lg) auto 0; padding: 0 20px; }

.city-block { max-width: 1100px; margin: 0 auto; padding: var(--spacing-xl) 20px; }
.city-block h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); margin-bottom: var(--spacing-md); }
.muted { color: var(--gray-500); font-size: 0.9rem; margin-bottom: var(--spacing-md); }

.net-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
    background: #ECFDF5;
    color: var(--emerald-green-dark);
    border: 1px solid #A7F3D0;
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.9rem;
    font-weight: 500;
}
.chip em { font-style: normal; opacity: 0.6; margin-left: 4px; }

.station-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}
.station-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 18px;
}
.station-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--gray-900); }
.station-card .addr { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 10px; }
.station-card .addr i { color: var(--emerald-green); margin-right: 4px; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    color: var(--gray-700);
}
.badge.fast { background: #DBEAFE; color: #1D4ED8; }
.card-meta { display: flex; gap: 14px; font-size: 0.82rem; color: var(--gray-500); align-items: center; }
.card-meta .rating i { color: #F59E0B; }

/* Hub city grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--spacing-md);
}
.city-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    transition: transform 0.15s, border-color 0.15s;
}
.city-card:hover { transform: translateY(-3px); border-color: var(--emerald-green); }
.city-name { font-weight: 700; color: var(--gray-900); font-size: 1.1rem; }
.city-count { font-size: 0.85rem; color: var(--gray-500); }

.city-cta-block {
    max-width: 1100px;
    margin: 0 auto var(--spacing-xl);
    padding: var(--spacing-xl);
    text-align: center;
    background: linear-gradient(135deg, #ECFDF5, var(--white));
    border-radius: var(--radius-lg);
}
.city-cta-block h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); margin-bottom: var(--spacing-sm); }
.city-cta-block p { color: var(--gray-600); margin-bottom: var(--spacing-lg); }

@media (max-width: 640px) {
    .city-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Simple always-visible header nav for city / legal / 404 pages (no JS hamburger) */
.nav-simple {
    display: flex;
    gap: 14px;
    align-items: center;
}
.nav-simple .txt-link {
    color: var(--gray-600);
    font-weight: 500;
}
.nav-simple .txt-link:hover { color: var(--electric-blue); }
/* override the global mobile .cta-button{width:100%} so the header button stays compact */
.nav-simple .cta-button {
    width: auto;
    margin-top: 0;
}
@media (max-width: 480px) {
    .nav-simple { gap: 10px; }
    .nav-simple .txt-link { display: none; }
    .nav-simple .cta-button { padding: 8px 16px; }
}

/* Brand slogan above the hero headline */
.hero-eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.10);
    color: var(--electric-blue-dark, #047857);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Header brand lock-up: name + slogan */
.logo { text-decoration: none; }

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--electric-blue);
}

.logo-slogan {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--gray-600);
    white-space: nowrap;
}

/* The header gets tight before the mobile menu appears — drop the slogan first. */
@media (max-width: 1024px) {
    .logo-slogan { display: none; }
}

/* Inline SVG icon system (replaces the 169 KB Font Awesome CDN payload) */
.ic {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
    flex-shrink: 0;
}
