/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
    /* LOGO THEME COLORS */
    /* The 'EDiT' Pink color */
    --brand-accent: #D61A5E; 
    --brand-accent-dark: #a80f46;
    
    /* The 'ACE' Black color */
    --brand-black: #000000;
    
    /* Variable mapping for existing classes */
    --brand-gold: var(--brand-accent);       /* Maps old gold to new Pink */
    --brand-gold-dark: var(--brand-accent-dark);
    --brand-charcoal: var(--brand-black);    /* Maps old charcoal to pure Black */
    
    --brand-gray-text: #64748b;
    --brand-light-bg: #f8fafc;
    --swiper-theme-color: #D61A5E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brand-black);
    background-color: var(--brand-light-bg);
    /* Subtle pinkish grid pattern instead of blue-gray */
    background-image: repeating-linear-gradient(90deg, #f1f1f1, #f1f1f1 1px, transparent 1px, transparent 40px);
    overflow-x: hidden;
    padding-top: 85px; 
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--brand-black);
}

/* =========================================
   2. REUSABLE COMPONENTS & BUTTONS
   ========================================= */
.section-padding {
    padding: 50px 0;
}

.hero-title { 
    font-family: 'Inter', sans-serif; 
    font-weight: 800; 
    font-size: 2rem; 
    line-height: 1.2; 
    color: var(--brand-black); 
    text-transform: uppercase; 
    margin-bottom: 20px; 
    letter-spacing: -1px; 
}

/* Updated Subtitle to Pink */
.section-subtitle {
    color: var(--brand-accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

/* Buttons - Now Pink */
.btn-primary-pulse { 
    background-color: var(--brand-accent); 
    color: white; 
    border-radius: 50px; 
    padding: 14px 32px; 
    font-weight: 700; 
    border: none; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 10px; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    white-space: nowrap; 
}
.btn-primary-pulse:hover {
    background-color: var(--brand-accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 26, 94, 0.4); /* Pink glow */
}

.btn-double-outline { 
    background: transparent; 
    color: var(--brand-accent); 
    font-weight: 700; 
    padding: 12px 28px; 
    border-radius: 50px; 
    border: none; 
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--brand-accent); 
    margin-left: 20px; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 8px; 
    transition: all 0.3s; 
    white-space: nowrap; 
}
.btn-double-outline:hover {
    background-color: var(--brand-accent);
    color: white;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--brand-accent-dark);
}

/* =========================================
   3. UPDATED RESPONSIVE NAVBAR
   ========================================= */
.navbar {
    background-color: #ffffff;
    padding: 12px 0;
    transition: all 0.3s ease;
    min-height: 70px;
}

.logo-img {
    height: 70px; /* Desktop size */
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--brand-black) !important;
    margin: 0 10px;
    opacity: 0.85;
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 991.98px) {
    .navbar {
        padding: 8px 0 !important;
        min-height: 60px;
    }

    .logo-img {
        height: 38px !important; /* Phone par logo chhota */
    }

    /* Navbar ke direct buttons mobile par hide rahenge sirf menu ke andar dikhenge */
    .navbar .btn-nav:not(.offcanvas-body .btn-nav) {
        display: none !important;
    }

    .navbar-toggler {
        padding: 0;
        margin-right: -5px;
    }

    /* Menu links spacing on mobile */
    .nav-item {
        padding: 10px 0;
        border-bottom: 1px solid #f1f1f1;
    }

    /* Titles fix for phone */
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    body {
        padding-top: 65px !important; /* Header ke niche gap */
    }
}
/* =========================================
   4. HERO & SNAPSHOT BAR
   ========================================= */
.mobile-carousel { height: auto; overflow: hidden; }
.mobile-carousel img { height: 65vh; width: 100%; object-fit: cover; }

.snapshot-bar {
    background: white;
    border-bottom: 3px solid var(--brand-accent); /* Added Pink bottom border */
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: -50px;
    border-radius: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.snapshot-col {
    padding: 30px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.snapshot-col::after { content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background-color: #e2e8f0; }
.snapshot-col:last-child::after { display: none; }
.snapshot-icon { font-size: 1.8rem; color: var(--brand-accent); margin-bottom: 10px; }
.snapshot-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; color: var(--brand-gray-text); text-transform: uppercase; display: block; margin-bottom: 5px; }
.snapshot-value { font-size: 1.25rem; font-weight: 800; color: var(--brand-black); margin: 0; line-height: 1.2; }

/* =========================================
   5. SECTIONS (About & Highlights)
   ========================================= */
.about-content { padding: 80px 0; position: relative; }
.geo-image-wrapper { position: relative; height: 100%; min-height: 400px; display: flex; align-items: flex-end; }
.shape-back { position: absolute; top: 0; right: 0; width: 50%; height: 80%; background-color: var(--brand-accent); opacity: 0.1; z-index: 0; }
.shape-mid { position: absolute; top: 50px; left: -20px; width: 80%; height: 90%; background-color: var(--brand-black); clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%); z-index: 1; }
.main-img { position: relative; z-index: 2; width: 90%; border-radius: 4px; box-shadow: -20px 20px 40px rgba(0,0,0,0.2); }
@media (max-width: 576px) {

    .geo-image-wrapper {
        min-height: 300px;   /* overall container height control */
        align-items: center; /* image vertical center */
    }

    .shape-back {
       
        right: 0;
        width: 45%;
        height: 55%;        /* 🔽 reduced from 80% */
        opacity: 0.08;      /* subtle look */
        z-index: 0;
    }

    .shape-mid {
        top: 40%;
        left: -15px;
        width: 75%;
        height: 35%;        /* 🔽 reduced from 50% */
        z-index: 1;
    }

    .main-img {
        width: 100%;
        box-shadow: -12px 12px 25px rgba(0,0,0,0.18);
    }
}


.stats-row { display: flex; gap: 40px; margin-top: 40px; border-top: 1px solid #dcdcdc; padding-top: 30px; }
.stat-item { border-right: 1px solid #dcdcdc; padding-right: 40px; }
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 2rem; font-weight: 800; color: var(--brand-black); display: block; line-height: 1; }
.stat-lbl { font-size: 0.85rem; color: var(--brand-gray-text); font-weight: 600; margin-top: 5px; display: block; }

.highlight-list { list-style: none; padding: 0; margin: 30px 0; }
.highlight-list li { position: relative; padding-left: 35px; margin-bottom: 15px; color: var(--brand-gray-text); font-size: 1.05rem; }
.highlight-list li::before { content: "\F26A"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: 3px; color: var(--brand-accent); font-size: 1.2rem; }
.highlight-img { width: 100%; border-radius: 4px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); transition: transform 0.5s ease; }
.highlight-img:hover { transform: scale(1.02); }

@media (max-width: 576px) {

    .stat-val {
        font-size: 1.15rem;   /* 👈 number chhota */
    }

    .stat-lbl {
        font-size: 0.65rem;   /* 👈 label compact */
    }

    .stat-item {
        padding: 6px 4px;
    }
}
/* =========================================
   6. AMENITIES 
   ========================================= */
.swiper { width: 100%; padding-bottom: 50px !important; }
.swiper-pagination-bullet-active { background-color: var(--brand-accent) !important; }

.amenity-card {
    border: 1px solid #f1f5f9;
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.amenity-card:hover { border-color: var(--brand-accent); box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }
.amenity-icon { font-size: 4rem; color: var(--brand-black); margin-bottom: 20px; transition: color 0.3s; }
.amenity-card:hover .amenity-icon { color: var(--brand-accent); }
.amenity-title { font-weight: 600; font-size: 1rem; color: var(--brand-gray-text); margin: 0; line-height: 1.4; }

/* =========================================
   7. SNAPSHOT GRID
   ========================================= */
.snapshot-grid-container {
    background: white;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}
.snapshot-column { border-right: 1px solid #e2e8f0; }
.snapshot-column:last-child { border-right: none; }
.snapshot-header {
    background-color: var(--brand-black); /* Header black */
    color: white;
    padding: 20px 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 4px solid var(--brand-accent); /* Pink underline */
    border-right: 1px solid rgba(255,255,255,0.1); 
}
.snapshot-column:last-child .snapshot-header { border-right: none; }
.snapshot-content { background: white; }
.snapshot-item {
    padding: 25px 15px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    height: 140px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}
.snapshot-item:hover { background-color: #fff0f5; /* Light pink hover */ }
.snapshot-item.no-border { border-bottom: none; }
.snapshot-item .lbl { display: block; font-size: 0.8rem; color: var(--brand-gray-text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.snapshot-item .val { display: block; font-size: 1.15rem; font-weight: 700; color: var(--brand-black); line-height: 1.3; }
.text-gold { color: var(--brand-accent) !important; }

/* =========================================
   8. GALLERY
   ========================================= */
.gallery-img { width: 100%; height: 350px; object-fit: cover; border-radius: 4px; transition: transform 0.4s ease; }
.gallery-slide { position: relative; overflow: hidden; border-radius: 4px; }
.gallery-slide:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    border: 2px solid var(--brand-accent);
    opacity: 0; transition: opacity 0.3s; pointer-events: none;
    margin: 10px;
}
.gallery-slide:hover .gallery-overlay { opacity: 1; }

/* =========================================
   9. FORMS & FAQ
   ========================================= */
.form-card-unified {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.benefits-strip-side { min-width: 90px; }

.benefit-icon-box {
    width: 45px; height: 45px;
    border: 1px solid var(--brand-accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 5px auto;
    color: var(--brand-accent);
    font-size: 1.1rem;
    transition: all 0.3s;
    background: white;
}

.benefit-item:hover .benefit-icon-box { background-color: var(--brand-accent); color: white; }
.benefit-text { font-size: 0.7rem; font-weight: 700; color: var(--brand-black); line-height: 1.2; display: block; }

/* --- INPUT & SELECT STYLES --- */
.custom-input-pill {
    border-radius: 50px !important;
    padding: 12px 20px;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
    background-color: #f8fafc;
    transition: all 0.3s;
}

.custom-input-pill:focus,
.form-select.custom-input-pill:focus {
    background-color: white;
    border-color: var(--brand-accent) !important;
    box-shadow: 0 0 0 4px rgba(214, 26, 94, 0.1) !important;
    outline: none !important;
}

.form-select.custom-input-pill { 
    background-position: right 1.5rem center; 
    color: var(--brand-black); 
}

/* --- ACCORDION STYLES --- */
.custom-accordion .accordion-item { background-color: transparent; border: none; border-bottom: 1px solid #e2e8f0; margin-bottom: 5px; }
.custom-accordion .accordion-button { background-color: transparent; color: var(--brand-black); font-weight: 700; font-size: 1.05rem; padding: 18px 0; box-shadow: none; }
.custom-accordion .accordion-button:not(.collapsed) { color: var(--brand-accent); }
.custom-accordion .accordion-body { padding: 0 0 20px 0; color: var(--brand-gray-text); line-height: 1.6; }
/* Updated SVG icons in accordion to match pink */
.custom-accordion .accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D61A5E'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e"); }
.custom-accordion .accordion-button:not(.collapsed)::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D61A5E'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e"); }

/* =========================================
   10. FOOTER & STICKY BAR
   ========================================= */
.footer-dark {
    background-color: var(--brand-black);
    color: #e2e8f0;
    margin-top: auto;
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
    border-top: 5px solid var(--brand-accent);
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}
.btn-sticky {
    width: 100%;
    border: none;
    padding: 15px 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-sticky-dark { background-color: var(--brand-black); color: white; }
.btn-sticky-gold { background-color: var(--brand-accent); color: white; }

.btn-bottom-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px; 
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--brand-accent);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1050; 
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-bottom-to-top:hover { background-color: var(--brand-accent-dark); transform: translateY(-3px); }
.btn-bottom-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================
   11. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 991px) {
    .navbar-nav { align-items: flex-start; margin-top: 20px; }
    .nav-link { color: #333 !important; text-align: left; margin: 8px 0; }
    .nav-link i { color: var(--brand-accent); }
    .offcanvas-body { background-color: white; }
    .snapshot-bar { margin-top: 0; border-radius: 0; }
    .snapshot-col { border-bottom: 1px solid #e2e8f0; }
    .snapshot-col::after { display: none; }
    .geo-image-wrapper { height: auto; margin-top: 50px; }
    
    .btn-wrapper-mobile { display: flex; gap: 10px; width: 100%; margin-bottom: 30px; }
    .btn-primary-pulse, .btn-double-outline { width: 50%; justify-content: center; padding: 12px 10px; font-size: 0.85rem; margin-left: 0; }
    
    .stats-row { flex-wrap: nowrap; gap: 0; }
    .stat-item { padding: 0 10px; flex: 1; text-align: center; }
}

@media (max-width: 768px) {
    .snapshot-column { border-right: none; border-bottom: 10px solid #f1f5f9; }
    .snapshot-item { height: auto; padding: 20px; }
    body { padding-bottom: 60px; }
    .btn-bottom-to-top { bottom: 80px; }
}

@media (max-width: 576px) {
    .benefits-strip-side { display: none !important; }
    .form-card-unified { padding: 20px; }
}

/* =========================================
   5. NEW UPCOMING CTA SECTION
   ========================================= */
.upcoming-section {
    background-color: var(--brand-black);
    position: relative;
    overflow: hidden;
    color: white;
}
/* Abstract Pink shape */
.upcoming-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-accent) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.upcoming-badge {
    background-color: var(--brand-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.upcoming-title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.upcoming-title span { color: var(--brand-accent); }

/* Responsive Titles Fix */
@media (max-width: 767.98px) {
    /* Main Hero Title */
    .hero-title {
        font-size: 1.8rem !important; /* Phone par size control karne ke liye */
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    /* Section Subtitles (jo chhota text upar hota hai) */
    .section-subtitle {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
    }

    /* Overall Section Padding (Phone par space bachane ke liye) */
    .section-padding {
        padding: 50px 0 !important;
    }
}

/* Extra small devices (chhotey phones) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem !important;
    }
}

/* Festive badge */
.festive-badge{
    position:absolute;
    top:0;
    left:15px;
    width:90px;
    z-index:10;
    pointer-events:none;
}

/* Logo */
.modal-logo{
    height:40px;
    object-fit:contain;
    padding-left: 5px;
}

/* Radio wrapper */
.interest-box{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 10px;
    border:1px solid #e5e5e5;
    border-radius:6px;
    margin-bottom:6px;
}

/* Highlight upcoming */
.interest-box.highlight{
    background:#fff7e0;
    border-color:#d4af37;
    font-weight:600;
}

/* Mobile tuning */
@media(max-width:576px){
    .modal-logo{height:32px;}
    .modal-logo-wrap{
        padding-left:55px;
        text-align:left;
    }
    .festive-badge{
        width:75px;
        left:10px;
    }
}

