 :root{
      --green:#14572a;
      --green-dark:#0b351a;
      --brown:#7b3d1a;
      --brown-dark:#552611;
      --gold:#b8864f;
      --light:#f7f5f0;
      --muted:#6c6a66;
      --black:#151515;
      --radius:30px;
      --shadow:0 22px 55px rgba(0,0,0,.12);
    }


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter+Tight:ital,wght@0,100..900;1,100..900');

@font-face {
  font-family: "Chelon Italic";
  src: url("../css/CHELON\ ITALIC.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Chelon";
  src: url("../css/chelon.ttf") format("opentype");
  font-weight: normal;
  /* font-style: italic; */
  font-display: swap;
}
    *{box-sizing:border-box;}
    html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
    body{
      margin:0;
      font-family: "Inter Tight", sans-serif;
      color:#28221d;
      background:#fff;
      overflow-x:hidden;
    }
    img{max-width:100%;display:block;}
    a{text-decoration:none;}
    .container-xl{max-width:1260px;}
    .font-serif{ font-family: "Inter Tight", sans-serif;}
    .section-pad{padding:85px 0;}
    .eyebrow{
      margin:0 0 8px;
      color:#7a7a72;
      font-size:12px;
      line-height:1;
      letter-spacing:9px;
      text-transform:uppercase;
      font-weight:600;
    }
    .section-title{
      margin:0;
      color:var(--brown);
     font-family: "Chelon", Georgia, "Times New Roman", serif;
      font-size:clamp(22px,3.2vw,40px);
      line-height:1.15;
      font-weight:400;
    }
    .btn-green{
      --bs-btn-bg:var(--green);
      --bs-btn-border-color:var(--green);
      --bs-btn-hover-bg:#0f4722;
      --bs-btn-hover-border-color:#0f4722;
      --bs-btn-color:#fff;
      --bs-btn-hover-color:#fff;
      border-radius:999px;
      padding:11px 28px;
      font-weight:700;
      font-size:14px;
      box-shadow:0 10px 24px rgba(20,87,42,.18);
      font-family: "Inter Tight", sans-serif;
    }
    .btn-white{
      background:#fff;
      color:var(--green);
      border:1px solid rgba(255,255,255,.75);
      border-radius:999px;
      padding:11px 28px;
      font-weight:700;
      font-size:14px;
    }
    .btn-white:hover{background:var(--green);color:#fff;border-color:var(--green);}

    /* Header */
    .site-header{
      position:absolute;
      top:24px;
      left:0;
      right:0;
      z-index:20;
    }
    .navbar-shell{
      width:min(1120px,calc(100% - 40px));
      margin:0 auto;
      background:rgba(255,255,255,.96);
      border-radius:999px;
      padding:10px 16px;
      box-shadow:0 14px 45px rgba(0,0,0,.14);
      backdrop-filter:blur(8px);
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--green);
      color:#fff;
      font-weight:800;
      font-size:13px;
      letter-spacing:.3px;
    }
    .brand-text{
      font-size:13px;
      font-weight:800;
      color:var(--green);
      line-height:1.05;
      text-transform:uppercase;
    }
    .navbar-nav .nav-link{
      color:#222;
      font-size:14px;
      font-weight:500;
      padding:10px 18px !important;
      border-radius:999px;
    }
    /* .navbar-nav .nav-phn a{font-weight: bold !important; color: #155b2a !important;} */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active{background:#f3f3ef;color:var(--green);}
    .navbar-toggler{border:0;box-shadow:none !important;}

    /* Existing Hero Styles */
.hero {
  position: relative;
  min-height: 800px;
 background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
              url(../../assets/images/hero.jpg) center top / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,.07) 45%, rgba(0,0,0,.08) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 102px;
  width: 100%;
}

/* New Responsive Layout Grid */
.hero-grid {
  display: flex;
  flex-direction: row-reverse; /* Form stays above H1 text on mobile */
  gap: 30px;
  justify-content: space-between;
  padding-bottom: 20px;

}
.error{color: #dc3545;}
#consent-error {
    display: block;
    color: red;
    margin-top: 5px;
}
.label-grid{display: flex; flex-direction: row; gap: 20px; }
.hero-text-wrapper{align-content: center;}
/* Styled Form Card Wrapper */
.hero-form-wrapper {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  backdrop-filter: blur(3px); /* Blurs the background behind the form for readability */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Optional: adds a subtle border to define the edge */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: 100%;
}
.hero-form-wrapper h3 {
  color: #fff;
  font-family: "Chelon Italic", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 8px;
}
.hero-form-wrapper .enquiry-subtitle {color: #fff;}
.mob-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.mob-form-wrapper h3 {
  color: #155b2a;
  font-family: "Chelon Italic", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 8px;
}
/* Existing Text Styles */
.hero-title {
  max-width: 520px;
  color: #151515;
  font-family: "Chelon Italic", Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .95;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 8px;
}
.hero-subtitle {
  max-width: 500px;
  color: #191919;
  font-family: "Chelon Italic", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: 1;
  font-style: italic;
  margin-bottom: 16px;
}
.red-label { max-width: 55%; }
.oc-label { max-width: 90px; }
.hero-note {
  margin-top: 10px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  font-family: "Inter Tight", sans-serif;
}


    /* white information strip */
    .summary-strip{
      position:relative;
      z-index:4;
      margin-top:-56px;
    }
    .summary-panel{
      background:#fff;
      border-radius:22px;
      box-shadow:0 18px 40px rgba(0,0,0,.1);
      overflow:hidden;
    }
    .summary-item{
      padding:28px 18px;
      text-align:center;
      min-height:108px;
      border-right:1px solid #ece7df;
    }
    .summary-item:last-child{border-right:0;}
    .summary-label{
      margin:0 0 8px;
      color:#7c4b2a;
      font-size:12px;
      letter-spacing:4px;
      line-height:1;
      font-weight:700;
      text-transform:uppercase;
       font-family: "Inter Tight", sans-serif;
    }
    .summary-value{margin:0;color:#1c1b19;font-size:16px;font-weight:300; font-family: "Inter Tight", sans-serif;}

    .plan-cards{padding:64px 0 42px;}
    .plan-card{
      height:100%;
      background:#fff;
      border:1px solid #ddd6cd;
      border-radius:34px;
      padding:36px 24px 28px;
      text-align:center;
      transition:.25s ease;
    }
    .plan-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);}
    .plan-card h3{
      color:var(--brown);
      font-family: "Chelon", Georgia, "Times New Roman", serif;
      font-size:32px;
      margin:0 0 24px;
    }
    .plan-price{font-size:27px;font-weight:600;color:#000;margin-bottom:2px;font-family: "Inter Tight", sans-serif;}
    .plan-price small{font-size:14px;font-weight:700;}
    .plan-size{font-size:14px;font-weight:500;color:#222;margin-bottom:5px;}
    .plan-status{font-size:14px;color:#000;font-weight:600;margin-bottom:18px;}
    .plan-card .btn{padding:9px 22px;font-size:14px;font-family: "Inter Tight", sans-serif;font-weight:300;}

 .stats-band {
  width: 100%;
  position: relative;
  background: #ffffff;
  padding: 0 0 32px;
  margin: 0;
}

.stats-wrapper {
  width: 100%;
  background: #155b2a;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.stats-grid {
  width: 100%;
  min-height: 145px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-box {
  min-height: 145px;
  padding: 30px 20px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.stat-box:last-child {
  border-right: 0;
}

.stat-label {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.stat-value {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.brochure-wrap {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
  display: block;
  text-align: center;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 2px solid #ffffff;
  border-radius: 30px;
  background: #155b2a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  font-family: "Inter Tight", sans-serif;
  letter-spacing: 1px;
}

.btn-green:hover {
  background: #ffffff;
  color: #155b2a;
  border-color: #155b2a;
}

/* Tablet */
@media (max-width: 991px) {
  .stats-grid {
    min-height: auto;
  }

  .stat-box {
    min-height: 135px;
    padding: 28px 15px 34px;
  }

  .stat-value {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .stats-band {
    padding-bottom: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    min-height: auto;
    padding: 28px 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .stat-box:last-child {
    border-bottom: 0;
  }

  .brochure-wrap {
    position: static;
    transform: none;
    padding: 18px 0;
    background: #155b2a;
  }

  .stat-label {
    font-size: 12px;
  }

  .stat-value {
    font-size: 22px;
  }
}

    /* About */
/* ABOUT SECTION */

.section-pad {
  padding: 80px 0;
}

.about-visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.video-thumb-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
}

.main-img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.small-img {
  position: absolute;
  right: -45px;
  bottom: -75px;
  width: 58%;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  z-index: 3;
}

.video-thumb-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  transition: 0.3s ease;
}

.video-thumb-btn:hover::after {
  background: rgba(0, 0, 0, 0.28);
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  transition: 0.3s ease;
}

.play-icon span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #155b2a;
}

.video-thumb-btn:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.08);
}

.eyebrow {
  color: #8a5236;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 8px;
  margin-bottom: 12px;
}



.about-text p {
  color: #333333;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Inter Tight", sans-serif;
}

/* VIDEO MODAL */

.video-modal .modal-content {
  background: #000000;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
}

.video-modal .modal-body {
  padding: 0;
}

.video-close {
  position: absolute;
  right: -12px;
  top: -42px;
  z-index: 10;
  background-color: #ffffff;
  opacity: 1;
  border-radius: 50%;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .section-pad {
    padding: 60px 0;
  }

  .about-visual {
    max-width: 580px;
    margin-bottom: 45px;
  }

  .small-img {
    right: 20px;
    bottom: -35px;
    width: 48%;
  }

  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .section-pad {
    padding: 45px 0;
  }

  .small-img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 15px;
  }

  .play-icon {
    width: 62px;
    height: 62px;
  }

  .play-icon span {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

  .eyebrow {
    font-size: 14px;
    letter-spacing: 6px;
  }

  .section-title {
    font-size: 26px;
  }

  .about-text p {
    font-size: 15px;
  }

  .video-close {
    right: 8px;
    top: -45px;
  }
}

  .amenities-mini {
  background: #f5f5f5;
  padding: 76px 0 68px;
}

.pill-tabs {
  display: inline-flex;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px;
  border: 1px solid #e1d9d0;
  gap: 4px;
  margin: 18px 0 38px;
  font-family: "Inter Tight", sans-serif;
}

.pill-tab {
  border: 0;
  background: transparent;
  padding: 9px 24px;
  border-radius: 999px;
  color: #8a4a2a;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter Tight", sans-serif;
}

.pill-tab.active {
  background: var(--brown);
  color: #ffffff;
  font-family: "Inter Tight", sans-serif;
}

.amenities-content {
  display: none;
}

.amenities-content.active {
  display: block;
}

.amenity-icon {
  text-align: center;
  color: #34312d;
  font-size: 14px;
  font-weight: 500;
}

.amenity-symbol {
  height: 42px;
  width: 50px;
  margin: 0 auto 10px;
  color: var(--green);
  font-size: 38px;
  line-height: 1;
  font-family: Georgia, serif;
}

@media (max-width: 575px) {
  .amenities-mini {
    padding: 42px 0 36px;
  }

  .pill-tabs {
    margin-bottom: 28px;
  }

  .pill-tab {
    padding: 8px 22px;
  }

  .amenity-symbol {
    font-size: 32px;
  }
}

    /* Location */
    .location-section{padding:75px 0;}
    .soft-accordion .accordion-item{
      border:1px solid #e3ded7;
      border-radius:18px !important;
      overflow:hidden;
      margin-bottom:14px;
      background:#fff;
    }
    .soft-accordion .accordion-button{
      border-radius:18px !important;
      box-shadow:none !important;
      background:#fff;
      color:#303030;
      font-size:14px;
      font-weight:700;
      padding:18px 22px;
    }
    .soft-accordion .accordion-button:not(.collapsed){color:var(--brown);font-family: "Inter Tight", sans-serif;font-size: 16px;}
    .soft-accordion .accordion-body{font-size:14px;line-height:1.75;color:#5f5b56;padding:0 22px 20px;}
    .map-frame{border-radius:16px;overflow:hidden;box-shadow:0 16px 35px rgba(0,0,0,.12);border:1px solid #eee;}

    /* Gallery */
 .gallery-section {
  background: #ffffff;
  padding: 58px 0 64px;
}

.gallery-title {
  color: #8a4a2a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 24px;
}

.gallery-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  background: #ffffff;
  border: 1px solid #d7d0c8;
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 28px;
  gap: 4px;
}

.gallery-tabs .nav-item {
  margin: 0;
}

.gallery-tabs .nav-link {
  border: 0;
  border-radius: 999px;
  color: #222222;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 24px;
  line-height: 1;
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
}

.gallery-tabs .nav-link.active {
  background: #8a4a2a;
  color: #ffffff;
}

.gallery-copy {
  max-width: 1180px;
  margin: 0 auto 28px;
  color: #1f1f1f;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.gallery-tab-content {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  background: #f4f4f4;
  overflow: hidden;
}

.gallery-carousel .carousel-inner {
  width: 100%;
}

.gallery-carousel .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-arrow {
  width: 48px;
  opacity: 1;
}

.gallery-arrow .carousel-control-prev-icon,
.gallery-arrow .carousel-control-next-icon {
  width: 32px;
  height: 32px;
  background-size: 16px;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
}
/* Apply blur to locked gallery images on ALL devices */
.gallery-thumbs.locked img {
  filter: blur(3px);
  transition: filter 0.3s ease;
  pointer-events: none; /* Prevents dragging/right-clicking the image directly */
}

.gallery-thumbs.locked .thumb-btn {
  cursor: pointer;
}

.gallery-thumbs {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.thumb-btn {
  width: 142px;
  height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 auto;
  opacity: 0.88;
  transition: all 0.25s ease;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.thumb-btn.active,
.thumb-btn:hover {
  opacity: 1;
  outline: 3px solid #8a4a2a;
  outline-offset: -3px;
}

/* Tablet */
@media (max-width: 991px) {
  .gallery-section {
    padding: 48px 0 54px;
  }

  .gallery-title {
    font-size: 30px;
  }

  .gallery-copy {
    font-size: 13px;
    padding: 0 8px;
  }

  .gallery-carousel .carousel-item img {
    height: 390px;
  }

  .thumb-btn {
    width: 125px;
    height: 64px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .gallery-section {
    padding: 42px 0 44px;
  }

  .gallery-title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .gallery-tabs {
    border-radius: 18px;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    margin-bottom: 22px;
  }

  .gallery-tabs .nav-link {
    font-size: 12px;
    padding: 9px 14px;
  }

  .gallery-copy {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .specifications-content{font-size: 12px;}
  .gallery-carousel .carousel-item img {
    height: 260px;
  }

  .gallery-arrow {
    width: 38px;
  }

  .gallery-arrow .carousel-control-prev-icon,
  .gallery-arrow .carousel-control-next-icon {
    width: 26px;
    height: 26px;
    background-size: 12px;
  }

  .thumb-btn {
    width: 92px;
    height: 52px;
  }
}

    /* Clubhouse */
   

.clubhouse {
  position: relative;
  width: 100%;
  min-height: 650px;
  padding: 95px 0;
  overflow: hidden;
  background: #111;
}

.clubhouse-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.clubhouse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.56) 46%,
    rgba(0, 0, 0, 0.32) 100%
  );
  z-index: 2;
}

.clubhouse-content {
  position: relative;
  z-index: 3;
}

.clubhouse-text {
  max-width: 520px;
  color: #ffffff;
}

.clubhouse-text h2 {
  color: #ffffff;
    margin:0;
      color:#FFF;
     font-family: "Chelon", Georgia, "Times New Roman", serif;
      font-size:clamp(22px,3.2vw,40px);
      line-height:1.15;
      font-weight:400;
  line-height: 1.15;
  margin: 0 0 22px;
}

.clubhouse-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.clubhouse-desc {
  color: #fff;
  line-height: 1.8;
  font-family: "Inter Tight", sans-serif;
}
.clubhouse-desc h4{font-size: 16px;}
.clubhouse-desc p{font-size: 14px;}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #ffffff;
  color: #155b2a;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #155b2a;
  color: #ffffff;
}

.amenity-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(7px);
}

.club-amenity-card {
  min-height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.club-amenity-card:nth-child(3n) {
  border-right: 0;
}

.club-amenity-card:nth-child(n + 4) {
  border-bottom: 0;
}

.club-amenity-card span {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.club-amenity-card:hover,
.club-amenity-card.active {
  background: rgba(255, 255, 255, 0.2);
}

.club-amenity-card:hover span,
.club-amenity-card.active span {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .clubhouse {
    padding: 70px 0;
  }

  .clubhouse-text h2 {
    font-size: 32px;
  }

  .club-amenity-card {
    min-height: 135px;
  }
}

@media (max-width: 767px) {
  .clubhouse {
    padding: 55px 0;
  }

  .clubhouse-overlay {
    background: rgba(0, 0, 0, 0.68);
  }

  .clubhouse-text h2 {
    font-size: 28px;
  }

  .clubhouse-text p {
    font-size: 14px;
    line-height: 1.65;
  }

  .amenity-glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .club-amenity-card {
    min-height: 120px;
    padding: 18px 12px;
  }

  .club-amenity-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.28);
  }

  .club-amenity-card:nth-child(2n) {
    border-right: 0;
  }

  .club-amenity-card:nth-child(n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .club-amenity-card:nth-child(n + 5) {
    border-bottom: 0;
  }

  .club-amenity-card span {
    font-size: 15px;
  }
}

    
    .leadership{
      background:#111;
      color:#fff;
      padding:75px 0;
      position:relative;
      overflow:hidden;
    }
    /* .leadership::before{
      content:"";position:absolute;inset:0;background:url('assets/leadership-bg.jpg') center/cover no-repeat;opacity:.55;
    } */
    .leadership .container-xl{position:relative;z-index:1;}
    .leadership-title{
  
      text-align:center;
      margin-bottom:18px;

      color:#FFF;
     font-family: "Chelon", Georgia, "Times New Roman", serif;
      font-size:clamp(22px,3.2vw,40px);
      line-height:1.15;
      font-weight:400;

    }
    .dsr-logo{width:120px;margin:0 auto 30px;}
    .leadership p{color:#d7d0c5;line-height:1.9;font-size:15px;}

    /* CTA */
    .cta-section{padding:80px 0 55px;}
    .form-card{
      background:#fff;
      border:1px solid #e3ded7;
      border-radius:24px;
      box-shadow:0 18px 42px rgba(0,0,0,.08);
      padding:36px;
      /* max-width:440px; */
      margin:0 auto;
    }
    .form-card .logos{display:flex;justify-content:center;align-items:center;gap:24px;margin-bottom:24px;}
    .form-card .logos img:first-child{width:102px;}
    .form-card .logos img:last-child{width:200px;}
    .form-control{
      min-height:45px;
      border-radius:999px;
      border:1px solid #e5ded6;
      padding:10px 18px;
      font-size:14px;
    }
    textarea.form-control{border-radius:18px;min-height:90px;resize:none;}
    .contact-phone{display:flex;align-items:center;gap:10px;color:#222;font-weight:700;margin-top:12px;}
    .phone-icon{width:32px;height:32px;border-radius:50%;background:#f1eee9;display:grid;place-items:center;color:var(--green);}

    .faq-section{padding:0 0 70px;}
    .faq-section .accordion-item{border:1px solid #e6e1db;border-radius:15px !important;margin-bottom:14px;overflow:hidden;}
    .faq-section .accordion-button{font-size:14px;font-weight:700;box-shadow:none !important;padding:18px 20px;background:#fff;}
    .faq-section .accordion-button:not(.collapsed){color:var(--green);background:#fbfaf8;}
    .faq-section .accordion-body{font-size:14px;line-height:1.75;color:#555;}

.site-footer {
  position: relative;
  background: #282828;
  border-top: 8px solid #155b2a;
  color: #ffffff;
  padding: 42px 0 22px;
}

.footer-main {
  max-width: 1050px;
  margin: 0 auto;
}

.footer-box h5 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.2;
}

.footer-box p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0 0 8px;
}

.footer-box a {
  color: #ffffff;
  text-decoration: none;
}

.footer-box a:hover {
  color: #39c765;
}

.footer-follow {
  padding-left: 10px;
}

.credai-logo {
  margin: 2px 0 14px;
}

.credai-logo img {
  max-width: 92px;
  height: auto;
  display: block;
}

.affiliated-text {
  font-size: 12px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-links li {
  position: relative;
  font-size: 11px;
  line-height: 1;
}

.footer-links li:not(:last-child)::after {
  content: "";
  margin-left: 6px;
}

.footer-links a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.socials {
  display: flex;
  align-items: center;
  gap: 13px;
}

.socials a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials a:hover {
  color: #39c765;
}

.footer-bottom {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 28px;
}

.footer-whatsapp {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: #39c765;
  color: #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-whatsapp span {
  font-size: 20px;
  line-height: 1;
}

.footer-whatsapp:hover {
  background: #25a952;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .site-footer {
    padding: 38px 0 22px;
  }

  .footer-main {
    max-width: 720px;
  }

  .footer-follow {
    padding-left: 0;
  }

  .footer-whatsapp {
    position: fixed;
    right: 16px;
    bottom: 18px;
    top: auto;
    transform: none;
    z-index: 999;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .site-footer {
    text-align: center;
    padding: 34px 0 24px;
  }

  .footer-box {
    margin-bottom: 10px;
  }

  .credai-logo img {
    margin: 0 auto;
  }

  .footer-links,
  .socials {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 18px;
    font-size: 11px;
  }
}

.footer-disclaimer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
}

.footer-disclaimer h6 {
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 575px) {
  .footer-disclaimer {
    text-align: center;
    margin-top: 20px;
  }

  .footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
  }
}
    .socials{display:flex;gap:12px;margin-top:16px;}
    .socials a{width:27px;height:27px;border-radius:50%;background:#3a3a38;display:grid;place-items:center;font-size:12px;color:#fff;}
    .disclaimer{border-top:1px solid rgba(255,255,255,.12);margin-top:32px;padding-top:18px;font-size:11px;color:#aaa;line-height:1.7;text-align:center;}
    /* .whatsapp{position:fixed;right:18px;bottom:18px;width:48px;height:48px;border-radius:50%;background:#26d367;color:#fff;z-index:40;display:grid;place-items:center;font-size:26px;box-shadow:0 14px 30px rgba(0,0,0,.2);} */
    .mob-form-wrapper{display: none;}
    /* .phone-sticky-btn {display: none;} */
    .whatsapp-label{display: none;}
    .phn-label{display: none;}
    .phn::before{display: none;}
    .fa-calendar:before {display: none;}
    .phn-call {background-color: #155b2a; color: #fff; height: 48px; width: 48px; border-radius: 5px;}
    .phn-call .fa-phone:before{    margin-top: 9px; width: 48px; text-align: center; display: block; font-size: 30px;}
    .fa-whatsapp:before {display: none;}
    /* Container positioned relative to the viewport */
.floating-actions-wrapper {
  position: fixed;
  bottom: 50%; /* Distance from screen bottom */
  right: 0;  /* Distance from screen right */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;    /* Space between WhatsApp and Enquire button */
  z-index: 9999; /* Ensures it floats above all other sections */
}

/* Styling and rotating the Enquire Now button */
.sticky-enquiry-btn {
  background-color: #155b2a; /* Match your green brand theme color */
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  border-radius: 0px 12px 12px 0px; /* Curved look matching your asset snippet */
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  
  /* Vertical rotation code alignment */
  writing-mode: vertical-rl;
  transform: rotate(180deg); 
}
.sticky-enquiry-btn:hover{background-color: #fff; color: #155b2a;}
/* Reset baseline style wrapper for your existing WhatsApp anchor tag if needed */
.whatsapp-sticky-btn {
  display: block;
  width: 48px;  /* Adjust size to match your current icon layout */
  height: 48px;
  transition: transform 0.2s ease;
}
.phone-sticky-btn {
  display: block;
  width: 48px;  /* Adjust size to match your current icon layout */
  height: 48px;
  transition: transform 0.2s ease;
}
.whatsapp-sticky-btn:hover {
  transform: scale(1.08);
}
.phone-sticky-btn:hover {
  transform: scale(1.08);
}
.floating-wrapper {
  position: fixed;
  bottom: 60px; /* Distance from screen bottom */
  right: 0;  /* Distance from screen right */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;    /* Space between WhatsApp and Enquire button */
  z-index: 9999; /* Ensures it floats above all other sections */
}
/* Mobile View: Converts the floating buttons into a fixed bottom bar */
@media (max-width: 767px) {
  .floating-actions-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    background-color: #ffffff; 
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eef0f2;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    /* Uses dynamic padding to safely avoid mobile home indicator bars */
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px)) 0;
    z-index: 99999;
  }

  /* Split the bar into 3 perfectly identical structural blocks */
  .floating-actions-wrapper > a, 
  .floating-actions-wrapper > button {
    flex: 1;
    display: flex;
    flex-direction: column; /* Icon stacked neatly on top of text */
    align-items: center;
    justify-content: center;
    height: 52px;
    background: transparent !important; /* Removes background to merge into bar */
    color: #4a5568 !important; /* Neutral dark tint for general icon & text colors */
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: none;
  }
  .fa-calendar:before {display: block;}
  .fa-whatsapp:before {display: block;}
  .fa-phone:before {display: block;}
   .phn-call{display: none;}
  .whatsapp-sticky-btn img{display: none;}
  .phone-sticky-btn img{display: none;}
  /* Add subtle vertical divider lines between our 3 slots */
  .floating-actions-wrapper > a:not(:last-child),
  .floating-actions-wrapper > button:not(:last-child) {
    border-right: 1px solid #eef0f2 !important;
  }

  /* Icon Rules */
  .floating-actions-wrapper i {
    font-size: 20px !important;
    margin-bottom: 3px;
    display: inline-block;
  }
  
  .floating-actions-wrapper img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-bottom: 3px;
  }

  /* Unified Label Text Rules */
  .floating-actions-wrapper .btn-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block !important;
  }

  /* Optional Brand Highlight Tweaks */
  .floating-actions-wrapper .phone-sticky-btn i {
    color: #552611; /* Your specific deep brown theme color for call */
  }
  
  /* Highlight the Call To Action text or icon if you want it to stand out slightly */
  .floating-actions-wrapper .sticky-enquiry-btn {
    writing-mode: horizontal-tb !important;
    transform: rotate(0deg) !important;
  }
  .floating-actions-wrapper .sticky-enquiry-btn i,
  .floating-actions-wrapper .sticky-enquiry-btn .btn-label {
    color: #2e5a34; /* Dark green accents for the main action */
  }
}
    @media (max-width: 991.98px){
      .navbar-shell{border-radius:24px;}
      .navbar-collapse{padding:16px 0 4px;}
      .navbar-nav .nav-link{padding:12px 14px !important;}
      .hero{min-height:580px;background-position:center top;}
      .hero-grid{flex-direction: column;}
      .hero-content{padding-bottom:92px;}
      .summary-strip{margin-top:35px;}
      .summary-item{border-right:0;border-bottom:1px solid #ece7df;}
      .summary-item:last-child{border-bottom:0;}
      .about-visual{padding-right:0;}
      .about-visual .small-img{display: none;}
      .stat-box{border-right:0;border-bottom:1px solid rgba(255,255,255,.25);}
      .stat-box:last-child{border-bottom:0;}
      .amenity-grid{grid-template-columns:repeat(2,1fr);margin-top:30px;}
      .section-pad{padding:65px 0;}
      .summary-item {padding: 18px; min-height: 0;}
      .plan-card {padding: 20px 5px;}
      .mob-form-wrapper{display: block; text-align: center; padding-top: 40px;}
      .hero-form-wrapper{display: none;}
    }
/* Apply blur ONLY on mobile screens (less than 768px wide) */
@media (max-width: 767px) {
  .gallery-thumbs.locked img {
    filter: blur(3px);
    transition: filter 0.3s ease;
    pointer-events: none; /* Prevents dragging/right-clicking the image directly */
  }

  .gallery-thumbs.locked .thumb-btn {
    cursor: pointer;
  }
}
    @media (max-width: 575.98px){
      .navbar-shell{width:calc(100% - 24px);padding:8px 12px;}
      .brand-text{font-size:11px;}
      .hero{min-height:520px;align-items:center;background-position:52% top;}
      .hero::after{background:linear-gradient(90deg,rgba(255,255,255,.78),rgba(255,255,255,.18));}
      .hero-content{padding-top:95px;padding-bottom:55px;}
      .price-ribbon{font-size:25px;}
      .red-label{max-width: 70%;}
      .hero-note{color: #000;}
      .summary-label{letter-spacing:5px;}
      .summary-value{font-size:16px;}
      .plan-cards{padding-top:42px;}
      .plan-card h3{font-size:28px; margin: 0;}
      .about-text p,.clubhouse p{font-size:14px;line-height:1.75;}
      .amenity-grid{grid-template-columns:1fr;}
      .thumb-row{overflow-x:auto;justify-content:flex-start;padding-bottom:8px;}
      .form-card{padding:26px 20px;}
      .cta-section{padding-top:55px;}
      .location-section,.gallery-section{padding:55px 0;}
      .clubhouse{padding:65px 0;}
      .modal-content {width: 100%;}

    }

@media (max-width: 991.98px) {

  .site-header{
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 9999;
  }

  .navbar-shell{
    position: relative;
    overflow: visible;
  }

  /* Mobile menu panel */
  .navbar-collapse{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 20px;
    padding: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,.18);

    z-index: 9999;
  }

  .navbar-nav{
    gap: 8px;
  }

  .navbar-nav .nav-link{
    display: block;
    text-align: center;
    padding: 14px !important;
  }

  .navbar-collapse .btn-green{
    width: 100%;
    margin-top: 12px;
  }
}


    .enquiry-modal .modal-content {
  border: 0;
  border-radius: 22px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}

.enquiry-modal .modal-body {
  padding: 34px 30px 30px;
  position: relative;
}

.enquiry-modal h3 {
  color: #155b2a;
  font-family: "Chelon Italic", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 8px;
}

.enquiry-subtitle {
  color: #555555;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.enquiry-modal .form-control {
  height: 48px;
  border: 1px solid #e2ddd6;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 14px;
  color: #222222;
  box-shadow: none;
}

.enquiry-modal textarea.form-control {
  height: auto;
  min-height: 95px;
  border-radius: 18px;
  resize: none;
}

.enquiry-modal .form-control:focus {
  border-color: #155b2a;
  box-shadow: 0 0 0 3px rgba(21, 91, 42, 0.12);
}

.enquiry-close {
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 5;
  box-shadow: none !important;
}

.form-success-msg {
  display: none;
  margin-top: 14px;
  color: #155b2a;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 575px) {
  .enquiry-modal .modal-body {
    padding: 32px 20px 24px;
  }

  .enquiry-modal h3 {
    font-size: 26px;
  }
}

/* 1. Backdrop Blur Overlay */
body.nav-menu-open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); /* Darkens background slightly */
  backdrop-filter: blur(8px);    /* Applies the blur effect */
  -webkit-backdrop-filter: blur(8px);
  z-index: 1030; /* Just below Bootstrap's fixed navbar default */
  pointer-events: none; /* Allows clicks to go through if needed, or change to auto to block interactions */
}

/* Ensure the navbar stays on top of the blurred background */
.site-header {
  position: relative;
  z-index: 1040;
}

/* 2. Hamburger to 'X' Animation */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Replace standard BS icon with a custom CSS icon for smooth transition */
.navbar-toggler-icon {
  background-image: none !important; /* Remove default Bootstrap SVG */
  position: relative;
  width: 24px;
  height: 2px;
  background-color: currentColor; /* Matches text color */
  transition: background-color 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease, top 0.3s ease;
}

/* Position the top and bottom lines of hamburger */
.navbar-toggler-icon::before { top: -8px; left: 0; }
.navbar-toggler-icon::after { top: 8px; left: 0; }

/* Transform to 'X' when NOT collapsed (menu is open) */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent; /* Hide middle line */
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}


