/* =========================================
   EXPERT RESPONSIVE OPTIMIZATIONS
   ========================================= */


        :root {
            --brand-blue: #0077b6;
            --brand-dark: #1a1a1a;
            --brand-grey: #555;
            --btn-gradient: linear-gradient(135deg, #f58220 0%, #ffaa00 100%);
        }

        body { font-family: 'Inter', sans-serif; color: var(--brand-dark); overflow-x: hidden; }
        h1, h2, h3, h4, .serif-font { font-family: 'Playfair Display', serif; }

        /* --- 1. NAVBAR --- */
        .navbar-floating {
            position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
            width: 95%; max-width: 1280px;
            background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 50px; padding: 10px 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08); z-index: 1020;
        }
       /* --- Stylish Logo Overflow & Text Alignment --- */
.navbar-brand {
    position: relative;
    padding: 0;
    margin-right: 20px;
    display: flex;
    align-items: center;
    height: 60px; /* Navbar height ke sath aligned */
}

.navbar-brand img {
    height: 80px; /* Bada size taaki symbol overflow ho sake */
    width: auto;
    position: absolute;
    /* Isse text navbar ke andar center rahega aur 'e' upar nikal jayega */
    top: -20px; 
    left: 0;
    z-index: 1050;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    transition: all 0.4s ease-in-out;
}

/* Scroll hone par logo ko thoda compact karne ke liye */
.navbar-floating.scrolled .navbar-brand img {
    height: 60px !important; 
    top: -10px;
}

/* Nav links ko logo ke text ke baad start karne ke liye space */
.navbar-collapse {
    margin-left: 140px; 
}

/* Mobile responsive fix */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 70px;
        top: -25px;
    }
    .navbar-collapse {
        margin-left: 0;
    }
}
        .nav-link { font-weight: 500; color: var(--brand-dark); margin: 0 10px; }
        .nav-link:hover { color: var(--brand-blue); }
        .navbar-toggler { border: none; padding: 5px; }
        .navbar-toggler:focus { box-shadow: none; }

        /* Mobile Sidebar */
        .offcanvas { z-index: 1050; border-radius: 0 24px 24px 0; max-width: 280px; }
        .offcanvas-body .nav-link { padding: 15px 0; border-bottom: 1px solid #f0f0f0; font-size: 1.1rem; }

        .btn-gradient {
            background: var(--btn-gradient); color: white; border: none;
            padding: 10px 28px; border-radius: 50px; font-weight: 600;
            box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3); transition: transform 0.2s;
        }
        .btn-gradient:hover { transform: translateY(-2px); color: white; }

        /* --- 2. HERO CAROUSEL (FOGGY) --- */
        .hero-section { position: relative; height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
        
        .hero-carousel { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
        .carousel-item { height: 100vh; }
        .hero-img { width: 100%; height: 100%; object-fit: cover; }

        /* The Fog Overlay */
        .hero-fog-overlay {
            position: absolute; bottom: 0; left: 0; width: 100%; height: 60%;
            background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 65%, #ffffff 100%);
            z-index: 2; pointer-events: none;
        }

        .hero-content-layer { position: relative; z-index: 4; width: 100%; margin-top: 50px; padding-top: 80px; }
        .hero-title {
            font-size: 3.8rem; font-weight: 700; line-height: 1.1; margin-bottom: 20px;
            background: linear-gradient(to right, #002d58, #0077b6); 
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .hero-subtitle { font-size: 1.2rem; color: #444; max-width: 650px; margin-bottom: 30px; }

        /* Highlighted RERA Badge */
        .rera-badge {
            background-color: #fff;
            color: #dc3545; /* Red color for attention */
            border: 2px solid #dc3545;
            padding: 8px 18px; border-radius: 50px;
            font-weight: 700; font-size: 0.95rem;
            display: inline-block; margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15); letter-spacing: 0.5px;
        }

        /* --- 3. INFINITE 3D GALLERY --- */
        .gallery-wrapper {
            position: relative; width: 100%; height: 550px;
            margin-top: 40px; display: flex; justify-content: center; align-items: center;
            overflow: hidden; perspective: 1000px;
        }
        
        .gallery-card {
            position: absolute;
            width: 65%; /* Width of Center Image */
            height: 100%;
            top: 0; left: 50%;
            background: #fff; border-radius: 24px; overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            /* Default State: Hidden Behind */
            transform: translateX(-50%) scale(0.7); 
            opacity: 0; z-index: 0; visibility: hidden;
        }
        .gallery-card img { width: 100%; height: 100%; object-fit: cover; }
        
        /* Active (Center) */
        .gallery-card.active {
            transform: translateX(-50%) scale(1);
            opacity: 1; z-index: 10; visibility: visible;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }
        
        /* Previous (Left Side) */
        .gallery-card.prev {
            transform: translateX(-120%) scale(0.85);
            opacity: 0.5; z-index: 5; visibility: visible;
            filter: grayscale(100%) brightness(0.7);
            cursor: pointer;
        }
        
        /* Next (Right Side) */
        .gallery-card.next {
            transform: translateX(20%) scale(0.85);
            opacity: 0.5; z-index: 5; visibility: visible;
            filter: grayscale(100%) brightness(0.7);
            cursor: pointer;
        }

        .gallery-label {
            position: absolute; bottom: 30px; left: 30px;
            background: rgba(255, 255, 255, 0.9); padding: 10px 25px; border-radius: 30px;
            font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Gallery Buttons */
        .slider-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 60px; height: 60px; background: white; color: var(--brand-dark);
            border-radius: 50%; border: none; z-index: 20; cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15); transition: 0.3s;
            display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
        }
        .slider-btn:hover { background: var(--brand-blue); color: white; transform: translateY(-50%) scale(1.1); }
        .prev-btn { left: 5%; } .next-btn { right: 5%; }

        /* --- 4. AMENITIES --- */
        .amenity-pill {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 12px 24px; background: white; border: 1px solid #e0e0e0;
            border-radius: 50px; font-weight: 500; color: #444;
            transition: 0.3s; cursor: default;
        }
        .amenity-pill:hover { border-color: var(--brand-blue); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

        .section-padding { padding: 90px 0; }
        .bg-light-blue { background-color: #f4f8fb; }
        .reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
        .reveal-on-scroll.active { opacity: 1; transform: translateY(0); }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar-floating { padding: 10px 15px; width: 92%; }
            .hero-title { font-size: 2.8rem; }
            .gallery-wrapper { height: 350px; }
            .gallery-card { width: 85%; }
            /* Hide side cards on mobile for cleaner look */
            .gallery-card.prev, .gallery-card.next { opacity: 0; pointer-events: none; }
            .prev-btn { left: 10px; } .next-btn { right: 10px; }
        }
        /* Slider Buttons - Small & Black */
.slider-btn {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    width: 45px; /* Size chhota kar diya */
    height: 45px; 
    background: rgba(0, 0, 0, 0.8); /* Pure Black with slight transparency */
    color: #ffffff; /* White Arrow */
    border-radius: 50%; 
    border: none; 
    z-index: 25; 
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); 
    transition: all 0.3s ease;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; /* Arrow size balance kiya */
}

.slider-btn:hover {
    background: #000000; /* Hover par solid black */
    transform: translateY(-50%) scale(1.1);
    color: #ffffff;
}

.prev-btn { left: 15px; } 
.next-btn { right: 15px; }

/* Mobile par aur bhi thoda adjust karne ke liye */
@media (max-width: 768px) {
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
}

/* --- Updated Slider Buttons --- */
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 45px; height: 45px; 
    background: rgba(0, 0, 0, 0.85); color: #fff;
    border-radius: 50%; border: none; z-index: 25; 
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: 0.3s; font-size: 1.2rem;
}
.slider-btn:hover { background: #000; transform: translateY(-50%) scale(1.1); }
.prev-btn { left: 15px; } .next-btn { right: 15px; }

/* --- Walkthrough & Location Styling --- */
.bg-dark-custom { background-color: #050a12; color: white; }
.video-container {
    position: relative; border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(14, 1, 1, 0.1);
}


/* Walkthrough Section Height Fix */
#walkthrough {
    padding: 60px 0; /* Padding thodi kam ki hai */
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px; /* Video ki width limit ki taaki height control mein rahe */
    margin: 0 auto;
    aspect-ratio: 16 / 9; /* Perfect Cinema Ratio */
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Video container mein fit rahegi */
}

/* --- New Premium Location Design --- */
.location-master-section {
    background: #ffffff; /* Clean White Background */
    padding: 100px 0;
}

.map-card-wrapper {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
}

.map-container-side {
    flex: 1;
    min-width: 350px;
  
}

.map-container-side iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(10%) contrast(105%); /* Natural yet clean look */
}

.info-container-side {
    flex: 0 0 400px;
    background: #002d58; /* Premium Deep Blue */
    color: white;
    padding: 45px;
    display: flex;
    flex-direction: column;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.location-item:last-child { border: none; }

.dist-badge {
    color: #ffaa00;
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255,170,0,0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.address-box {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .info-container-side { flex: 1 0 100%; }
    .map-container-side { height: 350px; }
}

/* --- FAQ & FORM SECTION --- */
.faq-section { background-color: #f9fbff; padding: 80px 0; }

/* Accordion Styling */
.accordion-item {
    border: none; margin-bottom: 15px; border-radius: 12px !important;
    overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.accordion-button {
    font-weight: 600; color: #004a99; background: white; padding: 20px;
}
.accordion-button:not(.collapsed) {
    background-color: #f0f7ff; color: var(--brand-dark); /* Highlighted Active Question */
    box-shadow: none;
}
.accordion-button::after { background-size: 1rem; }

/* Enquiry Form Styling */
.enquiry-card {
    background: white; border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: none;
}
.enquiry-header {
    background-color: #0056b3; color: white; padding: 20px;
    font-size: 1.5rem; font-weight: 700; text-align: left;
}
.form-control, .form-select {
    padding: 12px 15px; background-color: #f8f9fa;
    border: 1px solid #e9ecef; border-radius: 8px; margin-bottom: 15px;
}
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1); border-color: #0056b3;
}
.btn-submit {
    background-color:var(--brand-dark); color: white; font-weight: 800;
    width: 100%; padding: 14px; border-radius: 8px; border: none;
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.btn-submit:hover { background-color:var(--brand-dark); transform: translateY(-2px); }

.interest-label { font-size: 0.85rem; font-weight: 600; color: #555; margin-bottom: 10px; display: block; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.form-check-label { font-size: 0.85rem; }

/* --- UNIT CONFIGURATION SECTION --- */
.unit-config-section { padding: 80px 0; background-color: #ffffff; }

.table-premium {
    border-collapse: separate;
    border-spacing: 0 12px; /* Row spacing for card look */
    width: 100%;
}

.table-premium thead th {
    background-color: #002d58;
    color: white;
    padding: 18px;
    border: none;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.table-premium thead th:first-child { border-radius: 12px 0 0 12px; }
.table-premium thead th:last-child { border-radius: 0 12px 12px 0; }

.table-premium tbody tr {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.table-premium tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.table-premium td {
    background: white;
    padding: 20px;
    vertical-align: middle;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.table-premium td:first-child { border-left: 1px solid #f0f0f0; border-radius: 12px 0 0 12px; color: #002d58; font-weight: 700; }
.table-premium td:last-child { border-right: 1px solid #f0f0f0; border-radius: 0 12px 12px 0; color: #ed1c24; font-weight: 800; }

.payment-plan-card {
    background: linear-gradient(135deg, #002d58 0%, #004a99 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,45,88,0.2);
}

.price-star { font-size: 0.8rem; vertical-align: top; color: #ed1c24; }

/* --- Highlights Section Styling --- */
.highlight-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 35px 25px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #0077b6;
  margin-top: 10px;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 119, 182, 0.05);
    color: #0077b6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: 0.3s;
}

.highlight-card:hover .highlight-icon {
    background: #0077b6;
    color: #ffffff;
}

.highlight-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.highlight-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Swiper Pagination Color */
.swiper-pagination-bullet-active {
    background: #0077b6 !important;
}

/* Mobile adjustments for 2 columns */
@media (max-width: 768px) {
    .highlight-card {
        padding: 20px 15px; /* Thoda kam padding mobile ke liye */
    }
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .highlight-title {
        font-size: 0.9rem;
    }
    .highlight-text {
        font-size: 0.75rem;
    }
}/* --- Ultra-Premium Investment Section Styles --- */
.invest-main-wrapper {
    background: #ffffff;
    border-radius: 40px;
    position: relative;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

/* Subtle background pattern to remove "empty" feel */
.invest-main-wrapper::before {
    content: 'ONTARIO';
    position: absolute;
    top: 10%;
    right: -5%;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0, 119, 182, 0.02);
    z-index: 0;
}

.invest-feature-card {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    position: relative;
}

.invest-feature-card:hover {
    transform: translateX(15px);
    border-color: #0077b6;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.1);
}

.invest-icon-box {
    min-width: 55px;
    height: 55px;
    background: #002d58;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.asset-banner {
    background: #002d58;
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    border-left: 8px solid #ed1c24;
}

.premium-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.roi-badge-floating {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #ed1c24;
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(5deg);
    box-shadow: 0 10px 20px rgba(237, 28, 36, 0.3);
    z-index: 3;
}

/* --- Why Invest Grid Styling --- */
.invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop par 3 columns */
    gap: 20px;
    margin-top: 40px;
}

.small-invest-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.small-invest-card:hover {
    transform: translateY(-5px);
    border-color: #0077b6;
    box-shadow: 0 10px 25px rgba(0,119,182,0.1);
}

.card-icon-sm {
    width: 45px;
    height: 45px;
    background: rgba(0, 119, 182, 0.08);
    color: #0077b6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.small-invest-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Mobile Responsive: 2 Columns Inline */
@media (max-width: 768px) {
    .invest-grid {
        grid-template-columns: repeat(2, 1fr); /* Phone par ek row me do card */
        gap: 12px;
    }
    .small-invest-card {
        padding: 15px 10px;
    }
    .card-icon-sm {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .small-invest-card p {
        font-size: 0.8rem;
    }
}
    

/* --- 1. GLOBAL TYPOGRAPHY SCALING (Smart Text) --- */
html {
    font-size: 16px; /* Base size */
}

/* Mobile par headings ko control mein rakhna */
@media (max-width: 768px) {
    h1.hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem) !important; /* Kabhi bhi screen se bahar nahi jayega */
    }
    h2.display-5 {
        font-size: 2rem !important; /* Standard Section Headings */
    }
    .lead {
        font-size: 1rem !important;
    }
    .section-padding {
        padding: 50px 0 !important; /* Mobile par gap kam, content zyada */
    }
}

/* --- 2. HERO SECTION & NAVBAR FIXES --- */
@media (max-width: 576px) {
    /* Navbar ko mobile par thoda compact karein */
    .navbar-floating {
        top: 10px;
        width: 95%;
        padding: 8px 15px;
        border-radius: 15px;
    }
    
    /* Logo adjustments so it doesn't cut off */
    .navbar-brand img {
        height: 55px !important;
        top: -10px !important;
    }

    /* Hero Text position fix for phones */
    .hero-content-layer {
        margin-top: 0;
        padding-top: 100px; /* Logo ke niche se start ho */
        text-align: center; /* Mobile par text center acha lagta hai */
    }
    
    .hero-subtitle {
        margin: 0 auto 20px auto; /* Center alignment fix */
        font-size: 1rem;
    }

    /* Buttons ko stack karein (Vertical) agar screen bahut choti ho */
    .hero-content-layer .d-flex {
        justify-content: center;
    }
}

/* --- 3. 3D GALLERY MOBILE OPTIMIZATION --- */
/* Mobile par 3D effect ko thoda tame karna zaroori hai */
@media (max-width: 768px) {
    .gallery-wrapper {
        height: 300px !important; /* Height kam karein */
    }

    .gallery-card {
        width: 85% !important; /* Card ki width badhayein */
        border-radius: 15px;
    }

    /* Side cards ko mobile par chupa dein ya bahut halka karein taaki distraction na ho */
    .gallery-card.prev, 
    .gallery-card.next {
        opacity: 0.3 !important;
        transform: scale(0.8) !important; 
    }
    .gallery-card.prev { transform: translateX(-95%) scale(0.8) !important; }
    .gallery-card.next { transform: translateX(95%) scale(0.8) !important; }

    /* Buttons ko adjust karein */
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
}

/* --- 4. AMENITIES PILLS (Better Scrolling) --- */
@media (max-width: 768px) {
    /* Amenities ko horizontal scroll bana dein mobile par styling ke liye */
    #amenities .d-flex {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    }
    
    .amenity-pill {
        white-space: nowrap; /* Text break na ho */
        flex-shrink: 0;
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    
    /* Scrollbar hide karein */
    #amenities .d-flex::-webkit-scrollbar { display: none; }
}

/* --- 5. PRICING TABLE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .table-premium thead th {
        font-size: 0.9rem;
        padding: 12px;
    }
    .table-premium td {
        font-size: 0.9rem;
        padding: 12px;
    }
    /* Price ko highlight karein small screen par */
    .table-premium td:last-child {
        font-size: 1rem;
    }
}

/* --- 6. LOCATION & MAP FIXES --- */
@media (max-width: 991px) {
    .location-card {
        margin-top: 20px;
        height: auto !important; /* Height lock hata dein tablet/mobile ke liye */
    }
    
    .video-container iframe {
        min-height: 300px; /* Map ko minimum height dein */
    }
}

/* --- 7. INVEST GRID (Mobile 2-Column Balance) --- */
@media (max-width: 480px) {
    .invest-grid {
        gap: 10px; /* Gap kam karein */
    }
    .small-invest-card {
        padding: 12px 8px; /* Padding kam karein */
    }
    .small-invest-card p {
        font-size: 0.75rem; /* Text size adjust */
        line-height: 1.2;
    }
    .card-icon-sm {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

/* --- 8. FOOTER MOBILE FIX --- */
@media (max-width: 768px) {
    footer .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    footer button {
        width: 100%; /* Buttons full width */
    }
}
/* Modal FOMO Styling */
#enquiryModal .modal-content {
    border-radius: 20px;
}

#enquiryModal .form-control:focus, 
#enquiryModal .form-select:focus {
    background-color: #fff !important;
    border: 1px solid #0077b6 !important;
    box-shadow: none;
}

#enquiryModal .btn-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border: none;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

#enquiryModal .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Modal Trigger Button (Floating) - Optional */
.floating-enquire-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
data-bs-toggle="modal" data-bs-target="#enquiryModal" style="cursor: pointer;"

.footer-disclaimer p {
    line-height: 1.6;
    text-align: justify; /* Proper alignment like professional docs */
}

.x-small {
    font-size: 0.75rem;
}

/* Footer links hover effect */
footer a:hover {
    color: #ff9100 !important;
}

@media (max-width: 768px) {
    .footer-disclaimer p {
        text-align: center;
    }
}

/* Mobile Sticky Footer Styling */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000; /* Sabse upar rahega */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    padding-bottom: env(safe-area-inset-bottom); /* iPhone notch fix */
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.3s;
}

/* Call Button (Dark/Blue) */
.call-btn {
    background-color: #002d58;
    color: white !important;
}

/* Brochure Button (Orange/Gold) */
.brochure-btn {
    background: linear-gradient(135deg, #f58220 0%, #ff6f00 100%);
    color: white;
}

.sticky-btn:active {
    opacity: 0.8;
    transform: scale(0.98);
}

/* Jab footer khula ho to main content ke niche ki padding badhayein */
body {
    padding-bottom: 70px; 
}

@media (min-width: 992px) {
    body { padding-bottom: 0; }
}

/* Mobile Phone Inline Scaling (For Overview & Highlights) */
@media (max-width: 576px) {
    /* Overview Stats (22 Floors, 137 Acre, etc.) */
    .hero-content-layer .d-flex,
    #overview .d-flex {
        display: flex !important;
        flex-direction: row !important; /* Force Inline */
        justify-content: space-around !important;
        gap: 10px !important;
    }

    #overview .p-3 {
        padding: 10px !important;
        flex: 1; /* Equal width distribution */
        text-align: center;
    }

    #overview h3 {
        font-size: 1.2rem !important; /* Size adjust for small screens */
    }

    #overview small {
        font-size: 0.65rem !important; /* Text wrapping prevent karne ke liye */
        display: block;
    }

    /* Key Highlights Swiper (If you want 2 cards side-by-side) */
    .highlightsSwiper {
        padding-left: 10px;
        padding-right: 10px;
    }
}