/* Core Variables */
:root {
    --blue: #0F172A; 
    --blue-dark: #0B1120;
    --gold: #ECA823; 
    --gold-hover: #D4901A;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --grey: #475569;
    --text-dark: #1e293b;
    
    /* English Fonts (Ye wahi hain jo tum chahte ho) */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Perfect Hindi Fonts (Toggle dabane par active honge) */
    --font-hindi-heading: 'Rozha One', serif;
    --font-hindi-body: 'Mukta', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Default English Setup */
body {
    font-family: var(--font-body); /* Poppins */
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { 
    font-family: var(--font-heading); /* Playfair Display */
    color: var(--blue); 
}

/* Hindi Toggle Setup (Jab user Hindi select karega) */
body.lang-hi { 
    font-family: var(--font-hindi-body); /* Mukta */
    font-size: 1.05rem; 
}

body.lang-hi h1, 
body.lang-hi h2, 
body.lang-hi h3, 
body.lang-hi h4 { 
    font-family: var(--font-hindi-heading); /* Rozha One */
    font-weight: 400; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.gold-text { color: var(--gold); }

.section-title { font-size: 40px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.section-subtitle { display: inline-block; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-size: 14px; }

/* Buttons */
.btn-solid-gold {
    background: var(--gold); color: var(--white);
    padding: 10px 24px; border-radius: 30px; border: none; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: 0.3s ease; display: inline-block;
}
.btn-solid-gold:hover { background: var(--gold-hover); transform: translateY(-3px); }

.btn-outline-white {
    background: transparent; color: var(--white);
    padding: 10px 24px; border-radius: 30px; border: 2px solid var(--white); font-weight: 600;
    text-decoration: none; transition: 0.3s ease; display: inline-block;
}
.btn-outline-white:hover { background: var(--white); color: var(--blue); }

.btn-large { padding: 14px 32px; font-size: 16px; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: 0.3s;
}
.nav-container { 
    display: flex; 
    align-items: center; 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 15px 20px; 
}
.brand-logo { 
    font-family: var(--font-heading); 
    font-size: 26px; 
    font-weight: 700; 
    color: var(--blue); 
    text-decoration: none; 
    margin-right: auto; /* Ye logo ko left mein rakhega aur baaki sabko right push karega */
}
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
    margin-right: 30px; /* Toggle button se thoda gap */
}
.nav-links a { text-decoration: none; color: var(--blue); font-weight: 500; font-size: 16px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; gap: 15px; align-items: center; }
.mobile-menu-btn { display: none; font-size: 24px; color: var(--blue); cursor: pointer; }

/* Sliding Toggle Switch */
.lang-toggle-wrap {
    position: relative;
    display: flex;
    width: 160px;
    height: 40px;
    background-color: var(--blue);
    border-radius: 30px;
    cursor: pointer;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
    align-items: center;
    padding: 4px;
}
.lang-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background-color: var(--gold);
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.lang-opt {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s;
    user-select: none;
}
/* Active states handled by JS classes */
.lang-toggle-wrap.en-active .lang-slider { transform: translateX(0); }
.lang-toggle-wrap.hi-active .lang-slider { transform: translateX(100%); }
.lang-toggle-wrap.en-active .lang-opt.en { color: var(--blue); }
.lang-toggle-wrap.hi-active .lang-opt.hi { color: var(--blue); }


/* Floating Buttons with Pulse Animation */
.floating-contact {
    position: fixed; bottom: 25px; right: 25px;
    display: flex; flex-direction: column; gap: 15px; z-index: 999;
}
.float-btn {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: white; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: 0.3s;
    animation: pulse 2s infinite;
}
.float-wa { background-color: #25D366; }
.float-call { background-color: var(--gold); animation-delay: 1s; }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(236, 168, 35, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(236, 168, 35, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(236, 168, 35, 0); }
}

/* Hero */
.hero-banner {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; padding-top: 80px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 100%); z-index: -1;
}
.hero-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.hero-badge {
    display: inline-block; background: rgba(236, 168, 35, 0.2); color: var(--gold);
    padding: 6px 16px; border: 1px solid var(--gold); border-radius: 30px; font-weight: 500; margin-bottom: 20px;
}
.hero-title { font-size: 60px; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-title-small { font-weight: 300; font-size: 35px; }
.hero-desc { color: #e2e8f0; font-size: 18px; max-width: 650px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 20px; }

/* =========================================
   OVERVIEW SECTION (Left Content, Right Image)
========================================= */
.overview-section {
    padding: 100px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    /* Strict Left-Right Layout: Left thoda bada (1.3fr), Right fix (1fr) */
    grid-template-columns: 1.3fr 1fr; 
    gap: 60px;
    align-items: flex-start; /* Image aur Text dono ekdum top level se start honge */
}

/* --- Left Side Styling --- */
.overview-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.overview-text {
    color: var(--grey);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.bold-text { font-weight: 600; }

.feature-list {
    list-style: none;
    margin-bottom: 30px; /* Space before Trust Box */
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Premium Trust Box (Directly under Left Content) */
.overview-trust-box {
    background-color: var(--white);
    border: 1px solid rgba(236, 168, 35, 0.3); /* Gold border */
    border-radius: 16px;
    padding: 25px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(0,0,0,0.05);
    padding-right: 15px;
}

.trust-stat:last-child {
    border-right: none;
    padding-right: 0;
}

.trust-stat i {
    font-size: 28px;
    background: rgba(236, 168, 35, 0.1);
    padding: 12px;
    border-radius: 10px;
    color: var(--gold);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.stat-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--grey);
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Right Side Styling (Image) --- */
.overview-image-wrapper {
    position: sticky; /* Sticky isliye taaki left content scroll ho toh bhi image fixed rahe */
    top: 120px; 
    width: 100%;
    height: 100%;
}

.overview-img.large-img {
    width: 100%;
    height: 100%;
    min-height: 600px; /* Image lambi aur bhari hui dikhegi */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .overview-grid {
        grid-template-columns: 1fr; /* Mobile me 1 column stack ho jayega */
        gap: 40px;
    }
    .overview-image-wrapper {
        position: relative;
        top: 0;
    }
    .overview-img.large-img {
        min-height: auto;
    }
    .overview-trust-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .trust-stat {
        flex-direction: column;
        border-right: none;
        padding-right: 0;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .trust-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* =========================================
   UPGRADED: Full 28 Points Luxury Grid 
========================================= */
.full-amenities-section { 
    padding: 100px 0; 
    background: var(--light-bg); 
    position: relative;
}

.all-points-grid {
    display: grid;
    /* Grid ko thoda dense kiya hai taaki bhara hua lage */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px;
    margin-top: 40px;
}

.point-item {
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid transparent;
    /* Ekdum smooth aur thoda bouncy animation */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative;
    overflow: hidden;
}

/* Premium Hover Effect */
.point-item:hover {
    transform: translateY(-5px) scale(1.02);
    /* Hover karne par halka Gold shadow aur border aayega */
    box-shadow: 0 15px 30px rgba(236, 168, 35, 0.15);
    border-color: rgba(236, 168, 35, 0.4);
    color: var(--blue-dark);
}

/* Icon (Checkmark) ko ek luxury circle mein pack kiya hai */
.point-item i {
    background: rgba(236, 168, 35, 0.1);
    color: var(--gold);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

/* Jab box par hover hoga toh Icon ka color aur background change hoga */
.point-item:hover i {
    background: var(--gold);
    color: var(--white);
    transform: rotate(360deg); /* Icon ghumega (Micro-interaction) */
}

/* =========================================
   PREMIUM FOOTER STYLES 
========================================= */
.site-footer {
    background: var(--blue-dark);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px; /* Upar ka extra space kam kar diya */
}

/* Main Footer Grid */
.footer-grid {
    display: grid;
    /* Brand (2fr) - Links (1fr) - Contact (1.5fr) */
    grid-template-columns: 2fr 1fr 1.5fr; 
    gap: 50px;
    padding-bottom: 30px;
    padding-top: 10px; /* Yahan se bhi extra padding hata di */
}

.footer-col h2, .footer-col h3 { color: var(--white); margin-bottom: 25px; }
.footer-col p { color: #94a3b8; font-size: 15px; margin-bottom: 15px; line-height: 1.8; }

/* Links */
.links-col ul { list-style: none; }
.links-col ul li { margin-bottom: 12px; }
.links-col ul li a { color: #94a3b8; text-decoration: none; transition: 0.3s; display: inline-block; }
.links-col ul li a:hover { color: var(--gold); transform: translateX(5px); }

/* Contact Icons */
.contact-col p { display: flex; align-items: flex-start; gap: 15px; }
.contact-col i { margin-top: 5px; font-size: 16px; }

/* Social Links */
.social-links { margin-top: 25px; display: flex; gap: 15px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.05); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s; border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--gold); color: var(--blue-dark); border-color: var(--gold); transform: translateY(-3px); }

/* Footer Bottom (CENTER ALIGNED & SAME COLOR) */
.footer-bottom { 
    background: transparent; /* Pehle jo alag color tha use hata diya, ab main footer jaisa dikhega */
    padding: 20px 0; 
    border-top: 1px solid rgba(255,255,255,0.05); 
}
.footer-bottom-flex { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%;
}
.footer-bottom p { 
    color: #64748B; 
    font-size: 14px; 
    margin: 0; 
    text-align: center;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .contact-col p { justify-content: center; }
    .social-links { justify-content: center; }
}
/* Responsive Fixes */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .hero-title { font-size: 45px; }
    .hero-title-small { font-size: 30px; }
    .layout-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 576px) {
    .hero-buttons { flex-direction: column; }
    .floating-contact { bottom: 15px; right: 15px; }
    .float-btn { width: 50px; height: 50px; font-size: 24px; }
    .lang-toggle-wrap { width: 140px; }
}


/* =========================================
   SCROLL REVEAL ANIMATIONS
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Items delay for staggered grid effect */
.point-item { opacity: 0; transform: translateY(20px); transition: all 0.5s ease; }
.full-amenities-section.active .point-item { opacity: 1; transform: translateY(0); }


/* =========================================
   FIX: 28 POINTS VISIBILITY
========================================= */
.full-amenities-section, 
.all-points-grid, 
.point-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}