/* Shared city landing page styles - extracted from 8 city pages */
:root {
            --orange: #F77F00; --orange-light: #FF9A2E; --black: #0A0A0A;
            --dark: #111111; --dark2: #1A1A1A; --dark3: #222222;
            --gray: #888888; --gray-light: #BBBBBB; --white: #FFFFFF;
            --light-bg: #FAFAF8;
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: 'DM Sans', sans-serif; background: var(--black); color: var(--white); }

        /* ===== NAV ===== */
        nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 48px; display: flex; align-items: center; justify-content: space-between; background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); }
        .logo { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; color: var(--white); text-decoration: none; }
        .logo span { color: var(--orange); }
        .nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
        .nav-links a { color: var(--gray-light); text-decoration: none; font-size: 0.92rem; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: var(--white); }
        .nav-cta { background: var(--orange); color: var(--white) !important; padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: background 0.3s; }
        .nav-cta:hover { background: var(--orange-light); }

        /* ===== HAMBURGER ===== */
        .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1000; position: relative; }
        .nav-hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

        /* ===== HERO ===== */
        .hero { padding: 160px 48px 100px; background: linear-gradient(135deg, var(--dark) 0%, var(--black) 50%, #1a0f00 100%); position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(247,127,0,0.08) 0%, transparent 70%); border-radius: 50%; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(247,127,0,0.1); border: 1px solid rgba(247,127,0,0.25); padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; color: var(--orange); text-transform: uppercase; margin-bottom: 24px; }
        .hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
        .hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; max-width: 700px; }
        .hero h1 em { font-style: normal; color: var(--orange); }
        .hero p { font-size: 1.15rem; color: var(--gray-light); max-width: 560px; line-height: 1.7; margin-bottom: 40px; }
        .hero-stats { display: flex; gap: 48px; margin-top: 48px; }
        .hero-stat .number { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--orange); }
        .hero-stat .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-top: 4px; }
        .hero-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.3s; }
        .hero-cta:hover { background: var(--orange-light); transform: translateY(-2px); }
        .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
        .hero-image { border-radius: 20px; overflow: hidden; }
        .hero-image img { width: 100%; height: auto; display: block; border-radius: 20px; }

        /* ===== SECTIONS ===== */
        .section { padding: 100px 48px; }
        .section-light { background: var(--light-bg); color: var(--dark); }
        .section-dark { background: var(--dark2); }
        .section-black { background: var(--black); }
        .section-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
        .section-title em { font-style: normal; color: var(--orange); }
        .section-sub { font-size: 1.05rem; color: var(--gray); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
        .section-sub-dark { color: #666; }
        .max-w { max-width: 1200px; margin: 0 auto; }
        .section-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }

        /* ===== GRID CARDS ===== */
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px 24px; transition: all 0.3s; }
        .feature-card:hover { border-color: var(--orange); transform: translateY(-4px); }
        .feature-card .icon { font-size: 2rem; margin-bottom: 16px; }
        .feature-card h3 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; }
        .feature-card p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.6; }

        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .service-card { background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid #eee; transition: all 0.3s; }
        .service-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(247,127,0,0.08); }
        .service-card .icon { width: 48px; height: 48px; background: rgba(247,127,0,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
        .service-card h3 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
        .service-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }
        .service-card a { color: var(--orange); text-decoration: none; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; }

        /* ===== NEIGHBORHOODS ===== */
        .neighborhoods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
        .neighborhood { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px 24px; text-align: center; font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 1rem; transition: all 0.3s; }
        .neighborhood:hover { border-color: var(--orange); background: rgba(247,127,0,0.06); }

        /* ===== PROCESS ===== */
        .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .process-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px 24px; position: relative; }
        .process-card .step-num { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
        .process-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
        .process-card p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.6; }
        .process-card .timeline-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 16px; }

        /* ===== PRICING ===== */
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
        .pricing-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; text-align: center; transition: all 0.3s; }
        .pricing-card.featured { border-color: var(--orange); }
        .pricing-card .tier { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 12px; }
        .pricing-card .price { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: var(--orange); }
        .pricing-card .unit { font-size: 0.85rem; color: var(--gray-light); margin-top: 4px; }

        /* ===== TESTIMONIAL ===== */
        .testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 40px; max-width: 700px; margin: 0 auto; }
        .testimonial-stars { color: var(--orange); font-size: 1.3rem; margin-bottom: 16px; }
        .testimonial-text { font-size: 1.05rem; color: var(--gray-light); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; }
        .testimonial-name { font-weight: 600; }
        .testimonial-loc { font-size: 0.85rem; color: var(--gray); }

        /* ===== FAQ ===== */
        .faq-list { max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
        .faq-q { padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--white); }
        .faq-q:hover { color: var(--orange); }
        .faq-q span { font-size: 1.5rem; color: var(--orange); transition: transform 0.3s; }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-a-inner { padding: 0 0 24px; color: var(--gray-light); line-height: 1.8; font-size: 0.95rem; }
        .faq-item.open .faq-a { max-height: 300px; }
        .faq-item.open .faq-q span { transform: rotate(45deg); }

        /* ===== CTA ===== */
        .cta-section { padding: 100px 48px; background: linear-gradient(135deg, #1a0f00 0%, var(--dark) 50%, var(--black) 100%); text-align: center; }
        .cta-section h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
        .cta-section h2 em { font-style: normal; color: var(--orange); }
        .cta-section p { color: var(--gray-light); font-size: 1.1rem; max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }
        .cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); padding: 18px 40px; border-radius: 50px; font-weight: 700; font-size: 1.05rem; text-decoration: none; transition: all 0.3s; }
        .cta-btn:hover { background: var(--orange-light); transform: translateY(-2px); }

        /* ===== FOOTER ===== */
        footer { background: var(--dark); padding: 60px 48px 30px; border-top: 1px solid rgba(255,255,255,0.06); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; }
        .footer-brand .logo { font-size: 1.4rem; }
        .footer-brand p { color: var(--gray); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
        .footer-col h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 16px; color: var(--white); }
        .footer-col a { display: block; color: var(--gray); font-size: 0.9rem; text-decoration: none; margin-bottom: 10px; transition: color 0.3s; }
        .footer-col a:hover { color: var(--orange); }
        .footer-bottom { text-align: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); color: var(--gray); font-size: 0.8rem; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1280px) {
            .nav-links { display: none; }
            .nav-hamburger { display: flex !important; }
            nav { padding: 14px 20px !important; }
        }
        @media (max-width: 1024px) {
            .features-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
            .neighborhoods-grid { grid-template-columns: repeat(3, 1fr); }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .hero { padding: 120px 24px 60px; }
            .hero-inner { grid-template-columns: 1fr; }
            .hero-image { display: none; }
            .hero h1 { font-size: 2rem; }
            .hero-stats { gap: 24px; flex-wrap: wrap; }
            .section { padding: 60px 24px; }
            .features-grid, .services-grid, .process-grid, .pricing-grid { grid-template-columns: 1fr; }
            .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            nav { padding: 14px 20px; }
        }

        /* === MOBILE MENU === */
        .nav-links.open {
            display: flex !important; flex-direction: column; position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(10, 10, 10, 0.98); z-index: 999;
            justify-content: center; align-items: center; gap: 24px;
            padding: 80px 24px; animation: menuFadeIn 0.3s ease;
        }
        .nav-links.open li { list-style: none; }
        .nav-links.open li a { font-size: 1.4rem; padding: 12px 0; color: #fff; text-decoration: none; }
        .nav-links.open li a:hover { color: var(--orange); }
        .nav-links.open .nav-cta { display: inline-block; margin-top: 16px; }
        .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .nav-hamburger.active span:nth-child(2) { opacity: 0; }
        .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        @keyframes menuFadeIn { from { opacity: 0; } to { opacity: 1; } }