/* ===== SOBHA ARANYA — Eco-Luxe Residences ===== */
/* Design: Fraunces + Manrope | Forest Green accent | Sharp 2px radius | Staggered grid gallery */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
      --dark: #1A2E1A;
      --dark-light: #243824;
      --ivory: #F5F0E8;
      --cream: #FAF7F2;
      --white: #FFFFFF;
      --accent: #2D5F2D;
      --accent-light: #3A7A3A;
      --text-primary: #111111;
      --text-secondary: #464646;
      --text-muted: #888888;
      --border: #E0D8CC;
      --radius: 2px;
      --radius-sm: 2px;
      --radius-pill: 50px;
      --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
      --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--text-primary); background: var(--white); line-height: 1.6; font-weight: 300; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; font-family: var(--font-body); }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
    .section { padding: 100px 0; }
    .section-dark { background: var(--dark); color: var(--ivory); }
    .section-cream { background: var(--cream); }

    /* ===== REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.25s ease-out, transform 0.25s ease-out; will-change: transform, opacity; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.04s; }
    .reveal-delay-2 { transition-delay: 0.08s; }
    .reveal-delay-3 { transition-delay: 0.12s; }

    /* ===== SECTION LABELS ===== */
    .section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .section-label::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
    .section-label span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); }
    .section-dark .section-label::before { background: var(--accent-light); }
    .section-dark .section-label span { color: var(--accent-light); }

    /* ===== TICKER ===== */
    .ticker { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: var(--dark); height: 36px; overflow: hidden; display: flex; align-items: center; }
    .ticker-inner { display: flex; white-space: nowrap; animation: ticker-scroll 35s linear infinite; will-change: transform; }
    .ticker-inner span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); padding: 0 16px; }
    .ticker-inner .diamond { color: var(--accent-light); padding: 0 8px; font-size: 8px; }
    @keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ===== NAV ===== */
    nav { position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; padding: 0 48px; height: 64px; display: flex; align-items: center; justify-content: space-between; transition: background 0.3s, padding 0.3s; }
    nav.solid { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
    .nav-brand { display: flex; align-items: center; gap: 16px; }
    .nav-logo { position: relative; height: 28px; width: 120px; flex-shrink: 0; }
    .nav-logo img { height: 100%; width: auto; }
    .nav-logo-white, .nav-logo-dark { position: absolute; top: 0; left: 0; transition: opacity 0.3s; }
    .nav-logo-dark { opacity: 0; }
    nav.solid .nav-logo-white { opacity: 0; }
    nav.solid .nav-logo-dark { opacity: 1; }
    .nav-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.3); }
    nav.solid .nav-divider { background: var(--border); }
    .nav-project { display: flex; flex-direction: column; }
    .nav-project-name { font-family: var(--font-heading); font-size: 18px; font-weight: 400; color: var(--white); line-height: 1.2; }
    nav.solid .nav-project-name { color: var(--dark); }
    .nav-cp { font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); white-space: nowrap; }
    nav.solid .nav-cp { color: var(--text-muted); }
    .nav-links { display: flex; gap: 32px; }
    .nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.8); transition: color 0.3s; }
    nav.solid .nav-links a { color: var(--text-secondary); }
    @media (hover: hover) { .nav-links a:hover { color: var(--accent); } }
    .nav-cta { display: inline-flex; align-items: center; padding: 10px 24px; background: var(--white); color: var(--dark); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius); cursor: pointer; transition: opacity 0.2s; position: relative; overflow: hidden; white-space: nowrap; }
    nav.solid .nav-cta { background: var(--accent); color: var(--white); }
    .nav-cta::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%); transform: translateX(-100%); transition: transform 0.6s; }
    @media (hover: hover) { .nav-cta:hover::after { transform: translateX(100%); } }

    /* ===== HERO ===== */
    .hero { position: relative; height: 100vh; min-height: 600px; max-height: 1080px; overflow: hidden; display: flex; flex-direction: column; background: var(--dark); padding-top: 100px; }
    .hero-image-wrap { position: relative; flex: 1; min-height: 0; overflow: hidden; z-index: 1; }
    .hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,10,0.75) 0%, rgba(10,20,10,0.15) 40%, transparent 65%); }
    .hero-content { position: absolute; bottom: 56px; left: 48px; max-width: 600px; background: rgba(14,30,14,0.82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); padding: 44px 48px; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 3; }
    .hero-overline { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 16px; }
    .hero-title { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 60px); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
    .hero-sub { font-size: clamp(15px, 1.5vw, 17px); color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; font-weight: 300; }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: nowrap; }
    .btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; background: var(--white); color: var(--dark); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius); cursor: pointer; position: relative; overflow: hidden; white-space: nowrap; max-width: 320px; transition: opacity 0.2s; }
    .btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%); transform: translateX(-100%); transition: transform 0.6s; }
    @media (hover: hover) { .btn-primary:hover::after { transform: translateX(100%); } }
    .btn-ghost { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; background: transparent; color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.4); border-radius: var(--radius); cursor: pointer; white-space: nowrap; max-width: 320px; transition: border-color 0.3s, color 0.3s; }
    @media (hover: hover) { .btn-ghost:hover { border-color: var(--white); color: var(--white); } }

    /* Hero Stats */
    .hero-stats { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; z-index: 3; }
    .hero-stat { text-align: right; background: rgba(0,0,0,0.35); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 14px 20px; min-width: 140px; }
    .hero-stat-value { font-family: var(--font-heading); font-size: clamp(24px, 3.5vw, 42px); font-weight: 400; color: var(--white); line-height: 1.1; }
    .hero-stat-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 4px; }

    /* ===== ABOUT ===== */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .about-headline { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 48px); font-weight: 400; line-height: 1.15; color: var(--dark); }
    .about-text { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.8; color: var(--text-secondary); font-weight: 300; margin-bottom: 32px; }
    .about-quote { font-family: var(--font-heading); font-size: clamp(18px, 2.5vw, 24px); font-weight: 400; color: var(--accent); line-height: 1.4; padding-left: 24px; border-left: 2px solid var(--accent); font-style: italic; }

    /* ===== PRICING ===== */
    .pricing-banner { background: var(--accent); padding: 48px; text-align: center; border-radius: var(--radius); }
    .pricing-value { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px); font-weight: 400; color: var(--white); margin-bottom: 8px; }
    .pricing-note { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 300; }

    /* ===== GALLERY ===== */
    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 320px 280px; gap: 8px; margin-top: 48px; }
    .gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); }
    .gallery-item:nth-child(1) { grid-row: 1 / 3; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    @media (hover: hover) { .gallery-item:hover img { transform: scale(1.03); } }
    .gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); }
    .gallery-caption span { font-size: 13px; font-weight: 400; color: var(--white); letter-spacing: 0.04em; }
    @media (hover: none) { .gallery-caption { opacity: 1; } }

    /* ===== FEATURES ===== */
    .features-with-form { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; margin-top: 40px; }
    .feature-item { display: flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .feature-number { font-family: var(--font-heading); font-size: 32px; font-weight: 400; color: var(--accent-light); line-height: 1; min-width: 48px; }
    .feature-content h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
    .feature-content p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; }

    /* Sidebar form — dark variant */
    .sidebar-form-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 36px 28px; position: sticky; top: 120px; }
    .sidebar-form-title { font-family: var(--font-heading); font-size: 26px; font-weight: 400; color: #fff; line-height: 1.25; margin-bottom: 8px; }
    .sidebar-form-sub { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 28px; }
    .inline-input { display: block; width: 100%; padding: 14px 0; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); background: transparent; color: #fff; font-family: var(--font-body); font-size: 15px; font-weight: 300; outline: none; margin-bottom: 4px; transition: border-color 0.3s; }
    .inline-input::placeholder { color: rgba(255,255,255,0.4); }
    .inline-input:focus { border-bottom-color: var(--accent-light); }
    .inline-form-rera { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 16px; line-height: 1.5; }

    .inline-input--light { color: var(--text-primary); border-bottom-color: var(--border); }
    .inline-input--light::placeholder { color: var(--text-muted); }
    .inline-input--light:focus { border-bottom-color: var(--accent); }

    .inline-submit { display: block; width: 100%; padding: 16px; margin-top: 28px; background: var(--accent); color: #fff; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: var(--radius-pill); cursor: pointer; transition: opacity 0.2s; }
    @media (hover: hover) { .inline-submit:hover { opacity: 0.85; } }

    /* ===== FLOOR PLANS ===== */
    .floor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
    .floor-card { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
    .floor-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
    .floor-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.0); transition: transform 0.4s ease; }
    @media (hover: hover) { .floor-card:hover .floor-card-image img { transform: scale(1.05); } }
    .floor-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.15) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 32px 24px; gap: 10px; }
    .floor-card-type { font-family: var(--font-heading); font-size: 22px; color: #fff; background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.3); border-radius: 100px; padding: 8px 24px; text-align: center; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
    .floor-card-sqft { font-size: 13px; color: rgba(255,255,255,0.95); background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 6px 18px; letter-spacing: 0.06em; text-transform: uppercase; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
    .floor-unlock-btn { margin-top: 6px; width: 85%; padding: 13px 0; background: var(--accent); color: #fff; border: none; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: opacity 0.2s; }
    @media (hover: hover) { .floor-unlock-btn:hover { opacity: 0.85; } }

    /* ===== INVESTMENT ===== */
    .invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .invest-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .invest-stat { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); }
    .invest-stat-value { font-family: var(--font-heading); font-size: clamp(28px, 3vw, 40px); font-weight: 400; color: var(--dark); line-height: 1.1; margin-bottom: 4px; }
    .invest-stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

    /* Accordion */
    .accordion { margin-top: 0; }
    .accordion-item { border-bottom: 1px solid var(--border); }
    .section-dark .accordion-item { border-bottom-color: rgba(255,255,255,0.1); }
    .accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; width: 100%; background: none; font-family: var(--font-body); font-size: 16px; font-weight: 400; color: var(--text-primary); text-align: left; }
    .section-dark .accordion-header { color: var(--ivory); }
    .accordion-icon { font-size: 24px; font-weight: 300; transition: transform 0.3s; color: var(--accent); flex-shrink: 0; margin-left: 16px; }
    .accordion-item.active .accordion-icon { transform: rotate(45deg); }
    .accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .accordion-body-inner { padding: 0 0 20px; font-size: 15px; line-height: 1.7; color: var(--text-secondary); font-weight: 300; }
    .section-dark .accordion-body-inner { color: rgba(255,255,255,0.6); }

    /* ===== LOCATION ===== */
    .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
    .location-map { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
    .location-map iframe { width: 100%; height: 100%; border: 0; }
    .landmark-group { margin-bottom: 24px; }
    .landmark-group-title { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
    .landmark-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); font-weight: 300; }
    .landmark-row span:last-child { color: var(--text-muted); white-space: nowrap; }

    /* ===== AMENITIES ===== */
    .amenity-carousel { position: relative; overflow: hidden; margin-top: 48px; border-radius: var(--radius); }
    .amenity-track { display: flex; transition: transform 0.4s ease; will-change: transform; }
    .amenity-slide { flex: 0 0 100%; position: relative; aspect-ratio: 16/9; }
    .amenity-slide img { width: 100%; height: 100%; object-fit: cover; }
    .amenity-slide-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); }
    .amenity-slide-caption span { font-size: 15px; font-weight: 400; color: var(--white); letter-spacing: 0.04em; }
    .amenity-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
    .amenity-arrow { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; cursor: pointer; background: var(--white); transition: border-color 0.3s; }
    @media (hover: hover) { .amenity-arrow:hover { border-color: var(--accent); } }
    .amenity-dots { display: flex; gap: 8px; }
    .amenity-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.3s; }
    .amenity-dot.active { background: var(--accent); }
    .amenity-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
    .amenity-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; font-weight: 400; color: var(--text-secondary); }
    .amenity-pill svg { flex-shrink: 0; }

    /* ===== DEVELOPER ===== */
    .dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .dev-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .dev-stat { padding: 24px; background: var(--cream); border-radius: var(--radius); }
    .dev-stat-value { font-family: var(--font-heading); font-size: clamp(28px, 3vw, 40px); font-weight: 400; color: var(--dark); line-height: 1.1; margin-bottom: 4px; }
    .dev-stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
    .dev-quote { font-family: var(--font-heading); font-size: clamp(18px, 2.5vw, 24px); font-weight: 400; color: var(--accent); line-height: 1.4; margin-bottom: 24px; font-style: italic; }
    .dev-text { font-size: 15px; line-height: 1.8; color: var(--text-secondary); font-weight: 300; margin-bottom: 16px; }
    .dev-credentials { list-style: none; }
    .dev-credentials li { font-size: 14px; color: var(--text-secondary); padding: 6px 0; font-weight: 300; display: flex; align-items: center; gap: 8px; }
    .dev-credentials li svg { flex-shrink: 0; color: var(--accent); }

    /* ===== CTA SECTION ===== */
    .cta-section { text-align: center; background: var(--dark); padding: 80px 0; }
    .cta-headline { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 48px); font-weight: 400; color: var(--white); margin: 16px 0; }
    .cta-sub { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 32px; font-weight: 300; max-width: 540px; margin-left: auto; margin-right: auto; }
    .cta-section .btn-primary { background: var(--accent); color: var(--white); }

    /* ===== FAQ ===== */
    .faq-list { width: 100%; margin: 0; margin-top: 48px; }

    /* ===== BOTTOM FORM ===== */
    .bottom-form-section { background: var(--cream); }
    .bottom-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .bottom-form-headline { font-family: var(--font-heading); font-size: clamp(28px, 3vw, 44px); font-weight: 400; line-height: 1.2; margin: 16px 0; color: var(--dark); }
    .bottom-form-headline em { font-style: italic; color: var(--accent); }
    .bottom-form-sub { font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 32px; }
    .bottom-form-visual { border-radius: var(--radius); overflow: hidden; }
    .bottom-form-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; display: block; }

    /* ===== FOOTER ===== */
    footer { background: var(--dark); padding: 48px 0; }
    .footer-text { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.8; font-weight: 300; }
    .footer-text a { color: rgba(255,255,255,0.6); text-decoration: underline; }
    @media (hover: hover) { .footer-text a:hover { color: var(--white); } }

    /* ===== MODAL ===== */
    .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .modal-overlay.active { opacity: 1; pointer-events: auto; }
    .modal-card { background: var(--white); border-radius: var(--radius); padding: 48px 40px; max-width: 480px; width: 90%; position: relative; }
    .modal-close { position: absolute; top: 16px; right: 16px; background: none; font-size: 24px; color: var(--text-muted); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
    @media (hover: hover) { .modal-close:hover { color: var(--text-primary); } }
    .modal-title { font-family: var(--font-heading); font-size: 28px; font-weight: 400; color: var(--dark); margin-bottom: 8px; line-height: 1.2; }
    .modal-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
    .modal-input { display: block; width: 100%; padding: 14px 16px; border: 1.5px solid #e0e0e0; border-radius: 6px; font-family: var(--font-body); font-size: 15px; font-weight: 300; color: var(--text-primary); margin-bottom: 12px; outline: none; transition: border-color 0.3s; }
    .modal-input:focus { border-color: var(--accent); }
    .modal-input::placeholder { color: var(--text-muted); }
    .modal-submit { display: block; width: 100%; padding: 16px; margin-top: 8px; background: var(--accent); color: var(--white); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: var(--radius-pill); cursor: pointer; transition: opacity 0.2s; }
    @media (hover: hover) { .modal-submit:hover { opacity: 0.85; } }
    .modal-rera { font-size: 11px; color: var(--text-muted); margin-top: 16px; text-align: center; line-height: 1.5; }

    /* Phone wrap */
    .phone-wrap { display: flex; align-items: center; background: var(--white); border: 1.5px solid #e0e0e0; border-radius: 6px; overflow: hidden; margin-bottom: 12px; }
    .phone-wrap:focus-within { border-color: var(--accent); }
    .phone-cc { padding: 0 10px 0 12px; font-size: 14px; font-weight: 600; color: #333; white-space: nowrap; border-right: 1.5px solid #e0e0e0; height: 100%; display: flex; align-items: center; }
    .phone-wrap input[type="tel"] { border: none !important; outline: none !important; flex: 1; background: transparent; margin-bottom: 0; }
    /* Inline form phone wrap (no outer border) */
    .sidebar-form-card .phone-wrap,
    .bottom-form-copy .phone-wrap { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); border-radius: 0; padding: 0 0 4px; }
    .sidebar-form-card .phone-wrap:focus-within { border-bottom-color: var(--accent-light); }
    .sidebar-form-card .phone-cc,
    .bottom-form-copy .phone-cc { border-right: none; padding: 0 8px 0 0; color: rgba(255,255,255,0.6); font-weight: 400; }
    .bottom-form-copy .phone-wrap { border-bottom-color: var(--border); }
    .bottom-form-copy .phone-cc { color: var(--text-muted); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .container { padding: 0 24px; }
      .section { padding: 64px 0; }
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .about-grid, .invest-grid, .location-grid, .dev-grid, .bottom-form-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero { height: 100vh; min-height: 600px; overflow: hidden; }
      .hero-image-wrap { max-height: calc(100vh - 178px); /* 100px padding + 78px stats */ }
      .hero-stats { position: static; transform: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: rgba(10,18,10,0.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 20px 24px; order: 3; border: none; border-radius: 0; }
      .hero-stat { text-align: center; padding: 8px 4px; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; border: none; border-right: 1px solid rgba(255,255,255,0.1); border-radius: 0; min-width: 0; }
      .hero-stat:last-child { border-right: none; }
      .hero-stat-value { font-size: 22px; }
      .hero-stat-label { font-size: 9px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 240px 240px; }
      .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
      .features-with-form { grid-template-columns: 1fr; }
      .sidebar-form-card { position: static; }
      .bottom-form-visual { order: -1; }
      .bottom-form-visual img { min-height: 280px; }
    }

    @media (max-width: 768px) {
      .floor-grid { grid-template-columns: 1fr; }
      .floor-card-type { font-size: 18px; }
      .floor-unlock-btn { width: 90%; }
      .invest-stats, .dev-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    }

    @media (max-width: 640px) {
      .section { padding: 48px 0; }
      .container { padding: 0 16px; }
      nav { padding: 0 16px; gap: 8px; }
      nav .nav-brand { min-width: 0; flex: 1; overflow: hidden; gap: 8px; }
      nav .nav-project { min-width: 0; }
      nav .nav-project-name { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
      nav .nav-cp { font-size: 7.5px; letter-spacing: 0.06em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

      /* Nav always dark on mobile */
      nav { background: var(--dark) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
      nav .nav-logo-white { opacity: 1 !important; }
      nav .nav-logo-dark { opacity: 0 !important; }
      nav .nav-divider { background: rgba(255,255,255,0.3) !important; }
      nav .nav-project-name { color: var(--white) !important; }
      nav .nav-cp { color: rgba(255,255,255,0.5) !important; }
      nav .nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 8px 12px; font-size: 9px; letter-spacing: 0.06em; flex-shrink: 0; max-width: 120px; overflow: hidden; text-overflow: ellipsis; }

      /* Hero mobile: text first, image below */
      .hero { min-height: auto; padding-top: 100px; height: auto; overflow: hidden; }
      .hero-content { position: static; max-width: 100%; backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--dark); border: none; box-shadow: none; padding: 28px 16px 32px; border-radius: 0; order: 1; }
      .hero-title { font-size: clamp(30px, 9vw, 46px); }
      .hero-image-wrap { order: 2; height: 55vw; min-height: 240px; max-height: 380px; max-height: none; margin-top: 0; }
      .hero-overlay { display: block; }
      .hero-ctas { flex-wrap: nowrap; }
      .hero-ctas .btn-primary, .hero-ctas .btn-ghost { flex: 1; text-align: center; justify-content: center; padding: 12px 16px; font-size: 11px; }
      .hero-stats { order: 3; grid-template-columns: repeat(4, 1fr); padding: 14px 12px; }
      .hero-stat-value { font-size: 16px; }
      .hero-stat-label { font-size: 8px; letter-spacing: 0.08em; }

      .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .gallery-item:nth-child(1) { grid-column: 1; grid-row: auto; }
      .gallery-item { aspect-ratio: 16/9; }

      .location-grid { grid-template-columns: 1fr; }
      .amenity-pills { gap: 8px; }
      .amenity-pill { padding: 8px 14px; font-size: 12px; }

      .modal-card { padding: 32px 24px; }
      .pricing-banner { padding: 32px 16px; }
    }
