/* ============================================
   CODENAME CITADEL - PREMIUM LANDING PAGE
   Color Palette: Deep Green + Gold + White
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  /* Warm Obsidian + Champagne — luxury neutral palette
     --green-* vars are kept for backwards compatibility but now hold warm charcoal/cocoa tones */
  --green-deep: #1a1613;
  --green-dark: #241e18;
  --green-mid: #3a3026;
  --green-accent: #4a3c2e;
  --onyx: #1a1613;
  --cocoa: #3a3026;
  --gold: #c9a876;
  --gold-light: #e4c892;
  --gold-dark: #9c7d4c;
  --gold-soft: rgba(201, 168, 118, 0.14);
  --white: #ffffff;
  --ivory: #f6efe0;
  --cream: #fbf6ea;
  --stone: #ece2cd;
  --sand: #e3d6ba;
  --black: #0e0b08;
  --grey-dark: #2a2420;
  --grey-mid: #746c60;
  --grey-light: #f9f4e8;
  --shadow-sm:
    0 2px 8px rgba(26, 22, 19, 0.06), 0 1px 3px rgba(26, 22, 19, 0.04);
  --shadow-md:
    0 12px 32px rgba(26, 22, 19, 0.09), 0 4px 10px rgba(26, 22, 19, 0.05);
  --shadow-lg:
    0 30px 60px rgba(26, 22, 19, 0.14), 0 10px 24px rgba(26, 22, 19, 0.08);
  --shadow-gold: 0 14px 36px rgba(201, 168, 118, 0.28);
  --grad-gold: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 50%,
    var(--gold-dark) 100%
  );
  --grad-green: linear-gradient(
    160deg,
    var(--onyx) 0%,
    #221c16 55%,
    var(--cocoa) 100%
  );
  --grad-onyx: linear-gradient(160deg, #14110e 0%, #201a15 55%, #2e261e 100%);
  --grad-cream: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  --grad-stone: linear-gradient(180deg, var(--ivory) 0%, var(--stone) 100%);
  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.035 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;
}

/* ============ LAYERED UTILITIES ============ */
.ornamental-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px auto 26px;
  max-width: 260px;
}
.ornamental-divider::before,
.ornamental-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.ornamental-divider i {
  color: var(--gold);
  font-size: 10px;
  transform: rotate(45deg);
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.has-noise {
  position: relative;
}
.has-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}
.has-noise > * {
  position: relative;
  z-index: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--grey-dark);
  background: var(--cream);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Alternating luxury section tones — drop on any <section> */
.bg-cream {
  background: var(--cream) !important;
}
.bg-ivory {
  background: var(--ivory) !important;
}
.bg-stone {
  background: var(--stone) !important;
}
.bg-onyx {
  background: var(--grad-onyx) !important;
  color: var(--ivory);
}
.bg-onyx h1,
.bg-onyx h2,
.bg-onyx h3,
.bg-onyx h4,
.bg-onyx h5 {
  color: var(--ivory);
}
.bg-onyx p {
  color: rgba(246, 239, 224, 0.78);
}
h1,
h2,
h3 {
  letter-spacing: -0.01em;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}
p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-mid);
  margin-bottom: 15px;
}
a {
  text-decoration: none;
  color: var(--gold);
  transition: all 0.3s ease;
}
a:hover {
  color: var(--gold-dark);
}
img {
  max-width: 100%;
  height: auto;
}
.py {
  padding: 80px 0;
}
section {
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .py {
    padding: 50px 0;
  }
}

/* ============ HEADER ============ */
header.navbar-light {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1050;
  padding: 0;
}
header .navbar {
  padding: 8px 0;
}
header .navbar-brand {
  margin: 0;
  padding: 2px 0;
}
header .navbar-brand img {
  max-height: 90px;
  width: 100%;
  height: auto;
}
header .nav-link {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-deep) !important;
  padding: 10px 10px !important;
  transition: all 0.3s ease;
  position: relative;
}
header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition:
    width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}
header .nav-link:hover::after {
  width: 50%;
}
/* Active section highlight - animated underline */
header .nav-link.active-section {
  color: var(--gold) !important;
}
header .nav-link.active-section::after {
  width: 70%;
  background: var(--gold);
}
header .nav-link:hover {
  color: var(--gold-dark) !important;
}

@media (max-width: 991px) {
  header .navbar-brand img {
    max-height: 90px;
  }
}

/* ============ OFFCANVAS MOBILE MENU ============ */
.offcanvas {
  max-width: 100% !important;
  width: 100% !important;
  border-left: none !important;
  border-top: 3px solid var(--gold) !important;
}
.offcanvas-header {
  border-bottom: 1px solid #eee;
  padding: 18px 20px;
}
.offcanvas-body {
  padding: 20px;
}
.offcanvas-nav .nav-item {
  border-bottom: 1px solid #f0ece4;
}
.offcanvas-nav .nav-link {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--green-deep) !important;
  padding: 14px 5px !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.offcanvas-nav .nav-link:hover {
  color: var(--gold) !important;
  padding-left: 10px !important;
}

/* ============ BANNER SLIDER ============ */
.banner-section {
  position: relative;
  overflow: visible;
  z-index: 2;
  margin-bottom: 0;
}
.banner-section .carousel {
  overflow: hidden;
}
.banner-section .carousel-inner {
  overflow: hidden;
}
.banner-img {
  width: 100%;
  object-fit: cover;
  display: block;
  margin-top: 5px;
}
.banner-img-mob {
  width: 100%;
  object-fit: cover;
  display: block;
}
.banner-section .carousel-control-prev-icon,
.banner-section .carousel-control-next-icon {
  background-color: rgba(26, 22, 19, 0.6);
  border-radius: 50%;
  padding: 18px;
  background-size: 50%;
}
.banner-section .carousel-control-prev,
.banner-section .carousel-control-next {
  width: 5%;
  z-index: 5;
}

/* ---- Banner content overlay ---- */
.banner-section .carousel-item {
  position: relative;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(26, 22, 19, 0.88) 0%,
      rgba(26, 22, 19, 0.55) 45%,
      rgba(26, 22, 19, 0.15) 100%
    ),
    linear-gradient(
      180deg,
      rgba(26, 22, 19, 0.35) 0%,
      transparent 30%,
      rgba(26, 22, 19, 0.55) 100%
    );
  z-index: 2;
}
.banner-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.banner-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}
.banner-content {
  max-width: 620px;
  color: #fff;
  padding: 40px 0;
}
.banner-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.banner-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.banner-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.banner-location {
  font-size: 16px;
  color: #f1e8d4;
  margin-bottom: 18px;
}
.banner-location i {
  color: var(--gold);
  margin-right: 6px;
}
.banner-config {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.banner-config .config-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
  background: rgba(201, 168, 118, 0.12);
  backdrop-filter: blur(4px);
}
.banner-price {
  font-size: 16px;
  color: #f1e8d4;
  margin-bottom: 20px;
}
.banner-price strong {
  color: var(--gold);
  font-size: 20px;
}
.banner-usps {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.banner-usps .b-usp-item {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner-usps .b-usp-item i {
  color: var(--gold);
}
.btn-banner-cta {
  display: inline-flex;
  align-items: center;
  background: var(--grad-gold);
  color: var(--green-deep) !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow:
    var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-banner-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
.btn-banner-cta:hover::before {
  transform: translateX(120%);
}
.btn-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(201, 168, 118, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .banner-img-mob {
    margin-top: 0;
  }
  .banner-overlay {
    background: linear-gradient(
      180deg,
      rgba(26, 22, 19, 0.55) 0%,
      rgba(26, 22, 19, 0.75) 100%
    );
  }
  .banner-content {
    padding: 90px 15px 120px;
    text-align: center;
  }
  .banner-content-wrap {
    padding-right: 50px;
  }
  .banner-title {
    font-size: 34px;
  }
  .banner-subtitle {
    font-size: 14px;
  }
  .banner-location,
  .banner-price {
    font-size: 13px;
  }
  .banner-price strong {
    font-size: 16px;
  }
  .banner-config {
    justify-content: center;
  }
  .banner-config .config-badge {
    font-size: 11px;
    padding: 6px 14px;
  }
  .banner-usps {
    justify-content: center;
    gap: 14px;
  }
  .banner-usps .b-usp-item {
    font-size: 12px;
  }
  .btn-banner-cta {
    font-size: 11px;
    padding: 13px 24px;
  }
}

/* ============ BUTTONS ============ */
.btn-gold {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold:hover {
  background: var(--grad-green);
  color: var(--gold-light);
  border-color: var(--green-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 2px solid rgba(201, 168, 118, 0.5);
  border-radius: 0;
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
@media (max-width: 575px) {
  .btn-gold,
  .btn-outline-gold {
    padding: 12px 20px;
    font-size: 11px;
  }
}

/* ============ FORM (used in overview & contact) ============ */
.hero-form-wrapper {
  background: var(--white);
  padding: 32px 26px 26px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid rgba(201, 168, 118, 0.22);
}
.hero-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}
.hero-form-wrapper::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 168, 118, 0.18);
  pointer-events: none;
  border-radius: 2px;
}
.hero-form-wrapper > * {
  position: relative;
  z-index: 1;
}
.hero-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 3px;
}
.hero-form-wrapper > p {
  font-size: 13px;
  color: var(--grey-mid);
  margin-bottom: 14px;
}
.hero-form-wrapper .form-control,
.hero-form-wrapper .custom-select {
  background: var(--grey-light);
  border: 1px solid #e0ddd5;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--grey-dark);
  transition: all 0.3s ease;
  height: auto;
  width: 100%;
}
.hero-form-wrapper .form-control:focus,
.hero-form-wrapper .custom-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 118, 0.15);
  background: var(--white);
  outline: none;
}
.hero-form-wrapper .form-control::placeholder {
  color: #999;
}
.hero-form-wrapper .form-group {
  margin-bottom: 8px;
}
.hero-form-wrapper .form-check-label {
  font-size: 11px;
  color: var(--grey-mid);
  line-height: 1.4;
}
.hero-form-wrapper .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.form-btn {
  width: 100%;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 6px;
}
.form-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
}
.selectfields {
  display: none;
}
.error {
  color: #c0392b;
  font-size: 12px;
  margin-top: 2px;
  display: block;
}

/* Overview highlights */
.ov-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--grey-light);
  border: 1px solid #eee;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.ov-highlight:hover {
  border-color: var(--gold);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}
.ov-highlight i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.ov-highlight span {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
}
@media (max-width: 575px) {
  .ov-highlight {
    padding: 10px;
    gap: 8px;
  }
  .ov-highlight i {
    font-size: 15px;
  }
  .ov-highlight span {
    font-size: 11px;
  }
}

/* ============ USP STRIP (overlapping banner & overview) ============ */
.usp-strip-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transform: translateY(50%);
  pointer-events: auto;
}
.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 18px;
  border-right: 1px solid #f0ece4;
  transition: all 0.3s ease;
}
.usp-item:last-child {
  border-right: none;
}
.usp-item:hover {
  background: var(--green-deep);
}
.usp-item:hover i,
.usp-item:hover strong,
.usp-item:hover span {
  color: var(--white) !important;
}
.usp-item i {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.usp-item div {
  display: flex;
  flex-direction: column;
}
.usp-item strong {
  font-size: 14px;
  color: var(--green-deep);
  line-height: 1.3;
}
.usp-item span {
  font-size: 11px;
  color: var(--grey-mid);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .usp-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp-item:nth-child(2) {
    border-right: none;
  }
  .usp-item:nth-child(3),
  .usp-item:nth-child(4) {
    border-top: 1px solid #f0ece4;
  }
}
@media (max-width: 575px) {
  .usp-strip {
    grid-template-columns: 1fr 1fr;
  }
  .usp-item {
    padding: 14px 12px;
    gap: 8px;
  }
  .usp-item i {
    font-size: 22px;
  }
  .usp-item strong {
    font-size: 12px;
  }
  .usp-item span {
    font-size: 10px;
  }
}

/* Space for USP overlap into overview */
.overview-section {
  padding-top: 100px !important;
}
@media (max-width: 991px) {
  .overview-section {
    padding-top: 90px !important;
  }
}
@media (max-width: 575px) {
  .overview-section {
    padding-top: 80px !important;
  }
}

/* ============ SECTION TITLES ============ */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 18px;
  line-height: 1.2;
}
.section-title.text-white {
  color: var(--white) !important;
}
.section-title.text-gold {
  color: var(--gold);
}
.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 25px;
}
.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}

/* ============ OVERVIEW ============ */
.overview-section {
  background: var(--white);
  position: relative;
  z-index: 1;
}
.overview-section p {
  font-size: 15px;
  line-height: 1.9;
}

/* ============ HALLMARKS ============ */
.hallmarks-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.hallmarks-section .deco-circle {
  position: absolute;
  border: 1px solid rgba(201, 168, 118, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.hallmarks-section .deco-circle.dc1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}
.hallmarks-section .deco-circle.dc2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
}
.hallmark-item {
  text-align: center;
  padding: 25px 15px;
  border: 1px solid rgba(201, 168, 118, 0.15);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  height: 100%;
}
.hallmark-item:hover {
  background: rgba(201, 168, 118, 0.06);
  border-color: rgba(201, 168, 118, 0.3);
  transform: translateY(-5px);
}
.hallmark-item i {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}
.hallmark-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}
.hallmark-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .hallmark-item {
    padding: 18px 10px;
  }
  .hallmark-item i {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .hallmark-item h4 {
    font-size: 14px;
  }
  .hallmark-item p {
    font-size: 11px;
  }
}

/* ============ CONFIGURATION ============ */
.config-section {
  background: var(--grey-light);
}
.config-card {
  background: var(--white);
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}
.config-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.config-card .config-img {
  overflow: hidden;
  height: 180px;
}
.config-card .config-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.config-card:hover .config-img img {
  transform: scale(1.05);
}
.config-card .config-body {
  padding: 20px;
  text-align: center;
}
.config-card .config-type {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 3px;
}
.config-card .config-area {
  font-size: 13px;
  color: var(--grey-mid);
  margin-bottom: 15px;
}
.pricing_btn {
  display: inline-block;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 25px;
  border: 2px solid var(--green-deep);
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing_btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}

@media (max-width: 575px) {
  .config-card .config-img {
    height: 140px;
  }
  .config-card .config-body {
    padding: 15px;
  }
  .config-card .config-type {
    font-size: 20px;
  }
  .pricing_btn {
    padding: 8px 18px;
    font-size: 10px;
  }
}

/* Config Swiper (mobile only) */
.config-grid-desktop {
  display: flex;
}
.config-swiper-mobile {
  display: none;
}
@media (max-width: 767px) {
  .config-grid-desktop {
    display: none !important;
  }
  .config-swiper-mobile {
    display: block;
  }
  .config-swiper-mobile .config-card {
    height: auto;
  }
  .configSwiper .swiper-slide {
    width: 100%;
  }
  .config-mobile-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 18px;
  }
  .config-mobile-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .config-mobile-nav button:hover,
  .config-mobile-nav button:active {
    background: var(--gold);
    color: var(--green-deep);
  }
}

/* ============ AMENITIES ============ */
.amenities-section {
  background: var(--white);
  overflow: hidden;
}
.amenity-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 280px;
  cursor: pointer;
  margin-bottom: 0;
}

/* ===== Amenities Swiper ===== */
.amenities-swiper-wrap {
  position: relative;
  padding: 0;
}
.amenitiesSwiper {
  overflow: hidden;
  padding: 4px 0 0;
}
.amenitiesSwiper .swiper-slide {
  height: auto;
  transition: transform 0.4s ease;
}

/* Controls row — sits BELOW the swiper */
.amenities-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
  position: relative;
}
.amenities-controls .swiper-button-prev,
.amenities-controls .swiper-button-next {
  position: static;
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--onyx);
  border: 1px solid var(--gold-light);
  box-shadow: 0 8px 22px rgba(201, 168, 118, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.35s ease;
}
.amenities-controls .swiper-button-prev:hover,
.amenities-controls .swiper-button-next:hover {
  background: var(--onyx);
  color: var(--gold-light);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(14, 11, 8, 0.45);
}
.amenities-controls .swiper-button-prev::after,
.amenities-controls .swiper-button-next::after {
  font-size: 16px;
  font-weight: 800;
}
.amenities-controls .swiper-pagination {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
}
.amenities-controls .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(26, 22, 19, 0.25);
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s ease;
}
.amenities-controls .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .amenities-controls { gap: 14px; margin-top: 22px; }
  .amenities-controls .swiper-button-prev,
  .amenities-controls .swiper-button-next { width: 40px; height: 40px; }
  .amenities-controls .swiper-button-prev::after,
  .amenities-controls .swiper-button-next::after { font-size: 14px; }
}
.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.amenity-card:hover img {
  transform: scale(1.08);
}
.amenity-card .amenity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px;
  background: linear-gradient(transparent, rgba(26, 22, 19, 0.9));
}
.amenity-card .amenity-overlay h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 2px;
}
.amenity-card .amenity-overlay p {
  font-size: 11px;
  color: var(--gold-light);
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .amenity-card {
    height: 180px;
  }
  .amenity-card .amenity-overlay {
    padding: 15px 10px;
  }
  .amenity-card .amenity-overlay h4 {
    font-size: 14px;
  }
  .amenity-card .amenity-overlay p {
    font-size: 10px;
  }
}

.amenity-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .amenity-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .amenity-icon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
.amenity-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #eee;
  background: var(--grey-light);
  transition: all 0.3s ease;
}
.amenity-icon-item:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.amenity-icon-item i {
  font-size: 20px;
  color: var(--gold);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.amenity-icon-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-deep);
}

/* ============ GALLERY (Swiper + Tabs) ============ */
.gallery-section {
  background: var(--green-deep);
  overflow: hidden;
}

/* Gallery Tabs */
.gallery-tabs {
  gap: 8px;
  margin-bottom: 30px !important;
}
.gallery-tabs .nav-link {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(201, 168, 118, 0.3);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 28px;
  transition: all 0.3s ease;
}
.gallery-tabs .nav-link:hover {
  color: var(--white);
  border-color: var(--gold);
}
.gallery-tabs .nav-link.active {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}

@media (max-width: 575px) {
  .gallery-tabs .nav-link {
    font-size: 10px;
    padding: 8px 16px;
    letter-spacing: 1px;
  }
}

/* Gallery Slide Items */
.gallery-slide-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.gallery-slide-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-slide-item:hover img {
  transform: scale(1.04);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 575px) {
  .gallery-slide-item img {
    height: 200px;
  }
  .gallery-caption {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* Swiper Navigation */
.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev {
  color: var(--gold);
  width: 44px;
  height: 44px;
  background: rgba(26, 22, 19, 0.8);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.gallery-section .swiper-button-next:hover,
.gallery-section .swiper-button-prev:hover {
  background: var(--gold);
  color: var(--green-deep);
}
.gallery-section .swiper-button-next::after,
.gallery-section .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* Mobile: arrows below slider */
.gallery-mobile-nav {
  display: none;
  justify-content: center;
  gap: 15px;
  margin-top: 18px;
}
.gallery-mobile-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-mobile-nav button:hover,
.gallery-mobile-nav button:active {
  background: var(--gold);
  color: var(--green-deep);
}
@media (max-width: 767px) {
  .gallery-section .swiper-button-next,
  .gallery-section .swiper-button-prev {
    display: none;
  }
  .gallery-mobile-nav {
    display: flex;
  }
}

/* Keep owl styles for other sections if needed */
.owl-nav button span {
  font-size: 28px;
  color: var(--gold);
}
.owl-theme .owl-nav [class*="owl-"] {
  background: var(--green-deep) !important;
  color: var(--white) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 5px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
}

/* ============ MAP & LOCATION ============ */
.map-section {
  background: var(--white);
}
.map-image-wrap {
  width: 100%;
  aspect-ratio: 6 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  background-image: url("../images/location-map.jpg");
  background-size: 200% 100%;
  background-position: left center;
  background-repeat: no-repeat;
}
.map-content .section-title {
  margin-top: 8px;
}
.map-content p {
  color: var(--grey-dark);
  margin-bottom: 14px;
  line-height: 1.7;
}
.map-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 18px !important;
}
@media (max-width: 991px) {
  .map-image-wrap {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center center;
    min-height: 280px;
  }
  .map-content {
    margin-top: 24px;
    text-align: center;
  }
  .map-content .gold-line {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .map-image-wrap {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center center;
    min-height: 250px;
  }
}
.location-section {
  background: var(--grey-light);
  overflow: hidden;
}
.location-category {
  margin-bottom: 20px;
}
.location-category h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--green-deep);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-list li {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #e8e4dc;
  font-size: 12px;
  color: var(--grey-dark);
}
.location-list li:last-child {
  border-bottom: none;
}
.location-list li i {
  color: var(--gold);
  font-size: 12px;
  margin-right: 8px;
  min-width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.location-list li .loc-time {
  margin-left: auto;
  font-weight: 600;
  color: var(--green-deep);
  font-size: 11px;
  white-space: nowrap;
  padding-left: 8px;
}

@media (max-width: 575px) {
  .location-category {
    padding: 12px;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid #eee;
  }
  .location-category h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .location-list li {
    font-size: 11px;
    padding: 5px 0;
    gap: 4px;
  }
  .location-list li .loc-time {
    font-size: 10px;
  }
}

/* ============ BRAND LEGACY + COUNTER ============ */
.legacy-section {
  background: var(--white);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 25px 0;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-item .stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-mid);
  font-weight: 600;
}

@media (max-width: 575px) {
  .stat-item .stat-number {
    font-size: 28px;
  }
  .stat-grid {
    gap: 18px;
  }
  .stat-item .stat-label {
    font-size: 10px;
  }
}

/* ============ CONTACT ============ */
.contact-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.contact-section .deco-circle {
  position: absolute;
  border: 1px solid rgba(201, 168, 118, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-info-block p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.contact-info-block .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.contact-info-block .contact-item i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 3px;
}
.contact-info-block .contact-item a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
}
.contact-info-block .contact-item a:hover {
  color: var(--gold);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 3px;
  position: relative;
}
.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 3px;
}
.contact-form-wrapper > p {
  font-size: 13px;
  color: var(--grey-mid);
  margin-bottom: 14px;
}
.contact-form-wrapper .form-control,
.contact-form-wrapper .custom-select1 {
  background: var(--grey-light);
  border: 1px solid #e0ddd5;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--grey-dark);
  transition: all 0.3s ease;
  height: auto;
  width: 100%;
}
.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .custom-select1:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 118, 0.15);
  background: var(--white);
  outline: none;
}
.contact-form-wrapper .form-group {
  margin-bottom: 10px;
}
.contact-form-wrapper .form-check-label {
  font-size: 11px;
  color: var(--grey-mid);
}
.contact-form-wrapper .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* ============ FOOTER ============ */
.footer {
  background: #f5efe4;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.footer .footer-logo {
  margin-bottom: 30px;
}
.footer .footer-logo img {
  max-height: 110px;
  width: auto;
}
.footer .footer-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0 0 25px;
}
.footer .footer-text {
  color: #3a3a3a;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}
.footer .footer-text strong {
  color: #1a1a1a;
  font-weight: 700;
}
.footer .footer-developer a {
  color: var(--gold-dark, #b8894b);
  text-decoration: underline;
}
.footer .footer-developer a:hover {
  color: var(--gold, #c9a876);
}
.footer .copy-right {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.footer .copy-right p {
  color: #5a5a5a;
  font-size: 12px;
  margin-bottom: 0;
}
.footer .copy-right a {
  color: var(--gold-dark, #b8894b);
}
@media (max-width: 767px) {
  .footer {
    padding: 35px 0 20px;
  }
  .footer .footer-logo img {
    max-height: 80px;
  }
  .footer .footer-text {
    font-size: 12px;
    text-align: left;
  }
}
.disclaimer_text {
  color: var(--grey-mid) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

/* ============ MODALS ============ */
.modal-backdrop.show {
  opacity: 0.72;
  background: #0e0b08;
}
.modal-dialog {
  max-width: 440px;
}
.modal-content {
  border: none;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  box-shadow:
    0 40px 80px rgba(14, 11, 8, 0.45),
    0 14px 40px rgba(14, 11, 8, 0.25),
    inset 0 0 0 1px rgba(201, 168, 118, 0.2);
}
.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  z-index: 2;
}
.modal-content::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 168, 118, 0.22);
  border-radius: 3px;
  pointer-events: none;
  z-index: 0;
}
.modal-body {
  padding: 38px 32px 30px;
  position: relative;
  z-index: 1;
}
.modal-body::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 14px;
  box-shadow:
    0 0 0 3px var(--cream),
    0 0 0 4px var(--gold);
  border-radius: 1px;
}
.modal-body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--onyx);
  margin-bottom: 4px;
  text-align: center;
  letter-spacing: -0.01em;
}
.modal-body p {
  font-size: 12px;
  color: var(--grey-mid);
  margin-bottom: 22px;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.modal-body .form-control,
.modal-body .custom-select {
  background: var(--white);
  border: 1px solid rgba(26, 22, 19, 0.12);
  border-radius: 3px;
  padding: 13px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--grey-dark);
  height: auto;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(26, 22, 19, 0.03);
}
.modal-body .form-control::placeholder {
  color: #a8a095;
  font-size: 13px;
}
.modal-body .form-control:focus,
.modal-body .custom-select:focus {
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(201, 168, 118, 0.15),
    inset 0 1px 2px rgba(26, 22, 19, 0.03);
  outline: none;
  background: var(--white);
}
.modal-body .form-group {
  margin-bottom: 12px;
}
.modal-body .input-group {
  width: 100%;
}
.modal-body .input-group .input-group-addon {
  display: none;
}
.modal-body .form-check {
  padding-left: 1.6em;
  margin-top: 6px;
}
.modal-body .form-check-input {
  border-color: rgba(26, 22, 19, 0.25);
}
.modal-body .form-check-label {
  font-size: 11px;
  color: var(--grey-mid);
  line-height: 1.5;
}
.modal-body .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}
.modal-body .form-btn,
.modal-body .round-btn {
  width: 100%;
  background: var(--grad-onyx);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px;
  border: 1px solid var(--onyx);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-top: 14px;
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(14, 11, 8, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.modal-body .form-btn::before,
.modal-body .round-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(228, 200, 146, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
.modal-body .form-btn:hover::before,
.modal-body .round-btn:hover::before {
  transform: translateX(120%);
}
.modal-body .form-btn:hover,
.modal-body .round-btn:hover {
  background: var(--grad-gold);
  color: var(--onyx);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--cream);
  opacity: 0.85;
  box-shadow: 0 2px 8px rgba(14, 11, 8, 0.15);
  border: 1px solid rgba(201, 168, 118, 0.3);
  transition: all 0.3s ease;
}
.btn-close:hover {
  opacity: 1;
  background-color: var(--gold);
  transform: rotate(90deg);
}
@media (max-width: 575px) {
  .modal-body {
    padding: 32px 22px 24px;
  }
  .modal-body h3 {
    font-size: 20px;
  }
}

/* ============ DESKTOP FIXED ENQUIRE CTA (side-anchored, vertical text) ============ */
.interested {
  position: fixed;
  right: 0;
  top: 70%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  z-index: 1040;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 22px 14px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  color: var(--onyx) !important;
  background: var(--gold) !important;
  border: none !important;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(14, 11, 8, 0.25);
  transition: all 0.3s ease;
  animation: enquirePulse 2s infinite;
}
.interested:hover {
  background: var(--onyx) !important;
  color: var(--gold) !important;
}
.interested .f-icon {
  font-size: 14px;
  color: inherit;
}

@keyframes enquirePulse {
  0% {
    box-shadow: 0 8px 24px rgba(14, 11, 8, 0.25), 0 0 0 0 rgba(201, 168, 118, 0.5);
  }
  70% {
    box-shadow: 0 8px 24px rgba(14, 11, 8, 0.25), 0 0 0 12px rgba(201, 168, 118, 0);
  }
  100% {
    box-shadow: 0 8px 24px rgba(14, 11, 8, 0.25), 0 0 0 0 rgba(201, 168, 118, 0);
  }
}

/* ============ MOBILE: compact .interested side button ============ */
@media (max-width: 991px) {
  .interested {
    padding: 14px 8px;
    font-size: 10px;
    letter-spacing: 1px;
    gap: 6px;
    animation: none;
  }
  .interested .f-icon {
    font-size: 12px;
  }
  .interested:hover { transform: none; }
}

/* ============ MOBILE FIXED ENQUIRE BAR (legacy wrapper — hidden, we rely on .interested) ============ */
.fixed-footer-cust { display: none !important; }

/* Add bottom padding so content isn't hidden behind mobile bar */
@media (max-width: 991px) {
  body {
    padding-bottom: 60px;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 118, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(201, 168, 118, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 118, 0);
  }
}
.pulseanimation {
  animation: pulse 2s infinite;
}

#pageloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 22, 19, 0.92);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
#pageloader img {
  max-width: 80px;
}

/* ============ THANK YOU ============ */
.sec-thankyou {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--grey-light);
}
.sec-thankyou .wrap {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}
.sec-thankyou .msgicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  font-size: 36px;
  margin-bottom: 25px;
}
.sec-thankyou .oops {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.sec-thankyou .oops span {
  color: var(--gold);
}
.sec-thankyou .oops-greet {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--green-deep);
}
.sec-thankyou .oops-subtitle {
  font-size: 15px;
  color: var(--grey-mid);
  margin-bottom: 30px;
}
.sec-thankyou .go-home {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

#disclaimer-modal .modal-body {
  max-height: 70vh;
  overflow-y: auto;
}

.rera-info {
  background: rgba(201, 168, 118, 0.08);
  border: 1px solid rgba(201, 168, 118, 0.15);
  padding: 14px 18px;
  border-radius: 3px;
  margin-top: 18px;
}
.rera-info p {
  font-size: 12px;
  color: var(--grey-mid);
  margin-bottom: 0;
}
.rera-info strong {
  color: var(--green-deep);
}
.contact-section .rera-info {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 118, 0.12);
}
.contact-section .rera-info p {
  color: rgba(255, 255, 255, 0.5);
}
.contact-section .rera-info strong {
  color: var(--gold);
}

.brochure {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  border: 2px solid var(--gold) !important;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}
.brochure:hover {
  background: transparent !important;
  color: var(--gold) !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 998;
}
.whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.whatsapp-float img:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 70px;
    right: 15px;
  }
  .whatsapp-float img {
    width: 45px;
    height: 45px;
  }
}

/* ============ MOBILE BOTTOM PADDING & SIDE OVERLAP FIX ============ */
@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }
  /* Prevent Enquire Now side button from overlapping section content */
  section .container {
    padding-right: max(12px, calc(env(safe-area-inset-right) + 12px));
  }
}

/* ============ TRUSTED DEVELOPERS / LEGACY LOGOS ============ */
.legacy-section {
  background: #ffffff;
  position: relative;
}
.legacy-section .legacy-subtitle {
  color: #6b6b6b;
  font-size: 15px;
  margin: 0;
}
.legacy-section .row {
  align-items: stretch;
}
.legacy-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
}
.legacy-logo-card:hover {
  transform: translateY(-3px);
}
.legacy-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 90px;
  height: auto;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}
.legacy-section .col-md-4:not(:last-child) .legacy-logo-card::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(26, 22, 19, 0.25) 20%, rgba(26, 22, 19, 0.25) 80%, transparent);
}
@media (max-width: 767px) {
  .legacy-logo-card {
    height: 160px;
    padding: 16px 18px;
  }
  .legacy-logo-card img {
    max-height: 120px;
  }
  .legacy-section .col-md-4:not(:last-child) .legacy-logo-card::after {
    display: none;
  }
}

/* ============ STATIC BOTTOM LEAD CAPTURE ============ */
.lead-capture-section {
  background: var(--grad-onyx);
  position: relative;
  color: var(--ivory);
  overflow: hidden;
}
.lead-capture-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.lead-capture-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 118, 0.28);
  border-radius: 8px;
  padding: 48px 44px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(201, 168, 118, 0.1);
}
.lead-capture-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 8px 8px 0 0;
}
.lead-capture-section .section-tag {
  color: var(--gold);
}
.lead-capture-section .section-title {
  color: var(--ivory);
}
.lead-capture-section .gold-line {
  background: var(--gold);
}
.lead-capture-section p {
  color: rgba(246, 239, 224, 0.75);
}
.lead-capture-section .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 118, 0.25);
  border-radius: 3px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ivory);
  transition: all 0.3s ease;
  width: 100%;
}
.lead-capture-section .form-control::placeholder {
  color: rgba(246, 239, 224, 0.5);
}
.lead-capture-section .form-control:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.15);
  outline: none;
  color: var(--ivory);
}
.lead-capture-section .form-check-label {
  color: rgba(246, 239, 224, 0.72);
  font-size: 12px;
}
.lead-capture-section .form-check-input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 118, 0.35);
}
.lead-capture-section .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}
.lead-capture-section .lead-capture-btn {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 44px;
  background: var(--grad-gold);
  color: var(--onyx);
  border: 1px solid var(--gold-light);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 12px 28px rgba(201, 168, 118, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.lead-capture-section .lead-capture-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(201, 168, 118, 0.45);
}
@media (max-width: 767px) {
  .lead-capture-wrapper {
    padding: 32px 22px;
  }
  .lead-capture-section .section-title {
    font-size: 28px;
  }
  .lead-capture-section .lead-capture-btn {
    width: 100%;
    padding: 14px 20px;
  }
}

/* ============ CONTACT VISUAL BLOCK (replaces form in Get In Touch) ============ */
.contact-visual-block {
  padding: 20px 0;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}
.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 118, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.contact-point:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 118, 0.4);
  transform: translateX(4px);
}
.contact-point > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--onyx);
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(201, 168, 118, 0.3);
}
.contact-point > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-point strong {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-point a,
.contact-point span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
}
.contact-point a:hover {
  color: var(--gold-light);
}
.contact-cta-note {
  padding: 14px 18px;
  background: rgba(201, 168, 118, 0.08);
  border-left: 3px solid var(--gold);
  color: rgba(246, 239, 224, 0.8) !important;
  font-size: 13px;
  margin: 0;
}
.contact-cta-note strong { color: var(--gold); }
@media (max-width: 767px) {
  .contact-section .row {
    flex-direction: column;
  }
  .contact-info-block {
    text-align: center;
    margin-bottom: 20px;
  }
  .contact-info-block .contact-item {
    justify-content: center;
    text-align: left;
  }
  .contact-point { padding: 16px 18px; gap: 14px; }
  .contact-point > i { width: 40px; height: 40px; font-size: 14px; }
  .contact-point a, .contact-point span { font-size: 15px; }
  .contact-cta-note {
    font-size: 12px;
    padding: 12px 14px;
  }
}

/* ============ STICKY BOTTOM REGISTER FORM ============ */
.sticky-register-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1045;
  background: var(--grad-onyx);
  border-top: 1px solid rgba(201, 168, 118, 0.35);
  box-shadow: 0 -12px 36px rgba(14, 11, 8, 0.45);
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-register-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}
.sticky-register-bar.is-collapsed {
  transform: translateY(calc(100% - 44px));
}
.sticky-register-bar .container-fluid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.sticky-register-grid {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sticky-register-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(201, 168, 118, 0.22);
  margin-right: 6px;
}
.sticky-register-title .sr-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.sticky-register-title strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
  max-width: 220px;
}
.sticky-register-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  flex: 1;
}
.sticky-register-bar .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 118, 0.25);
  border-radius: 3px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ivory);
  width: 100%;
  transition: all 0.3s ease;
}
.sticky-register-bar .form-control::placeholder {
  color: rgba(246, 239, 224, 0.55);
}
.sticky-register-bar .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.15);
  outline: none;
}
.sticky-register-btn {
  padding: 12px 30px;
  background: var(--grad-gold);
  color: var(--onyx);
  border: 1px solid var(--gold-light);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(201, 168, 118, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.sticky-register-btn:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(201, 168, 118, 0.45);
}
.sticky-register-toggle {
  position: absolute;
  top: -18px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--onyx);
  border: 1px solid var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(14, 11, 8, 0.35);
  transition: transform 0.3s ease;
  z-index: 2;
}
.sticky-register-bar.is-collapsed .sticky-register-toggle i {
  transform: rotate(180deg);
}
/* Offset the side Enquire Now CTA above sticky bar on desktop */

/* Tablet/mobile: hide sticky register bar */
@media (max-width: 991px) {
  .sticky-register-bar { display: none !important; }
}

/* ============ ELEVATION RENDER SECTION ============ */
.elevation-section {
  background: var(--grey-light);
  overflow: hidden;
}
.elevation-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.elevation-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}
@media (max-width: 767px) {
  .elevation-img {
    max-height: none;
  }
}
