html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Bricolage Grotesque", "Josefin Sans", sans-serif;
  /* font-family: "Reem Kufi", sans-serif;
        font-weight: 100; */
}

:root {
  --gold: #286b23;
  --gold2: #348f2e;
  --dark: #1a1a1a;
  --dark2: #222;
  --dark3: #2d2d2d;
  --gray: #666;
  --lgray: #f7f6f3;
  --border: #e8e4dc;
  --teal: #1b5e8a;
  --orange: #d4601a;
  --white: #fff;

  --font1: "Bricolage Grotesque", sans-serif;
  --font2: "Bricolage Grotesque", sans-serif;
  --modal-hdr-start: #0d3b66;
  --modal-hdr-end: #0d3b66;
}

/* ===================== SECTION COMMONS ===================== */
section {
  scroll-margin-top: 6.94vw;
}
.sec {
  padding: 3vw 3vw;
}
.sec-inner {
  max-width: 88.89vw;
  margin: 0 auto;
}
.sec-eyebrow {
  font-size: clamp(12px, 1.04vw, 15px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.97vw;
  /* display: flex; */
  align-items: center;
  gap: 0.69vw;
}
.sec-eyebrow::before {
  content: "";
  width: 1.94vw;
  height: 1.5px;
  background: var(--gold);
}
.sec-h2 {
  /* font-family: 'Playfair Display', serif; */
  font-family: "Bricolage Grotesque";

  font-family: var(--font1);
  font-size: clamp(32px, 2.5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.25vw;
}
.sec-h2 em {
  font-style: italic;
  color: var(--gold);
}
.sec-desc {
  font-size: clamp(16px, 1.1vw, 17px);
  line-height: 1.85;
  color: var(--dark);
  /* max-width: 40.28vw; */
}

/* ===================== NAVIGATION ===================== */
.floating-nav {
  position: absolute;
  top: 1.67vw;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 88.89vw;
  height: 5.56vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 9999px;
  box-shadow:
    0 0.69vw 2.78vw rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.22vw;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.83vw;
  text-decoration: none;
  color: var(--dark);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(18px, 1.39vw, 24px);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-logo {
  height: 8vw;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.94vw;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--dark);
  /* font-family: "Inter", sans-serif;
   */
  font-family: "Bricolage Grotesque", sans-serif;

  font-size: clamp(14px, 1.11vw, 18px);
  font-weight: 500;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.42vw;
  padding: 0.56vw 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--gold);
}

.nav-arrow {
  font-size: clamp(10px, 0.56vw, 12px);
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.nav-menu li a:hover .nav-arrow {
  transform: translateY(2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.67vw;
}

.nav-phone {
  text-decoration: none;
  color: var(--dark);
  font-family: "Inter", sans-serif;
  font-size: clamp(13px, 0.97vw, 16px);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.56vw;
  transition: color 0.25s ease;
}

.nav-phone i {
  color: var(--gold);
  font-size: clamp(12px, 0.9vw, 15px);
}

.nav-phone:hover {
  color: var(--gold);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.83vw 1.94vw;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 9999px;
  color: var(--dark);
  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: clamp(18px, 1.53vw, 24px);
  color: var(--dark);
  cursor: pointer;
  padding: 0.28vw;
  transition: color 0.2s ease;
}

.nav-toggle:hover {
  color: var(--gold);
}

.mobile-only {
  display: none !important;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 48.61vw;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active img {
  animation: kenBurns 12s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.65) 100%),
    radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 4;
  padding: 0 4.17vw;
  max-width: 76.39vw;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Slider Controls styling */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.89vw;
  height: 3.89vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.11vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  /* box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4); */
}
.slider-btn i {
  transition: transform 0.3s ease;
}
.prev-btn {
  left: 2.78vw;
}
.prev-btn:hover i {
  transform: translateX(-2px);
}
.next-btn {
  right: 2.78vw;
}
.next-btn:hover i {
  transform: translateX(2px);
}

/* Slider Dots styling */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.69vw;
  z-index: 5;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}
.slider-dot.active {
  width: 28px;
  background: var(--gold);
  /* box-shadow: 0 0 10px rgba(201, 168, 76, 0.6); */
}

@media (max-width: 768px) {
  .slider-btn {
    display: none; /* Hide navigation buttons on mobile */
  }
  .slider-dots {
    bottom: 30px;
  }
}
.hero-tag {
  display: none;
  align-items: center;
  gap: 0.69vw;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.49vw 1.25vw;
  margin-bottom: 1.94vw;
}
.hero-tag span {
  font-size: clamp(10px, 0.76vw, 12px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-h1 {
  /* font-family: "Playfair Display", serif; */
  /* font-family: "Josefin Sans", sans-serif; */
  font-family: "Bricolage Grotesque", sans-serif;

  font-size: clamp(32px, 4vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.83vw;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold2);
  display: block;
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 48.61vw;
  margin: 0 auto 2.64vw;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 0.97vw;
  flex-wrap: wrap;
  margin-bottom: 3.61vw;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.69vw;
  padding: 1.04vw 2.22vw;
  background: var(--gold);
  color: #fff;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  border-radius: 0.5vw;

  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-primary:hover {
  background: #b8943e;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.69vw;
  padding: 0.97vw 2.22vw;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: clamp(12px, 0.83vw, 14px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-meta {
  display: flex;
  gap: 2.5vw;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}
.hero-meta-item .label {
  font-size: clamp(10px, 0.69vw, 12px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.hero-meta-item .value {
  font-size: clamp(13px, 1.04vw, 18px);
  color: #fff;
  font-weight: 500;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5vw;
  right: 4.17vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.56vw;
  z-index: 2;
}
.hero-scroll span {
  font-size: clamp(10px, 0.69vw, 12px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 3.61vw;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

/* ===================== ABOUT ===================== */
#about {
  background: #fff;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.56vw;
  align-items: center;
}
.about-imgs {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0.83vw;
}
.about-img1 {
  height: 33.33vw;
  overflow: hidden;
}
.about-img2 {
  display: flex;
  flex-direction: column;
  gap: 0.83vw;
}
.about-img2a {
  flex: 1;
  overflow: hidden;
}
.about-img2b {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.about-img1 img,
.about-img2a img,
.about-img2b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  border-radius: 0.5vw;
}
.about-img1:hover img,
.about-img2a:hover img,
.about-img2b:hover img {
  transform: scale(1.04);
}
.about-stat-pill {
  display: none;
  /* position: absolute; */

  top: 12.5vw;
  right: 4.17vw;
  background: #c9a84c;
  padding: 1.25vw;
  display: flex;
  align-items: center;
  gap: 0.83vw;
  border-radius: 6px;
}
.about-stat-pill .pill-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(20px, 1.94vw, 28px);
  color: #fff;
  line-height: 1;
}
.about-stat-pill .pill-label {
  font-size: clamp(10px, 0.76vw, 12px);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.about-logo {
  margin-bottom: -2vw;
  margin-left: -2vw;
}

.about-logo img {
  height: 10vw;
  width: auto;
  display: block;
}
.about-text .sec-h2 {
  margin-bottom: 1.39vw;
}
.about-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.83vw;
  margin: 1.67vw 0 2.22vw;
}
.about-checks li {
  display: flex;
  align-items: center;
  gap: 0.83vw;
  font-size: clamp(14px, 1vw, 16px);
  color: var(--dark);
}
.about-checks li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  font-size: clamp(11px, 0.83vw, 14px);
  flex-shrink: 0;
}
.about-contact {
  display: none;
  align-items: center;
  gap: 1.39vw;
  padding: 1.67vw;
  background: var(--lgray);
  border-left: 3px solid var(--gold);
}
.about-contact .phone-label {
  font-size: clamp(10px, 0.69vw, 12px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.about-contact .phone-num {
  font-size: clamp(16px, 1.53vw, 24px);
  color: var(--dark);
  font-weight: 600;
}
.about-contact a {
  text-decoration: none;
  color: inherit;
}

/* ===================== FLOOR PLANS ===================== */
#floor-plans {
  background-color: #000000;
  background-image: url("../images/hero/pattern-2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.fp-tabs-header {
  overflow: hidden;
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3.61vw;
  overflow-x: auto;
}
.fp-tab {
  padding: 0.97vw 2.5vw;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: clamp(11px, 0.83vw, 14px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.25s;
  white-space: nowrap;
}
.fp-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 600;
}
.fp-tab:hover:not(.active) {
  color: #ffffff;
}
.fp-panel {
  display: none;
}
.fp-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.17vw;
  align-items: start;
}
.fp-info h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(22px, 2.36vw, 36px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.56vw;
  line-height: 1.2;
}
.fp-info h3 em {
  font-style: italic;
  color: var(--gold);
}
.fp-info .fp-desc {
  font-size: clamp(13px, 1.04vw, 16px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.94vw;
}
.fp-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.11vw;
  margin-bottom: 1.94vw;
}
.fp-stat {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25vw 1.39vw;
}
.fp-stat .stat-label {
  font-size: clamp(10px, 0.76vw, 12px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.28vw;
}
.fp-stat .stat-val {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(16px, 1.53vw, 24px);
  color: #ffffff;
  font-weight: 600;
}
.fp-floor-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.67vw;
}
.floor-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.97vw 1.39vw;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: background 0.2s;
  width: 100%;
  text-align: left;
}
.floor-btn:last-child {
  border-bottom: none;
}
.floor-btn.active {
  background: var(--gold);
}
.floor-btn.active .fbn,
.floor-btn.active .fbname,
.floor-btn.active .fbarea {
  color: #fff !important;
}
.floor-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
}
.fbn {
  font-size: clamp(10px, 0.69vw, 12px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.69vw;
}
.fbname {
  font-size: clamp(13px, 0.97vw, 16px);
  color: #ffffff;
  font-weight: 500;
}
.fbarea {
  font-size: clamp(11px, 0.83vw, 14px);
  color: rgba(255, 255, 255, 0.5);
  margin-left: 1.8vw;
}
.fp-arrow {
  color: var(--gold);
  font-size: clamp(12px, 0.97vw, 16px);
  opacity: 0;
  transition: opacity 0.2s;
}
.floor-btn.active .fp-arrow {
  opacity: 1;
  color: #fff;
}
.fp-img-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.fp-img-wrap img {
  width: 100%;
  display: block;
  padding: 1.39vw;
  object-fit: contain;
  min-height: 25vw;
  background: rgba(255, 255, 255, 0.02);
}
.fp-img-badge {
  /* position: absolute; */
  display: none;
  top: 0.97vw;
  left: 0.97vw;
  background: var(--gold);
  padding: 0.35vw 0.97vw;
}
.fp-img-badge span {
  font-size: clamp(10px, 0.69vw, 12px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

/* ===================== GALLERY GRID ===================== */
#gallery {
  background: var(--lgray);
  padding: 0vw 3vw 3vw;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 16.67vw 16.67vw;
  gap: 0.56vw;
  max-width: 88.89vw;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
/* .gallery-item.wide {
  grid-column: span 2;
} */
.gallery-item img {
  width: 100%;
  border-radius: 0.5vw;

  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  /* background:rgba(0,0,0,0); */
  /* background: linear-gradient(
    100deg,
    rgba(15, 15, 15, 0.88) 0%,
    rgba(15, 15, 15, 0.55) 55%,
    rgba(15, 15, 15, 0.2) 100%
  ); */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(201, 168, 76, 0.2);
}
.gallery-overlay i {
  font-size: clamp(18px, 1.94vw, 28px);
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* ===================== AMENITIES ===================== */
#amenities {
  background: #fff;
}
.amenities-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.17vw;
  align-items: start;
  margin-bottom: 4.17vw;
}
.amenities-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #c9a84c;
}
.amen-card {
  padding: 2.5vw 1.94vw;
  border-right: 1px solid #c9a84c;
  border-bottom: 1px solid #c9a84c;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.amen-card:nth-child(3n) {
  border-right: none;
}
.amen-card:nth-child(n + 4) {
  border-bottom: none;
}
.amen-card:hover {
  background: var(--lgray);
}
.amen-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
/* .amen-card:hover::before{transform:scaleX(1)} */
.amen-icon {
  width: 3.61vw;
  height: 3.61vw;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25vw;
  font-size: clamp(20px, 1.53vw, 26px);
  color: var(--gold);
}
.amen-title {
  font-size: clamp(14px, 1.04vw, 18px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.56vw;
}
.amen-desc {
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--gray);
  line-height: 1.6;
}
.amen-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.56vw;
  margin-top: 0.97vw;
}
.amen-list li {
  display: flex;
  align-items: center;
  gap: 0.69vw;
  font-size: clamp(15px, 1.04vw, 16px);
  color: var(--gray);
}
.amen-list li i {
  color: var(--gold);
  font-size: clamp(14px, 0.76vw, 12px);
  flex-shrink: 0;
}

/* ===================== LOCATION ===================== */
#location {
  background: #fff;
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 40vw;
  gap: 3.61vw;
  margin-top: 3.61vw;
  align-items: start;
}
.map-wrap {
  position: relative;
  border: 1px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 33.33vw;
  border: none;
  display: block;
  filter: saturate(0.7);
}
.map-tag {
  /* position: absolute; */
  display: none;
  top: 1.11vw;
  left: 1.11vw;
  background: var(--gold);
  padding: 0.49vw 1.11vw;
}
.map-tag span {
  font-size: clamp(10px, 0.69vw, 12px);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.loc-panel {
  display: flex;
  flex-direction: column;
  gap: 1.11vw;
}
.loc-addr {
  background: var(--lgray);
  border: 1px solid var(--border);
  padding: 1.67vw;
}
.loc-addr h4 {
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.69vw;
}
.loc-addr h4 em {
  font-style: italic;
  color: var(--gold);
}
.loc-addr p {
  font-size: clamp(12px, 0.9vw, 15px);
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.11vw;
}
.loc-addr-btns {
  display: flex;
  gap: 0.69vw;
}
.nearby-block {
  display: none;
  background: var(--lgray);
  border: 1px solid var(--border);
  padding: 1.67vw;
}
.nearby-block h4 {
  font-size: clamp(10px, 0.69vw, 12px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.11vw;
}
.nearby-list {
  display: flex;
  flex-direction: column;
}
.nearby-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.69vw 0;
  border-bottom: 1px solid var(--border);
}
.nearby-item:last-child {
  border-bottom: none;
}
.nearby-l {
  display: flex;
  align-items: center;
  gap: 0.69vw;
}
.nearby-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nearby-name {
  font-size: clamp(12px, 0.9vw, 15px);
  color: var(--dark);
}
.nearby-type {
  font-size: clamp(10px, 0.69vw, 12px);
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nearby-dist {
  font-size: clamp(13px, 0.97vw, 16px);
  color: var(--gold);
  font-weight: 600;
}
.enquire-card {
  background: var(--gold);
  padding: 1.94vw;
}
.enquire-card h4 {
  font-size: clamp(18px, 1.53vw, 26px);
  color: #fff;
  margin-bottom: 0.42vw;
  font-weight: 600;
}
.enquire-card p {
  font-size: clamp(12px, 0.9vw, 15px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25vw;
}
.enquire-card .ph {
  font-size: clamp(16px, 1.39vw, 22px);
  color: #fff;
  display: block;
  text-decoration: none;
  margin-bottom: 3px;
}
.enquire-card .em {
  font-size: clamp(11px, 0.83vw, 14px);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: block;
  margin-bottom: 1.25vw;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.69vw;
  padding: 0.83vw 1.94vw;
  background: #fff;
  color: var(--dark);
  font-size: clamp(11px, 0.76vw, 14px);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
  width: 100%;
  justify-content: center;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.87);
}

/* ===================== BROCHURE SECTION ===================== */
.brochure-sec {
  background: #1a2332; /* matching deep navy footer theme */
  padding: 2.78vw 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brochure-inner {
  max-width: 88.89vw;
  width: 100%;
  margin: 0 auto;
}

.brochure-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  flex-wrap: wrap;
}

.brochure-btn {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  height: 64px;
  width: 260px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brochure-btn:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.brochure-btn-icon-box {
  height: 100%;
  width: 76px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 12px;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.brochure-btn:hover .brochure-btn-icon-box {
  background: #f1f1f1;
}

.brochure-webp-icon {
  width: 3vw;
  height: 6vw;
  object-fit: contain;
}

.brochure-btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 14px;
  text-align: left;
}

.brochure-btn-text .kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.brochure-btn-text .main {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2px;
}

/* ===================== CONTACT FORM CARD ===================== */
.contact-form-card {
  background: var(--lgray);
  border: 1px solid var(--border);
  padding: 2.08vw;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form-card h4 {
  font-family: var(--font1);
  font-size: clamp(18px, 1.67vw, 28px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.56vw;
}

.contact-form-card h4 em {
  font-style: italic;
  color: var(--gold);
}

.contact-form-card .form-intro {
  font-size: clamp(15px, 1.04vw, 16px);
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.39vw;
}

.site-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.11vw;
}

.site-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.42vw;
}

.site-contact-form label {
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-contact-form input,
.site-contact-form textarea {
  padding: 0.69vw 0.97vw;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: clamp(13px, 0.9vw, 15px);
  color: var(--dark);
  background: #ffffff;
  transition: border-color 0.25s;
  width: 100%;
}

.site-contact-form input:focus,
.site-contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-submit-btn {
  border: none;
  cursor: pointer;
  width: 50%;
  justify-content: center;
  font-family: inherit;
}

.contact-card-footer {
  margin-top: 1.39vw;
  display: none;
  padding-top: 1.39vw;
  border-top: 1px solid var(--border);
}

.contact-card-footer .footer-addr {
  font-size: clamp(11px, 0.83vw, 13px);
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.83vw;
}

.contact-card-footer .footer-links {
  display: flex;
  gap: 0.83vw;
}

.contact-card-footer .footer-links a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.56vw;
  padding: 0.69vw 0.97vw;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: clamp(11px, 0.83vw, 14px);
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #ffffff;
  transition: all 0.25s ease;
}

.contact-card-footer .footer-links a:hover {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.whatsapp-float {
  position: fixed;
  right: 3vw;
  bottom: 3vw;
  width: 3vw;
  height: 3vw;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  z-index: 9999;
  box-shadow: 0 0.5rem 1.5rem rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-0.3rem) scale(1.05);
  color: #fff;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 1.2rem rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===================== PREMIUM LIGHTBOX VIEW RENDER ===================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}
.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lightbox-caption {
  margin-top: 1.11vw;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: clamp(13px, 1.04vw, 18px);
  font-weight: 500;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: fixed;
  top: 2.08vw;
  right: 2.08vw;
  width: 3.06vw;
  height: 3.06vw;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  color: #1a1a1a;
  font-size: clamp(16px, 1.39vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10005;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-close:hover {
  transform: scale(1.1);
  background: var(--gold);
  color: #ffffff;
}
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 3.47vw;
  height: 3.47vw;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: clamp(14px, 1.25vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10003;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.lightbox-arrow:hover {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
.lightbox-prev {
  left: 2.08vw;
}
.lightbox-next {
  right: 2.08vw;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 90%;
  }
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
  }
  .lightbox-prev {
    left: 15px;
  }
  .lightbox-next {
    right: 15px;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .about-imgs {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .amen-list li {
    gap: 2vw;
  }
}

/* ===================== RESPONSIVE STYLES FOR SECTIONS ===================== */
@media (max-width: 991px) {
  .sec {
    padding: 50px 30px;
  }

  /* About Section */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-img1 {
    height: 380px;
  }
  .about-text {
    text-align: center;
  }
  .about-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0 !important;
  }
  .about-logo img {
    height: 70px !important;
  }
  .about-checks {
    align-items: center;
    margin: 20px 0 24px;
  }
  .about-checks li {
    text-align: left;
    max-width: 500px;
  }
  .about-contact {
    justify-content: center;
  }

  /* Gallery Section */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 220px;
  }

  /* Floor Plans Section */
  .fp-panel.active {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fp-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .fp-img-wrap {
    order: -1;
  }
  .fp-img-wrap img {
    min-height: auto;
    max-height: 400px;
  }

  /* Amenities Section */
  .amenities-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .amenities-cards {
    grid-template-columns: repeat(2, 1fr);
    border: none;
    gap: 15px;
  }
  .amen-card {
    padding: 24px 20px;
    border: 1px solid var(--border) !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  }
  .amen-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .amen-title {
    margin-bottom: 8px;
  }
  .amen-list {
    margin-top: 12px;
    gap: 8px;
  }

  /* Location Section */
  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-wrap iframe {
    height: 380px;
  }
  .contact-form-card {
    padding: 30px 24px;
    height: auto;
  }
  .site-contact-form {
    gap: 16px;
  }
  .site-contact-form .form-group {
    gap: 8px;
  }
  .site-contact-form input,
  .site-contact-form textarea {
    padding: 12px 16px;
  }
  .form-submit-btn {
    width: 100%;
  }
  .contact-card-footer {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
  }
  .contact-card-footer .footer-addr {
    margin-bottom: 12px;
  }
  .contact-card-footer .footer-links {
    gap: 12px;
  }
  .contact-card-footer .footer-links a {
    padding: 10px 14px;
  }

  /* Brochure Section Tablet */
}

@media (max-width: 767px) {
  .sec {
    padding: 40px 20px;
  }

  /* About Section */
  .about-img1 {
    height: 280px;
  }
  .about-img2 {
    flex-direction: row;
    height: 130px;
    gap: 10px;
  }
  .about-img2a,
  .about-img2b {
    flex: 1;
  }
  .sec-h2 {
    font-size: 28px;
  }
  .about-logo img {
    height: 30vw !important;
  }

  /* Gallery Section */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }

  /* Floor Plans Section */
  .fp-tabs-header {
    padding-bottom: 8px;
    margin-bottom: 30px;
  }
  .fp-tab {
    padding: 10px 20px;
    font-size: 11px;
  }
  .fp-info h3 {
    font-size: 26px;
  }
  .fp-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .fp-stat {
    padding: 12px 14px;
  }
  .fp-stat .stat-val {
    font-size: 18px;
  }
  .fbarea {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
  .floor-btn {
    padding: 12px 16px;
  }

  /* Amenities Section */
  .amenities-cards {
    grid-template-columns: 1fr;
  }

  /* Location Section */
  .map-wrap iframe {
    height: 280px;
  }

  /* WhatsApp Floating Button Position */
  .whatsapp-float {
    bottom: 80px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 1.5rem !important;
  }

  /* Brochure Section Mobile */
  .brochure-sec {
    padding: 40px 20px;
  }
  .brochure-btn-group {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .brochure-btn {
    width: 100%;
    max-width: 280px;
  }

  .about-checks {
    gap: 3.2vw;
  }

  .brochure-webp-icon {
    width: 10vw;
    height: 9vw;
  }
}

.footer {
  background: #1a2332 !important;
}

/* ===================== FIXED BROCHURE BTN ===================== */
.fixed-brochure-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold); /* Theme primary color */
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font1);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(40, 107, 35, 0.4);
  transition: transform 0.3s, background 0.3s;
}
.fixed-brochure-btn:hover {
  transform: translateY(-3px);
  background: var(--gold2);
}
