/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #fcfbfe;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 70px;
    object-fit: contain;
}

.nav-links a {
    text-decoration: none;
    color: #4A154B; /* Deep Purple */
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #9c27b0;
}

.hamburger-btn {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #4A154B;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 5%;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px;
    width: 200px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: #4A154B;
    padding: 10px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    /* height: auto; */
    height: 110vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    /* object-fit: contain; */
    display: block;
    height: auto;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 21, 75, 0.4); /* Purple tint overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 400px;
    /* padding-top: 100px; */
    box-sizing: border-box;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 3.2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-family: "Cinzel", serif;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;

}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-family: "Cinzel",serif;
    text-transform: uppercase;
}

.cta-btn {
    background: #9c27b0;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
    transition: transform 0.2s, background 0.3s;
}

.cta-btn:hover {
    background: #7b1fa2;
    transform: scale(1.05);
}

/* General Sections */
.section {
    padding: 60px 10%;
    text-align: center;
}

.section h2 {
    font-size: 2.2rem;
    color: #4A154B;
    margin-bottom: 20px;
    position: relative;
    font-family: "Cinzel",serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #9c27b0;
    margin: 10px auto 0;
}

/* Amenities Grid */
.amenities-bg {
    background-color: #f5efff;
}

.amenities-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 10px;
    color: #4A154B;
    font-family: "Cinzel",serif;
    font-size: 2.2 rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Contact Form */
.form-container {
    max-width: 500px;
    margin: 40px auto 0;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-container input, .form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.95rem;
}

.submit-btn {
    width: 100%;
    background: #4A154B;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #330e34;
}

/* Footer */
footer {
    background: #222;
    color: #bbb;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive Media Queries */
/* Responsive Media Queries */
/* Responsive Media Queries - FINAL ULTRA FIX */
/* Responsive Media Queries - FINAL WITH MOBILE PADDING FIX */
@media (max-width: 768px) {

    h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .nav-links {
        display: none;
    }
    .hamburger-btn {
        display: block;
    }
    
   /* 📱 Hero Section Mobile Layout - FULL IMAGE WITHOUT CROPPING */
    .hero-container {
        height: auto !important; /* 👈 Height ko auto kiya taaki image jitni lambi ho, container utna hi bada ho */
        position: relative;
    }
    
   .hero-img {
        width: 100% !important;
        height: auto !important; /* 👈 Image apni natural ratio me poori dikhegi, bilkul nahi kategi */
        display: block;
    }

   /* 📱 Hero Overlay - Flexbox Spacing Tighten */
    .hero-overlay {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important; /* 👈 space-between se hata kar flex-start kiya taaki gap control me rahe */
        align-items: center !important;
        padding: 15px 10px !important; 
        height: 100% !important;
    }

    .hero-overlay h1 {
        font-size: 1.2rem !important; /* Font thoda aur chota kiya taaki choti image me fit aaye */
        margin-bottom: 2px !important;
        letter-spacing: 0px !important;
    }
    
  /* 🌟 TAGLINE TEXT (P TAG): Desktop par top par tha, mobile par isko NICHE bhej rahe hain */
   .hero-overlay p {
        font-size: 0.85rem !important;
        margin-top: auto !important; /* Enquire button ke sath niche tike rehne ke liye */
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
    /* 📱 Capsule Tag ("PREMIUM RESIDENTIAL PROJECT...") - EXTRA SLEEK */
    /* 🌟 LOCATION TAG: Desktop par middle me tha, mobile par isko sabse TOP par bheja */
    /* 📱 Capsule Tag ("PREMIUM RESIDENTIAL PROJECT...") - SLIM & CLASSY */
   /* 🌟 LOCATION TAG: ULTRA SLEEK & COMPACT */
    /* 🌟 LOCATION TAG: Mobile me bilkul hide karne ke liye */
    .location-tag {
        display: none !important; /* 👈 Isse mobile screen par ye tag gayab ho jayega */
    }
    /* Enquire Now Button Mobile Optimization */
    /* 🌟 ENQUIRE NOW BUTTON: Yeh hamesha ki tarah sabse niche hi rahega */
    /* 🌟 ENQUIRE NOW BUTTON: BOTTOM PAR LOCKED */
   .cta-btn {
        padding: 6px 18px !important;
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
    }    /* Bottom edge se gap */
    
    /* 🎚️ Mobile Slider Rules (Force Full Image without Cropping) */
    .slider-container {
        width: 100% !important;       
        height: auto !important;     
        aspect-ratio: 4 / 3 !important; 
        border-radius: 0 !important;  
    }

    .slider-track {
        height: 100% !important;
    }

    .slider-track img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important; 
        background-color: #f5efff !important; 
    }

    .btn {
        padding: 10px 14px !important; 
        font-size: 16px !important;
    }
}

/* Hero Section ke upar location tag */
.location-tag {
    background: rgba(156, 39, 176, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

/* About section connectivity layout */
.location-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.location-highlights div {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 500;
    color: #4A154B;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border-left: 4px solid #9c27b0;
}

/* Google Map styling */
.map-container {
    max-width: 800px;
    margin: 30px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.slider-container {
  position: relative;
  width: 80%; /* Ye slider ko poori width dega */
  max-width: 100%; /* Kisi bhi tarah ka side space hatane ke liye ise 100% kiya */
  height: 700px; /* Aap height apne hisab se set kar sakte ho */
  margin: 30px auto 0 auto; /* Top/Bottom/Left/Right ka saara margin zero kar diya */
  overflow: hidden;
  border-radius: 15px;
  
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0; /* Images ko squeeze hone se rokega */
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.prev { left: 15px; }
.next { right: 15px; }
.btn:hover { background-color: rgba(0, 0, 0, 0.8); }

/* Gallery section ki saari side padding khatam karne ke liye */
#gallery {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 30px;
}

.footer-contact-widget {
  display: flex;
  flex-direction: column; /* Ek ke niche ek column me lane ke liye */
  gap: 12px; /* Dono icons ke beech ki spacing */
  align-items: flex-end; /* Right side alignment */
}

.contact-icon-link {
  display: inline-block;
  width: 60px;  /* Icons ka size chota karne ke liye */
  height: 60px; /* Width aur height hamesha same rakhein */
  transition: transform 0.2s ease; /* Hover effect smoothen karne ke liye */
 
}

.contact-icon-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
   border-radius: 50%;
   border: 2px solid #7b1fa2;
}

/* Hover karne par thoda responsive dynamic feel dene ke liye */
.contact-icon-link:hover {
  transform: scale(1.1); /* Halka sa bada hoga screen par */
}

.footer-contact-widget {
  position: fixed;
  bottom: 20px; /* Bottom se gap */
  right: 20px;  /* Right se gap */
  z-index: 9999; /* Taaki ye hamesha sabhi elements ke upar dikhe */
}

.whatsapp-icon-link {
  display: inline-block;
  width: 60px;          /* Size match karne ke liye */
  height: 60px;         
    /* Perfect Circle */
  overflow: hidden;     
  transition: transform 0.2s ease; 
}

.whatsapp-icon-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  border: 2px solid #7b1fa2;
  border-radius: 50%; 
}

/* Hover effect */
.whatsapp-icon-link:hover {
  transform: scale(1.1); 
}

/* Gallery Container & Scroll Box */
.exclusive-gallery-scroll {
   max-height: 550px !important;
    overflow-y: auto !important;
    display: grid !important; /* Flexbox se Grid par switch kiya safe framework ke liye */
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 12px !important;
}

/* Image Card Basics */
.exclusive-card {
  width: 100% !important;
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    cursor: pointer !important; /* Pure card ko clickable cursor diya */
}

.image-wrapper {
   position: relative !important;
    width: 100% !important;
    /* 16:9 widescreen layout standard size me enforce karne ke liye */
    aspect-ratio: 16 / 9 !important; 
    background-color: #f7f7f9 !important;
    overflow: hidden !important;
}

.image-wrapper img {
 position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    min-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transition: filter 0.3s ease !important;
    z-index: 1 !important;
    pointer-events: none !important; /* Image bhi click event ko block nahi karegi */

}

/* --- LUCK & BLUR LOGIC --- */
.exclusive-card.locked img {
   filter: blur(7px) !important;
}

.lock-overlay {
   position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    background: rgba(147, 51, 234, 0.22) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 10 !important;
    pointer-events: none !important; /* Isse click overlay ko cross karke direct card par hit karega */

}

.lock-overlay span {
    background: #9333ea;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    pointer-events: none !important; /* Click ko seedhe parent overlay par pass karega */
}

/* Form Submit hone se pehle niche ki info hidden rahegi */
.exclusive-card.locked .exclusive-info {
    display: none;
}

.exclusive-info {
    padding: 15px;
    background: #fdfbfe;
    border-top: 1px solid #f3e8ff;
}

/* --- MODAL POPUP STYLING --- */
.form-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* Default me modal hidden rahega */
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.modal-card input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.submit-btn {
    background: #9333ea;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal {
    background: none;
    border: none;
    color: #777;
    margin-top: 15px;
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}
/* ==========================================
   FAQ Section
========================================== */
.faq-list {
    max-width: 780px;
    margin: 30px auto 0;
    text-align: left;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e0ea;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.faq-item summary {
    font-weight: 600;
    font-size: 15.5px;
    color: #2b1a3d;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    font-size: 20px;
    color: #9333ea;
    margin-left: 12px;
    flex-shrink: 0;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item p {
    margin-top: 12px;
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}
