/* GODREJ VANANTARA - FINAL STABLE PREMIUM CSS 2026 */

:root {
    --godrej-green: #5FB233;
    --godrej-blue: #4187CE;
    --godrej-magenta: #BD1362;
    --primary: #BD1362;
    --gold: #C5A059;
    --dark: #111111;
    --darker: #000000;
    --white: #FFFFFF;
    --light: #F9FAFB;
    --border: #E5E7EB;
    --godrej-gradient: linear-gradient(90deg, #5FB233, #4187CE, #BD1362, #4187CE, #5FB233);
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; max-width: 100%; }

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 25px; width: 100%; }
.bg-light { background-color: var(--light); }
.text-center { text-align: center; }

/* Premium Animations */
@keyframes shimmerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.live-gradient {
    background: var(--godrej-gradient);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGradient 6s linear infinite;
    display: inline-block;
}

/* Typography */
h1, h2, h3, h4 { color: var(--dark); font-weight: 700; }
.text-gradient { 
    background: var(--godrej-gradient); 
    background-size: 300% auto;
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    animation: shimmerGradient 6s linear infinite;
    display: inline-block; 
}
.section-padding { padding: 70px 0; }
.section-title { font-size: 3.2rem; margin-bottom: 20px; line-height: 1.2; }
.section-subtitle { 
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 4px; font-weight: 800; margin-bottom: 12px; display: block;
    background: var(--godrej-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGradient 8s linear infinite;
}
.gradient-line { height: 5px; width: 80px; background: var(--godrej-gradient); background-size: 200% auto; animation: shimmerGradient 8s linear infinite; margin-bottom: 30px; border-radius: 10px; }
.gradient-line.center { margin: 30px auto; }

/* Header */
.top-bar { background: var(--darker); color: white; padding: 12px 0; font-size: 0.85rem; letter-spacing: 1px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: white; text-decoration: none; font-weight: 700; }

.main-header { 
    background: rgba(255, 255, 255, 0.98); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
    height: 90px; display: flex; align-items: center; transition: var(--transition);
}
.menu-toggle { display: none; font-size: 1.5rem; color: var(--dark); cursor: pointer; z-index: 3000; }
.logo-link { height: 40px; display: flex; align-items: center; }
.main-header.scrolled { height: 75px; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.nav-logo { height: 55px; }
.desktop-nav { display: flex; align-items: center; }
.desktop-nav a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; margin-left: 20px; transition: 0.3s; position: relative; }
.desktop-nav a:hover { color: var(--primary); }
.desktop-nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: 0.3s; }
.desktop-nav a:hover::after { width: 100%; }

/* Buttons & Animations */
.btn-primary {
    background: var(--godrej-gradient);
    background-size: 300% 300%;
    animation: shimmerGradient 6s linear infinite;
    color: white; border: none; padding: 14px 28px; border-radius: 50px; 
    font-weight: 700; text-transform: uppercase; font-size: 0.8rem; cursor: pointer; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex; align-items: center; justify-content: center; gap: 12px; letter-spacing: 1px;
}
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 30px rgba(189, 19, 98, 0.4); }

.btn-outline-white {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.4); color: white; padding: 14px 28px; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; font-size: 0.8rem; cursor: pointer; transition: 0.3s;
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
}
.btn-outline-white:hover { background: white; color: black; transform: translateY(-2px); }

.btn-outline {
    background: var(--godrej-gradient) !important; background-size: 200% 200% !important;
    animation: shimmerGradient 4s linear infinite;
    border: 2px solid #DDD !important; color: white !important; padding: 14px 28px; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; font-size: 0.8rem; cursor: pointer; transition: 0.3s;
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
}
.btn-outline:hover { background: #EEE; border-color: #BBB; }
.btn-outline:hover { 
    border-color: var(--primary); color: var(--primary); background: rgba(189, 19, 98, 0.05); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transform: translateY(-2px);
}

/* Hero Mega Compact */
.hero { min-height: 600px; height: calc(100vh - 130px); background-size: cover; background-position: center; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%); }
.hero-container { position: relative; z-index: 10; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.hero-text-content { flex: 1; }
.hero-title { font-size: 3.2rem; color: white; margin-bottom: 8px; line-height: 1.1; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.1rem; color: #DDD; margin-bottom: 20px; font-weight: 300; opacity: 0.9; }
.eoi-badge { 
    display: inline-block; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid transparent; border-image: var(--godrej-gradient) 1;
    color: white; padding: 8px 18px; font-weight: 700; margin-bottom: 20px; 
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
}
.eoi-badge::before {
    content: ''; position: absolute; inset: 0; background: var(--godrej-gradient);
    opacity: 0.1; z-index: -1;
}

.hero-stats { 
    display: flex; gap: 20px; margin: 30px 0; 
    background: rgba(0,0,0,0.6); padding: 18px 25px; 
    border-radius: 8px; backdrop-filter: blur(15px); 
    border-left: 4px solid var(--godrej-green); 
    width: fit-content; 
    border: 1px solid rgba(255,255,255,0.1);
}
.hs-item { color: white; border: none; }
.hs-item strong { display: block; font-size: 1.1rem; font-weight: 800; line-height: 1.2; }
.hs-item span { font-size: 0.65rem; text-transform: uppercase; opacity: 0.9; letter-spacing: 0.5px; }

.hero-form-box {
    width: 350px; background: rgba(0,0,0,0.85); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 25px; color: white;
}
.hero-form-box h3 { color: white; font-size: 1.6rem; margin-bottom: 8px; }
.input-wrap { position: relative; margin-bottom: 20px; width: 100%; }
.iti { width: 100%; }
.input-wrap i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--godrej-green); z-index: 5; }
.input-wrap input { width: 100% !important; padding: 18px 18px 18px 50px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: white; font-size: 0.95rem; }

.btn-submit { 
    width: 100%; padding: 12px; 
    background: var(--godrej-gradient);
    background-size: 300% 300%;
    animation: shimmerGradient 6s linear infinite;
    color: white; border: none; border-radius: 50px; font-weight: 800; cursor: pointer; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s; 
}
.btn-submit:hover { transform: scale(1.02); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

/* Sections */
.overlap-section { position: relative; z-index: 20; }
.section-padding { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-grid.reverse { grid-template-columns: 0.9fr 1.1fr; }
.about-img-wrap img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); display: block; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
.stat-box { background: white; padding: 40px 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.stat-number { font-size: 2.8rem; font-weight: 800; margin-bottom: 5px; }
.stat-label { font-size: 0.85rem; text-transform: uppercase; color: #777; font-weight: 800; letter-spacing: 1px; }

.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.amenity-card { background: white; padding: 50px 30px; border-radius: 12px; border: 1px solid var(--border); text-align: center; transition: 0.3s; }
.amenity-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: var(--godrej-green); }
.amenity-card i { font-size: 3.5rem; margin-bottom: 25px; }

.fp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.fp-card { background: white; border-radius: 12px; border: 2px solid #CCC !important; overflow: hidden; position: relative; transition: 0.3s; }
.fp-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.fp-badge { position: absolute; top: 20px; left: 20px; color: white; padding: 6px 14px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; border-radius: 2px; z-index: 10; }
.fp-head { padding: 40px 30px; text-align: center; }
.fp-price { font-size: 2.8rem; font-weight: 800; margin-top: 15px; }
.fp-img-box { position: relative; cursor: pointer; height: 320px; background: #eee; overflow: hidden; }
.fp-img-box img { width: 100%; height: 100%; object-fit: cover; filter: blur(20px); transition: 0.8s; }
.fp-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1.2rem; gap: 10px; }
.fp-btn-row { padding: 25px; display: flex; gap: 15px; }
.fp-btn-row .btn-primary, .fp-btn-row .btn-outline { flex: 1; padding: 12px 10px; font-size: 0.75rem; }

/* Video Lock */
.video-lock-container { max-width: 1000px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 40px 80px rgba(0,0,0,0.2); }
.video-blur-thumb { width: 100%; height: 100%; object-fit: cover; filter: blur(10px) brightness(0.7); transition: 0.5s; }
.video-overlay-lock { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; background: rgba(0,0,0,0.4); text-align: center; }
.video-overlay-lock h3 { color: white !important; font-size: 2.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; }
.video-overlay-lock p { color: #DDD; font-size: 1.1rem; }
.play-btn-circle { width: 100px; height: 100px; background: var(--godrej-gradient); background-size: 200% 200%; animation: shimmerGradient 4s linear infinite; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 25px; transition: 0.4s; }

/* Gallery Auto-Slider */
.gallery-slider-wrap { width: 100%; overflow: hidden; padding: 40px 0; background: #fff; }
.gallery-track { display: flex; width: calc(300px * 12); animation: slide 30s linear infinite; gap: 20px; }
.gallery-track:hover { animation-play-state: paused; }
.gallery-slide { width: 350px; height: 250px; flex-shrink: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 6)); }
}

.connectivity-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.connectivity-list li { display: flex !important; align-items: center !important; gap: 30px !important; margin-bottom: 35px !important; padding: 25px !important; background: white !important; border-radius: 12px !important; border: 1px solid #EEE !important; transition: 0.3s !important; box-shadow: 0 5px 15px rgba(0,0,0,0.03) !important; }
.connectivity-list li:hover { transform: translateX(10px); box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important; border-color: var(--godrej-green) !important; }
.connectivity-list i { font-size: 2.2rem !important; width: 60px !important; text-align: center !important; flex-shrink: 0 !important; }
.connectivity-list div { font-size: 1.1rem !important; color: #555 !important; line-height: 1.6 !important; }
.connectivity-list strong { display: block !important; font-size: 1.25rem !important; color: var(--dark) !important; margin-bottom: 5px !important; }

.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 20px; overflow: hidden; transition: 0.3s; }
.faq-item summary { padding: 25px 30px; font-weight: 800; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; }
.faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; background: var(--godrej-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; transition: 0.3s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-content { padding: 0 30px 30px; line-height: 1.8; color: #666; font-size: 1rem; border-top: 1px solid #f5f5f5; padding-top: 20px; }

.contact-info-footer { margin-top: 40px; }
.contact-info-footer p { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 15px; }
.contact-info-footer i { color: var(--godrej-green); font-size: 1.3rem; }

footer { background: white; padding: 100px 0 50px; color: #555; border-top: 1px solid #EEE; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 80px; margin-bottom: 80px; }
.footer-brand p { margin-top: 25px; line-height: 1.8; font-size: 0.95rem; }
.footer-links h4, .footer-rera h4 { color: var(--dark); font-size: 1.2rem; margin-bottom: 30px; font-weight: 800; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #666; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--godrej-green); padding-left: 5px; }
.footer-about p { margin-bottom: 20px; font-size: 0.95rem; line-height: 1.8; color: #666; }

.rera-highlight { text-align: center; margin-bottom: 40px; padding-top: 40px; border-top: 1px solid #EEE; }
.rera-highlight p { margin-bottom: 10px; font-size: 1.1rem; color: #555; }
.rera-highlight .shimmer-text { font-size: 1.3rem; font-weight: 800; }

.disclaimer { border-top: 1px solid #EEE; padding-top: 40px; font-size: 0.75rem; line-height: 1.8; text-align: center; max-width: 1000px; margin: 0 auto; color: #999; }
.copyright { text-align: center; margin-top: 40px; font-size: 0.85rem; letter-spacing: 1px; color: #777; }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .footer-brand, .footer-about { padding: 0 20px; }
    .rera-highlight { padding: 40px 20px; }
    .rera-highlight .shimmer-text { font-size: 1.1rem; }
    .disclaimer { padding: 40px 20px; font-size: 0.8rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .video-lock-container { aspect-ratio: auto; min-height: 300px; }
    .video-overlay-lock h3 { font-size: 1.4rem; padding: 0 15px; }
    .video-overlay-lock p { font-size: 0.85rem; padding: 0 20px; margin-bottom: 0; }
    .play-btn-circle { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 15px; }
}

/* Modal System */
.modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.85); backdrop-filter: blur(15px); }
.modal-dialog { 
    max-width: 550px; margin: 80px auto; background: var(--darker); border-radius: 20px; 
    overflow: hidden; position: relative; padding: 50px; text-align: center;
    border: 2px solid transparent; border-image: var(--godrej-gradient) 1;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.modal-dialog h2 { color: white; font-size: 2.2rem; margin-bottom: 15px; }
.modal-dialog p { color: #AAA; margin-bottom: 35px; font-size: 1rem; }
.close-modal { position: absolute; right: 25px; top: 20px; font-size: 30px; cursor: pointer; color: white; opacity: 0.5; transition: 0.3s; }
.close-modal:hover { opacity: 1; transform: rotate(90deg); }

.modal .input-wrap input { 
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 8px; color: white; padding: 18px 18px 18px 50px;
}
.modal .input-wrap i { color: var(--godrej-green); }

.f-wa { background: #25D366; }
.floating-contact { position: fixed; bottom: 40px; right: 40px; z-index: 100; display: flex; flex-direction: column; gap: 20px; }
.f-icon { 
    width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    color: white; font-size: 2.2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3); text-decoration: none;
    animation: float 3s ease-in-out infinite;
}
.f-call { animation-delay: 0.5s; background: var(--godrej-gradient); background-size: 200% 200%; animation: float 3s ease-in-out infinite, shimmerGradient 4s linear infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Enhanced Reveals */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: 1.2s ease-out; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: 1.2s ease-out; }

.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0, 0); }

/* Hero Entrance */
@keyframes heroBgScale {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}
.hero { animation: heroBgScale 8s ease-out; }

/* Pricing Card Glow */
.fp-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.fp-card:hover .fp-img-box img { transform: scale(1.1); filter: blur(15px); }

@media (max-width: 1100px) {
    .main-header { height: 70px; }
    .nav-logo { height: 40px; }
    .menu-toggle { display: block; margin-left: 20px; }
    
    .desktop-nav { 
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; 
        background: white; flex-direction: column; padding: 80px 30px; 
        box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 2500;
        display: flex; 
        align-items: flex-start;
    }
    /* Hide the original horizontal links if the drawer is not active */
    .desktop-nav:not(.active) { visibility: hidden; pointer-events: none; }
    .desktop-nav.active { right: 0; visibility: visible; pointer-events: auto; }
    
    .desktop-nav a { font-size: 1rem; border-bottom: 1px solid #F0F0F0; padding: 12px 0; width: 100%; text-align: left; margin: 0; }
    .nav-cta { margin-left: auto; }
    .nav-cta .btn-primary { padding: 8px 15px; font-size: 0.8rem; }
    .nav-cta .btn-primary i { display: none; }
    
    .about-grid, .amenities-grid, .fp-grid { grid-template-columns: 1fr !important; gap: 40px; }
    .about-grid.reverse { grid-template-columns: 1fr !important; }
    .about-img-wrap { margin-top: 30px; order: 2; }
    .reveal-left, .reveal-right { order: 1; }
    .hero { height: auto; padding: 100px 0; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-form-box { width: 100%; margin-top: 60px; }
    .hero-stats { justify-content: center; flex-wrap: wrap; width: 100%; }
    .hero-stats { margin: 25px auto; justify-content: center; flex-wrap: wrap; text-align: center; }
    .hero-title { font-size: 2.8rem; text-align: center; }
    .hero-subtitle { text-align: center; }
    .eoi-badge { display: block; margin: 0 auto 20px; width: fit-content; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .top-bar { font-size: 0.75rem; padding: 10px 0; }
    .floating-contact { right: 20px; bottom: 20px; gap: 10px; }
    .f-icon { width: 55px; height: 55px; font-size: 1.6rem; }
    .modal-dialog { margin: 20px; padding: 40px 20px; }
    .modal-dialog h2 { font-size: 1.8rem; }
    .section-title h2 { font-size: 2rem; }
}

.error-msg { color: #FF5252; font-size: 0.8rem; margin-top: 8px; display: none; }
.input-wrap.invalid input { border-color: #FF5252 !important; }
