:root {
  --brand-primary: #15738a;
  --brand-light: #fdfaf5;
  --brand-accent: #caa25c;
  --brand-accent-2: #15738a;
  --bg: #ffffff;
  --bg-soft: #f9f9f9;
  --text: #1a1a1a;
  --muted: #666;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  text-align: center; /* Global Centering */
}

h1, h2, h3, .project-name {
  font-family: 'Playfair Display', serif;
}

/* img { max-width: 100%; height: auto; display: block; margin: 0 auto; } */

/* =========================
   NAVBAR
========================= */
.navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-left { display: flex; align-items: center; gap: 20px; }
.nav-logo { height: 45px; width: auto; object-fit: contain; }

.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--brand-accent); }

.action {
  background: var(--brand-primary);
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.action:hover {
  background: var(--brand-accent-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 24px;
  color: var(--brand-primary);
}

.desktop-enquire-btn{display:inline-block}
.mobile-enquire-btn{display:none; color: #fff !important;}

@media(max-width: 1024px) {
  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    padding: 30px;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.show { display: flex; }
  .nav-toggle { display: block; }
  .desktop-enquire-btn{display:none}
  .mobile-enquire-btn{display:block; color: #fff !important;}
}

/* =========================
   Banner
========================= */
.full-page-banner {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

/* =========================
   Hero Section
========================= */
section.hero {
  padding: 8px 6%;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 64px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-subtext {
  font-size: 20px;
  color: var(--muted);
  max-width: 1200px;
  margin: 0 auto;
}

@media(max-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-subtext { font-size: 16px; }
}

/* =========================
   Common Section Styles
========================= */
.section-title {
  font-size: 33px;
  font-weight: 500;
  margin-bottom: 50px;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 60px;
  height: 3px;
  background: var(--brand-accent);
  transform: translateX(-50%);
}

/* =========================
   Highlights
========================= */
#highlights { padding: 80px 6%; }
.slider-container { position: relative; }
.slider-wrapper { overflow: hidden; }
.slider { display: flex; gap: 30px; padding: 20px 0; }

.highlight-card {
  min-width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #eee;
}

.highlight-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.highlight-card img { width: 100%; height: 220px; object-fit: cover; }
.highlight-card p { padding: 25px; font-weight: 500; font-size: 16px; color: var(--text); }

.arrows { 
  margin-top: 40px; 
  display: flex; 
  justify-content: center; 
  gap: 15px; 
  align-items: center;
}
.arrow-btn{width:48px;height:48px;border-radius:50%;border:2px solid var(--brand-primary);background:#fff;color:var(--brand-primary);font-size:22px;cursor:pointer;transition:0.3s;font-weight:bold;display:flex;align-items:center;justify-content:center}
.arrow-btn:hover{background:var(--brand-primary);color:#fff}
.arrow-btn:disabled{opacity:0.5;cursor:not-allowed}
.cta{display:flex;align-items:center;gap:20px;padding:0;margin:0;position:relative;flex-shrink:0}
.cta .action{padding:14px 30px;background:var(--brand-primary);color:#fff;border:none;border-radius:6px;font-size:15px;font-weight:500;cursor:pointer;transition:0.3s;font-family:'Poppins',sans-serif;white-space:nowrap}
.cta .action:hover{background:var(--brand-accent-2)}
@media(max-width:600px){.cta .action{padding:12px 24px;font-size:13px}}



/* =========================
   Price & Plan
========================= */
#price-plan { padding: 100px 6%; background: var(--bg); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

#price-plan .card {
  background: #fff;
  border-radius: 15px;
  padding: 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid #eee;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#price-plan .card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

#price-plan .card-img { 
  aspect-ratio: 16 / 9;
  position: relative;
  background: transparent;
  width: 100%;
}
#price-plan .card-img img { 
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.5px);
}

#price-plan .card-content {
    padding: 25px 25px 0 25px; /* No padding at bottom */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#price-plan .unlock-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-primary);
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}
#price-plan .unlock-btn:hover { background: var(--brand-accent-2); transform: translate(-50%, -50%) scale(1.05); }

#price-plan .card h3 { color: var(--brand-primary); margin: 0; font-size: 22px; }
#price-plan .card p { color: var(--muted); font-size: 14px; margin: 8px 0; flex-grow: 1; }

#price-plan .card .action {
    margin: 20px 25px 30px 25px; /* Top, Sides, Bottom */
}

/* =========================
   Amenities (Modern Centered Circle Style)
========================= */
.amenities-section { padding: 100px 6%; background: #fff; }
.slider-wrapper-amen {
  overflow-x: auto;
  padding: 40px 0;
  cursor: grab;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}
.slider-wrapper-amen::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.slider-amen {
  display: flex;
  gap: 40px;
  width: max-content;
}

.circle-card {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden; /* Important for auto-crop */
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 4px solid #fff;
  flex-shrink: 0;
}

.circle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Auto crop to fill the circle */
  transition: var(--transition);
  filter: none !important; /* Remove any previous filters */
}

.circle-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-accent);
}

.overlay-center {
  position: absolute;
  inset: 0;
  background: rgba(138, 21, 21, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
}

.circle-card:hover .overlay-center { opacity: 1; }

/* Hide Amenity Arrows as requested */
.amenity-arrows { display: none !important; }

/* =========================
   Gallery
========================= */
.gallery-section{padding:40px 6%;background:transparent}
.gallery-wrapper{display:flex;flex-direction:column;gap:40px}
.gallery-card{position:sticky;top:100px;width:100%;aspect-ratio:3/2;border-radius:20px;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,0.2);cursor:pointer}
.gallery-card img{width:100%;height:100%;object-fit:cover}
.modal{position:fixed;inset:0;background:rgba(0,0,0,0.9);display:none;justify-content:center;align-items:center;z-index:99999}
.modal.active{display:flex}
.modal img{max-width:90%;max-height:90%;border-radius:10px}
.close-btn{position:absolute;top:30px;right:40px;font-size:30px;color:#fff;cursor:pointer}
@media(max-width:600px){
  .gallery-section{padding:40px 4%}
  .gallery-card{aspect-ratio:16/9}
}

/* =========================
   Location & Tabs
========================= */
.section-header { padding: 100px 6%; }
.location-header { max-width: 1000px; margin: 0 auto 50px; }
.tabs { display: flex; justify-content: center; gap: 30px; border-bottom: 1px solid #ddd; margin-bottom: 40px; }
.tab {
  padding: 15px 30px;
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.tab.active { color: var(--brand-primary); border-bottom-color: var(--brand-primary); }

.tab-content .content-box {
  display: none;
}
.tab-content .content-box.active {
  display: block;
}

.map-container {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
#connectivity .map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   QR CODE SECTION
========================= */
.qr-section {
  padding: 80px 6%;
  background: var(--bg-soft);
}
.qr-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.qr-grid img {
  width: 100px;
  height: 100px;
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
}
.qr-item {
  text-align: center;
  max-width: 200px;
}
.qr-label {
  color: #fff;
  font-size: 14px;
  margin-top: 8px;
}

@media (max-width: 600px) {
    .map-container {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

/* =========================
   Footer & RERA
========================= */
.about-section { padding: 60px 6%; background: #fff; }
.about-text { max-width: 1200px; margin: 0 auto; font-size: 14px; color: var(--muted); text-align: justify; }

.disclaimer-section {
  background: #1c1c1c;
  color: #999;
  padding: 60px 6%;
  font-size: 13px;
  text-align: center;
}

.disclaimer-text { max-width: 1200px; margin: 0 auto 30px; line-height: 1.8; text-align: justify; }
.rera-title { color: #fff; font-size: 16px; margin-bottom: 20px; }

.disclaimer-bottom {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 30px;
}
.disclaimer-bottom a {
    color: var(--brand-accent);
    text-decoration: none;
    margin: 0 10px;
    transition: var(--transition);
}
.disclaimer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

/* =========================
   Legal Pages
========================= */
.legal-container { 
    max-width: 800px; 
    margin: 40px auto; 
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: left;
}
.legal-container h1 { 
    margin-bottom: 20px; 
    text-align: center; 
}
.legal-container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.legal-container p { 
    margin-bottom: 15px; 
    line-height: 1.8; 
    color: var(--muted);
}
.legal-container a.back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
}
.legal-container a.back-link:hover {
    text-decoration: underline;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 5px 0px rgba(138, 21, 21, 0.5); }
  50% { box-shadow: 0 0 20px 10px rgba(138, 21, 21, 0.2); }
  100% { box-shadow: 0 0 5px 0px rgba(138, 21, 21, 0.5); }
}

.px-lux-cta-floating-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.px-lux-btn-outline-floating {
  background: var(--brand-primary);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: pulse-glow 3s linear infinite;
  transition: var(--transition);
}
.px-lux-btn-outline-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation-play-state: paused;
}

/* =========================
   Sticky Contact
========================= */
.sticky-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.sticky-btn img { width: 24px; margin-right: 10px; }
.sticky-btn.call { background: #f8f8f8; color: var(--text); }
.sticky-btn.whatsapp { background: #25D366; color: #fff; }

@media(min-width: 769px) {
  .sticky-contact { display: none; }
}
@media(max-width: 768px) {
    .px-lux-cta-floating-container {
        display: none;
    }
    .sticky-contact {
        background: rgba(250, 234, 211, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 5px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        border-radius: 50px;
    }
    .sticky-btn {
        padding: 12px;
        border-radius: 40px;
        margin: 5px;
        border: 1px solid transparent;
    }
    .sticky-btn.call {
        background: #fff;
        color: var(--brand-primary);
        border-color: var(--brand-accent);
    }
    .sticky-btn.whatsapp {
        background: var(#1eaa50);
        border-color: var(--brand-accent);
    }
    /* .sticky-btn img {
      filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
    } */
    .sticky-btn.call img {
        filter: none;
    }
}

/* =========================
   Modals
========================= */
.modal {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  display:none; /* Hidden by default */
  justify-content:center;
  align-items:center;
  z-index:99999;
}
.modal.active {
  display:flex; /* Shown when active */
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}
.modal-close-inline {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.form-group { text-align: left; margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 14px; }
.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.form-submit:hover { background: var(--brand-accent-2); }

/* Sending animation state */
.form-submit.sending {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-submit.sending::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 20px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ================================
   SECTION WRAPPER
================================ */

.raymond-section {
    background: #f3f2f1;
    padding: 100px 6%;
    font-family: Arial, sans-serif;
}

.raymond-container {
    max-width: 1320px;
    margin: auto;
}

.raymond-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* ================================
   LEFT CONTENT
================================ */

.raymond-left {
    flex: 1;
    max-width: 750px;
    text-align: left;
}

.raymond-title {
    font-family: 'Playfair Display', serif;
    font-size: 33px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.raymond-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 60px;
    height: 3px;
    background: #c6a25b;
}

.raymond-highlights {
    font-size: 18px;
    margin-top: 30px;
    font-weight: 500;
    color: #333;
}

.raymond-text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.raymond-list {
    margin-top: 20px;
    line-height: 1.9;
    color: #555;
}

/* BUTTONS */

.raymond-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.gold-btn {
    background: #c6a25b;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 6px;
}

.outline-btn {
    border: 1px solid #bbb;
    color: #333;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 6px;
}

/* ================================
   RIGHT CARD
================================ */

.raymond-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.brochure-card {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.brochure-card img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

/* CTA STRIP */

.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #c6a25b;
    color: #fff;
    padding: 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.card-cta:hover {
    background: #b8933f;
    transform: translateY(-2px);
}

.card-cta img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    display: inline;
}

.card-cta span {
    display: inline;
    vertical-align: middle;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {

    .raymond-grid {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .raymond-left {
        text-align: center;
    }

    .raymond-title {
        font-size: 44px;
    }

    .raymond-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .raymond-buttons {
        justify-content: center;
    }

    .raymond-right {
        justify-content: center;
    }

    .brochure-card {
        width: 420px;
    }
}

@media (max-width: 600px) {

    .raymond-section {
        padding: 70px 5%;
    }

    .raymond-title {
        font-size: 32px;
    }

    .raymond-buttons {
        flex-direction: column;
        align-items: center;
    }

    .brochure-card {
        width: 100%;
        max-width: none;
        border-radius: 12px;
    }

    .card-cta {
        padding: 18px !important;
        font-size: 13px;
    }
}

/* =========================
   MOBILE HOVER BUTTONS
========================= */
.mobile-hover-buttons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  z-index: 9998;
}

.hover-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  min-width: 140px;
  justify-content: center;
}

.hover-btn:active {
  transform: scale(0.95);
}

.phone-btn {
  background: #f0f0f0;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.phone-btn:hover {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(138, 21, 21, 0.25);
  transform: translateY(-3px);
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.whatsapp-btn:hover {
  background: #1eaa50;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  transform: translateY(-3px);
}

.btn-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Show mobile buttons on tablets and below */
@media (max-width: 768px) {
  .mobile-hover-buttons {
    display: flex;
  }
  
  .hover-btn {
    min-width: auto;
    padding: 12px 16px;
    font-size: 12px;
  }
  
  .btn-text {
    font-size: 12px;
  }
}

