/* ==================== General Sans (self-hosted for reliable loading) ==================== */
@font-face {
  font-family: "General Sans";
  src: url(../fonts/GeneralSans-200.woff2) format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url(../fonts/GeneralSans-300.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url(../fonts/GeneralSans-400.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url(../fonts/GeneralSans-500.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url(../fonts/GeneralSans-600.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url(../fonts/GeneralSans-700.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==================== Reset & Base ==================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
img,
video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@font-face {
  font-family: "GT-Ultra-Median-Regular";
  font-weight: 500;
  font-style: normal;
  src: url(../fonts/GT-Ultra-Median-Regular.otf);
}
@font-face {
  font-family: "Gambetta-Medium";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/Gambetta-Medium.otf);
}
@font-face {
  font-family: "CorporateS-Regular";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/CorporateS-Regular.otf);
}

:root {
  --gold: #000000;
  --gold-dark: #000000;
  --gold-light: #333333;
  --dark: #000000;
  --text: #1a1a1a;
  --text-light: #666666;
  --bg-cream: #ffffff;
  --bg-light: #ebebeb;
  --border-light: #e0e0e0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}
body::-webkit-scrollbar {
  width: 5px;
  background: #f5f5f5;
}
body::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

body {
  background-color: #fff;
  color: var(--text);
  font-family: "General Sans", sans-serif !important;
  font-weight: 400;
  overflow-x: hidden !important;
  max-width: 100vw;
  line-height: 1.6;
}

html.lenis,
html.lenis body {
  overflow-x: hidden !important;
}
.lenis.lenis-smooth {
  overflow-x: hidden !important;
}

/* ==================== Section Titles ==================== */
.ameni_div {
  margin-bottom: 10px;
}

.ameni_div h2 {
  font-family: "General Sans", sans-serif;
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 5px;
}
.ameni_div h3 {
  font-family: "General Sans", sans-serif;
  font-size: clamp(30px, 3.2vw, 46px);
  color: var(--dark);
  text-align: center;
  font-weight: 500;
}
.ameni_div p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-light);
  text-align: center;
  padding-top: 8px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==================== Checkbox ==================== */
.dis-font {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #777;
}
.dis-font input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  margin: 0;
}

/* ==================== Navbar ==================== */
.fix_head {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  /* Premium black glass effect */
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Hidden by default while the hero banner is in view. */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}
/* Revealed once the user scrolls away from the very top. */
.sticky .fix_head {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  padding: 6px 0;
  background: rgba(10, 10, 10, 0.72);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.fix_head .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* Left / right columns share equal flex so the center nav sits dead-centre */
.nav-left,
.nav-actions {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.nav-left {
  justify-content: flex-start;
}
.nav-actions {
  justify-content: flex-end;
  gap: 14px;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  /* Flex items refuse to shrink past their content by default, which let the
     wide logo push out of .nav-left and get clipped. */
  min-width: 0;
  max-width: 100%;
}
/* Sized by max-height/max-width against an auto-sized image, not a fixed
   height. Both caps preserve the aspect ratio, so the logo scales down to fit
   whatever room the bar has instead of being clipped or squashed. */
.navbar-brand img {
  width: auto;
  height: auto;
  max-height: clamp(34px, 3.4vw, 44px);
  max-width: 100%;
  transition: max-height 0.3s;
}
/* Below lg the centre nav is hidden, so the equal-halves split just starves
   the logo. Give it the space the hamburger doesn't need. */
@media (max-width: 991.98px) {
  .nav-left {
    flex: 1 1 auto;
  }
  .nav-actions {
    flex: 0 0 auto;
  }
}

.navbar-project-logo img {
  height: clamp(38px, 4.2vw, 50px);
  width: auto;
  transition: height 0.3s;
}

/* Center column */
.desktop-nav {
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}
.nav-cta {
  font-family: "General Sans", sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.82);
  padding: 10px 24px;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.nav-cta:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.desktop-nav .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}
.desktop-nav .nav-item a {
  font-family: "General Sans", sans-serif;
  font-size: clamp(14px, 1.15vw, 17px);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 8px clamp(8px, 0.9vw, 14px);
  position: relative;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}
.desktop-nav .nav-item a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}
.desktop-nav .nav-item a:hover {
  color: #fff;
}
.desktop-nav .nav-item a:hover::after,
.desktop-nav .nav-item.active a::after {
  transform: translateX(-50%) scaleX(1);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger:hover .hamburger-line {
  background: rgba(255, 255, 255, 0.7);
}

/* Offcanvas */
.offcanvas-menu {
  width: min(84vw, 320px) !important;
  background: #fff;
  border-left: none;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.14);
}
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
}
/* The logo lockup is a wide horizontal one (~5.25:1), so height is kept low
   enough that it still clears the close button inside a 269px panel on a
   320px-wide phone. max-width stops it pushing the button off the edge. */
.offcanvas-logo img {
  height: 30px;
  width: auto;
  max-width: 100%;
}
.btn-close-custom {
  background: none;
  border: 1px solid var(--border-light);
  font-size: 16px;
  color: #666;
  cursor: pointer;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.btn-close-custom:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
/* Body fills the remaining height (Bootstrap makes it flex:1); nav sits at
   the top, the CTA block is pinned to the bottom. */
.offcanvas-body {
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
}
.offcanvas-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offcanvas-nav li {
  border-bottom: 1px solid #eee;
}
.offcanvas-link {
  display: block;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.offcanvas-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s;
}
.offcanvas-link:hover {
  color: var(--gold);
  background: var(--bg-cream);
  padding-left: 30px;
}
.offcanvas-link:hover::before {
  transform: scaleY(1);
}
.offcanvas-cta {
  margin-top: auto; /* pins the CTA block to the bottom of the menu */
  padding: 18px 22px calc(18px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offcanvas-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s ease;
}
.offcanvas-btn:hover,
a.offcanvas-btn:hover {
  color: #fff;
}
.offcanvas-btn:hover {
  background: var(--gold-dark);
}
.offcanvas-btn:active {
  transform: scale(0.99);
}
.offcanvas-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: all 0.3s;
}
.offcanvas-phone:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.offcanvas-phone i {
  color: var(--gold);
}
.offcanvas-backdrop.show {
  opacity: 0.3;
}
.term-dis {
  display: flex;
  justify-content: center;
  cursor: pointer;
  gap: 3px;
}

/* ==================== Hero Banner ==================== */
.hero__banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background-image: url("../images/slider/banner.jpeg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
/* Subtle top + bottom darkening so white text stays legible */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Flat black tint + a gradient that darkens the top and bottom edges
     so the white hero text stays legible over any part of the image. */
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 35%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.hero__banner .container {
  position: relative;
  z-index: 2;
  display: flex;
}
.hero-content {
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  /* Top padding clears the fixed header; bottom padding balances so the
     text group lands at the true vertical middle of the banner. */
  padding-top: clamp(96px, 12vh, 140px);
  padding-bottom: clamp(28px, 5vh, 60px);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.25);
}

/* Top group — centered vertically & horizontally in the banner */
.hero-top {
  flex: 0 0 auto;
  margin-top: auto; /* pairs with .hero-info margin-top:auto to center this block */
  text-align: center;
}
.hero-title {
  font-family: "General Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 3.2vw, 44px);
  letter-spacing: clamp(3px, 0.6vw, 9px);
  line-height: 1.12;
  margin: 0 0 clamp(10px, 1.4vw, 18px);
  text-indent: clamp(3px, 0.6vw, 9px); /* balance right-side letter-spacing */
}
.hero-subtitle {
  font-family: "General Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 19px);
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* Framed emblem */
.hero-emblem {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 6vw, 88px);
}
.emblem-frame {
  position: relative;
  width: 100%;
  max-width: min(88%, 500px);
  padding: 0 clamp(18px, 2.4vw, 30px) clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-top: 0;
}
.emblem-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
}
.emblem-line {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}
.emblem-label {
  flex: 0 0 auto;
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 1vw, 15px);
  letter-spacing: clamp(3px, 0.5vw, 7px);
  color: #fff;
  text-indent: clamp(3px, 0.5vw, 7px);
}
.emblem-name {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.8vw, 37px);
  letter-spacing: clamp(3px, 0.45vw, 7px);
  line-height: 1;
  margin: 0;
  padding: clamp(24px, 3.2vw, 38px) 0 0;
  text-indent: clamp(3px, 0.45vw, 7px);
  white-space: nowrap;
}

/* Bottom info bar */
.hero-info {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 40px);
  padding-top: clamp(30px, 5vh, 60px);
}
.hero-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-info-item .info-label {
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 300;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
}
.hero-info-item .info-main {
  font-family: "General Sans", sans-serif;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #fff;
  white-space: nowrap;
}
.hero-info-item .info-main i {
  font-size: 0.85em;
  margin-right: 5px;
}
.hero-divider {
  width: 1px;
  align-self: stretch;
  min-height: 42px;
  background: rgba(255, 255, 255, 0.4);
}
.hero-btn {
  background: #000;
  color: #fff;
  border: none;
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.15vw, 17px);
  letter-spacing: clamp(2px, 0.35vw, 4px);
  padding: clamp(14px, 1.5vw, 20px) clamp(22px, 2.6vw, 40px);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  text-indent: clamp(2px, 0.35vw, 4px);
}
.hero-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px) {
  .hero__banner {
    min-height: 92vh;
    background-position: center bottom;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero__banner {
    min-height: 88vh;
  }
  .hero-content {
    padding-top: clamp(90px, 16vh, 130px);
  }
  .hero-title {
    letter-spacing: 3px;
    text-indent: 3px;
  }
  .hero-emblem {
    margin-top: 34px;
  }
  .emblem-frame {
    /* Hug the text instead of stretching across the screen */
    width: fit-content;
    max-width: 92%;
    margin: 0 auto;
    padding: 0 clamp(22px, 7vw, 34px) clamp(18px, 5vw, 28px);
  }
  .emblem-name {
    font-size: clamp(22px, 6.4vw, 30px);
    letter-spacing: 2px;
    text-indent: 2px;
    padding-top: clamp(22px, 6vw, 34px);
  }
  .emblem-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  /* Stack the info bar into a tidy centered column on phones */
  .hero-info {
    gap: 14px;
    row-gap: 14px;
  }
  .hero-divider {
    display: none;
  }
  .hero-info-item {
    flex: 0 0 auto;
  }
  .hero-btn {
    margin-top: 4px;
  }
}

/* ==================== Overview + Form ==================== */
.over__sec {
  width: 100%;
  position: relative;
  padding: clamp(40px, 5vw, 80px) 0;
  background: #ffffff;
}
.over_box {
  padding-left: clamp(0px, 2vw, 30px);
}
.over_box .over-heading,
h2.over-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.22;
  color: var(--dark);
  margin-bottom: clamp(22px, 2.4vw, 34px);
}
.over_box p {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: clamp(18px, 1.6vw, 24px);
}
.over_box p strong {
  color: var(--dark);
  font-weight: 600;
}

/* Light luxury form card */
.overview-form-wrapper {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: clamp(34px, 3.2vw, 52px) clamp(26px, 2.6vw, 42px);
  border-radius: 18px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overview-form-wrapper h4 {
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.4px;
  color: var(--dark);
  text-align: center;
  margin: 0;
}
/* Flourish under the heading */
.overview-form-wrapper h4::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: #000;
  margin: 14px auto clamp(28px, 2.6vw, 40px);
}
.form-sub {
  text-align: center;
  font-size: clamp(14px, 1.15vw, 17px);
  color: var(--gold);
  margin-bottom: clamp(15px, 1.5vw, 22px);
  font-weight: 500;
}
/* Underline inputs with floating labels */
.lux-field {
  position: relative;
  margin-bottom: clamp(22px, 2.2vw, 30px);
}
.overview-form-wrapper .form-control {
  border: none !important;
  border-bottom: 1px solid #d5d5d5 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 10px 2px !important;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: var(--dark) !important;
  transition: border-color 0.3s ease !important;
}
.overview-form-wrapper .form-control:focus {
  border-bottom-color: #000 !important;
  box-shadow: none !important;
}
/* The floating label sits over the field, then glides up */
.lux-label {
  position: absolute;
  left: 2px;
  top: 10px;
  font-family: "General Sans", sans-serif;
  font-size: 15px;
  color: #9a9a9a;
  letter-spacing: 0.2px;
  pointer-events: none;
  transition: all 0.25s ease;
}
.overview-form-wrapper .form-control:focus + .lux-label,
.overview-form-wrapper .form-control:not(:placeholder-shown) + .lux-label {
  top: -11px;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #000;
}
/* Consent line */
.overview-form-wrapper .dis-font {
  align-items: flex-start;
  gap: 9px;
  font-size: 11.5px;
  line-height: 1.55;
  color: #8a8a8a;
  text-align: left;
  margin-top: 4px;
}
.overview-form-wrapper .dis-font input {
  margin-top: 2px;
}
/* Full-width uppercase submit */
.overview-form-wrapper .sub_btn {
  width: 100%;
  border-radius: 4px;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.overview-usps {
  margin-top: 15px;
}
.usp-item {
  text-align: center;
  padding: clamp(10px, 1vw, 15px) clamp(6px, 0.6vw, 10px);
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.usp-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.usp-item strong {
  display: block;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--gold);
  font-family: "General Sans", sans-serif;
}
.usp-item span {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.down_btn {
  width: fit-content;
  padding: clamp(10px, 0.9vw, 12px) clamp(20px, 2vw, 30px);
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  margin-left: clamp(0px, 2vw, 30px);
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}
.down_btn:hover {
  background: var(--gold);
}
.down_btn:hover h2 {
  color: #fff;
}

.down_btn h2 {
  font-family: "General Sans", sans-serif;
  font-size: clamp(15px, 1.25vw, 18px);
  color: var(--gold);
  text-align: center;
  margin: 0;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.down_btn img {
  width: 14px;
  margin-left: 6px;
}

/* ==================== Essence / Living Philosophy ==================== */
.essence__sec {
  width: 100%;
  background: #faf3e8;
  padding: clamp(50px, 6vw, 100px) 0;
}
/* Heading matches the Overview section formatting */
.essence-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--dark);
  max-width: 900px;
  margin: 0 auto clamp(38px, 4.5vw, 66px);
}
.essence-card {
  text-align: left;
}
/* The image is an <a> that opens the render in Fancybox */
.essence-card-img {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 14px;
  overflow: hidden;
  background-color: #e9e0d2; /* graceful fallback until the render is added */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: zoom-in;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
/* The zoom rides on a pseudo-element rather than the card's own
   background-size. Animating background-size re-rasterises a ~500KB render on
   every frame; a transform on its own layer is composited on the GPU, which is
   what .gal-photo and .master-img already do. `inherit` picks up the image from
   the element's inline style, so the markup needs no extra wrapper. */
.essence-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.6s ease;
}
.essence-card-img:hover::before,
.essence-card-img:focus-visible::before {
  transform: scale(1.06);
}
.essence-card-img:hover,
.essence-card-img:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}
.essence-card-img:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}
/* Expand badge — the click affordance, top-right of the image */
.essence-card-zoom {
  position: absolute;
  top: clamp(12px, 1.2vw, 18px);
  right: clamp(12px, 1.2vw, 18px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark, #1a1a1a);
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.essence-card-img:hover .essence-card-zoom,
.essence-card-img:focus-visible .essence-card-zoom {
  opacity: 1;
  transform: scale(1);
}
/* Touch devices never hover, so keep the badge visible there */
@media (hover: none) {
  .essence-card-zoom {
    opacity: 1;
    transform: scale(1);
  }
  .essence-card-img:hover,
  .essence-card-img:focus-visible {
    transform: none;
    box-shadow: none;
  }
  .essence-card-img:hover::before,
  .essence-card-img:focus-visible::before {
    transform: none;
  }
}
.essence-card-title {
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 1.5vw, 23px);
  letter-spacing: 0.2px;
  color: var(--dark);
  margin: clamp(18px, 1.8vw, 26px) 0 clamp(9px, 1vw, 13px);
}
.essence-card-text {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}
/* Mobile prev/next arrows — overlaid and centred on the card image.
   The nav strip mirrors the image's 5:4 ratio so the buttons land
   exactly on the middle of the photo. */
.essence-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  margin: 0 !important;
  pointer-events: none;
}
.essence-carousel .owl-nav button.owl-prev,
.essence-carousel .owl-nav button.owl-next {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #111 !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
}
.essence-carousel .owl-nav button.owl-prev:hover,
.essence-carousel .owl-nav button.owl-next:hover {
  background: #111 !important;
  color: #fff !important;
  transform: scale(1.06);
}
.essence-carousel .owl-nav button.disabled {
  opacity: 0.4;
}
/* Owl flags the whole nav as .disabled when nav:false (tablet/desktop) */
.essence-carousel .owl-nav.disabled {
  display: none !important;
}

/* Carousel dots (shown on mobile) */
.essence-carousel .owl-dots {
  text-align: center;
  margin-top: 26px;
}
.essence-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #d8cdbb;
  transition: all 0.3s;
}
.essence-carousel .owl-dots .owl-dot.active span,
.essence-carousel .owl-dots .owl-dot:hover span {
  background: #111;
  transform: scale(1.15);
}

/* ==================== Composition ==================== */
.compose__sec {
  width: 100%;
  background: #ffffff;
  padding: clamp(50px, 6vw, 100px) 0;
}
/* Heading matches the Overview section formatting (left aligned) */
.compose-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 clamp(32px, 4vw, 56px);
}
/* The card is an <a> that opens the render in Fancybox */
.compose-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 9;
  border-radius: 14px;
  overflow: hidden;
  background-color: #e9e0d2; /* fallback until the render is added */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  cursor: zoom-in;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
/* Zoom layer — see the note on .essence-card-img::before. Painted between the
   card background and the ::after scrim, so the text stays unaffected. */
.compose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.6s ease;
}
.compose-card:hover::before,
.compose-card:focus-visible::before {
  transform: scale(1.06);
}
.compose-card:hover,
.compose-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}
.compose-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}
/* Scrim so the overlaid text stays legible on any image */
.compose-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.3) 32%,
    rgba(0, 0, 0, 0) 58%
  );
  transition: background 0.45s ease;
}
.compose-card:hover::after,
.compose-card:focus-visible::after {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.36) 38%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
/* Expand badge — the click affordance, top-right of the card */
.compose-card-zoom {
  position: absolute;
  top: clamp(12px, 1.2vw, 18px);
  right: clamp(12px, 1.2vw, 18px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark, #1a1a1a);
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.compose-card:hover .compose-card-zoom,
.compose-card:focus-visible .compose-card-zoom {
  opacity: 1;
  transform: scale(1);
}
/* Touch devices never hover, so keep the badge visible there */
@media (hover: none) {
  .compose-card-zoom {
    opacity: 1;
    transform: scale(1);
  }
  .compose-card:hover,
  .compose-card:focus-visible {
    transform: none;
    box-shadow: none;
  }
  .compose-card:hover::before,
  .compose-card:focus-visible::before {
    transform: none;
  }
}
.compose-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(18px, 1.7vw, 26px);
  color: #fff;
}
/* Content sizes match the Overview section body copy */
.compose-card-title {
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.15vw, 18px);
  letter-spacing: 0.2px;
  color: #fff;
  margin: 0 0 5px;
}
.compose-card-text {
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}
/* Mobile prev/next arrows — centred on the card */
.compose-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 10 / 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  margin: 0 !important;
  pointer-events: none;
}
.compose-carousel .owl-nav button.owl-prev,
.compose-carousel .owl-nav button.owl-next {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #111 !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
}
.compose-carousel .owl-nav button.owl-prev:hover,
.compose-carousel .owl-nav button.owl-next:hover {
  background: #111 !important;
  color: #fff !important;
  transform: scale(1.06);
}
.compose-carousel .owl-nav button.disabled {
  opacity: 0.4;
}
.compose-carousel .owl-nav.disabled {
  display: none !important;
}
.compose-carousel .owl-dots {
  text-align: center;
  margin-top: 24px;
}
.compose-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #d5d5d5;
  transition: all 0.3s;
}
.compose-carousel .owl-dots .owl-dot.active span,
.compose-carousel .owl-dots .owl-dot:hover span {
  background: #111;
  transform: scale(1.15);
}

/* ==================== Master Plan ==================== */
.master__sec {
  width: 100%;
  /* Warm greige wash + a soft top-left glow so it reads distinctly
     from the plain white Composition section above it. */
  background:
    radial-gradient(
      1100px 480px at 12% 0%,
      rgba(0, 0, 0, 0.04),
      transparent 62%
    ),
    linear-gradient(180deg, #f6f3ed 0%, #fbf9f6 60%, #fdfcfa 100%);
  padding: clamp(50px, 6vw, 100px) 0;
}
/* Heading + sub match the Overview section formatting */
.master-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 10px;
}
.master-sub {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 clamp(28px, 3.4vw, 48px);
}
/* Blurred, click-to-unlock master plan (opens the enquiry modal) */
.master-img-wrap {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #fafafa;
  cursor: pointer;
}
.master-img {
  display: block;
  width: 100%;
  /* Capped so the plan sits balanced against the legend column */
  max-height: clamp(300px, 40vw, 480px);
  object-fit: contain;
  /* Slight scale hides the soft edges the blur would otherwise expose */
  filter: blur(6px);
  transform: scale(1.04);
  transition:
    filter 0.4s ease,
    transform 0.5s ease;
}
.master-img-wrap:hover .master-img {
  filter: blur(4px);
  transform: scale(1.06);
}
.master-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease;
}
.master-img-wrap:hover .master-lock {
  background: rgba(255, 255, 255, 0.5);
}
.master-lock i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}
.master-img-wrap:hover .master-lock i {
  transform: scale(1.06);
}
.master-lock span {
  font-family: "General Sans", sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #111;
}
/* Legend */
.legend-title {
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--dark);
  margin: 0 0 clamp(16px, 1.7vw, 22px);
}
/* Two columns of 8 at every breakpoint via the Bootstrap grid */
.legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.legend-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: clamp(11px, 1.1vw, 14px);
}
.legend-num {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.legend-text {
  font-size: clamp(13px, 0.85vw, 15px);
  color: var(--text-light);
  line-height: 1.45;
  padding-top: 3px;
}
/* Tighten so the 8 + 8 split stays comfortable on small screens */
@media (max-width: 575px) {
  .legend-list li {
    gap: 8px;
    margin-bottom: 13px;
  }
  .legend-num {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
  .legend-text {
    font-size: 13.5px;
    line-height: 1.4;
    padding-top: 3px;
  }
}

/* ==================== Floor Plans ==================== */
.fp__sec {
  width: 100%;
  background: #ffffff;
  padding: clamp(50px, 6vw, 100px) 0;
}
/* Heading + sub match the Overview section formatting */
.fp-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 10px;
}
.fp-sub {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 clamp(24px, 2.6vw, 34px);
}
/* Tabs */
.fp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 30px);
  margin-bottom: clamp(22px, 2.4vw, 32px);
  border-bottom: 1px solid transparent;
}
.fp-tab {
  position: relative;
  background: none;
  border: none;
  padding: 0 0 10px;
  font-family: "General Sans", sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400;
  color: #9a9a9a;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.fp-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #111;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.fp-tab:hover {
  color: #555;
}
.fp-tab.active {
  color: var(--dark);
  font-weight: 500;
}
.fp-tab.active::after {
  transform: scaleX(1);
}
/* Spec card */
.fp-panes {
  position: relative;
}
.fp-pane {
  display: none;
}
.fp-pane.active {
  display: block;
  animation: fpFade 0.35s ease;
}
@keyframes fpFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fp-card {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: clamp(22px, 2.2vw, 32px);
  background: #fff;
}
.fp-item + .fp-item {
  margin-top: clamp(20px, 2.2vw, 30px);
}
.fp-label {
  display: block;
  font-size: clamp(13px, 1vw, 15px);
  color: #8f8f8f;
  margin-bottom: 6px;
}
.fp-value {
  display: block;
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--dark);
  letter-spacing: 0.2px;
}
.fp-btn {
  margin-top: clamp(22px, 2.4vw, 34px);
  background: #1c1c1c;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 16px clamp(24px, 2.4vw, 36px);
  font-family: "General Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.fp-btn:hover {
  background: #000;
  transform: translateY(-1px);
}
/* Keep the CTA compact on phones */
@media (max-width: 575px) {
  .fp-btn {
    margin-top: 20px;
    padding: 13px 24px;
    font-size: 12px;
    letter-spacing: 2px;
  }
}
/* Right visuals */
.fp-visual {
  display: none;
}
.fp-visual.active {
  display: block;
}
.fp-slider {
  position: relative;
}
.fp-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.fp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.fp-slide.active {
  opacity: 1;
  visibility: visible;
}
/* Plans stay blurred until the user submits the form */
.fp-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(5px);
  transform: scale(1.02);
  transition: filter 0.4s ease;
}
.fp-slide:hover .fp-img {
  filter: blur(3.5px);
}
/* Dark pill pager — hidden */
.fp-pager {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: max-content;
  margin: clamp(16px, 1.8vw, 24px) auto 0;
  background: #1c1c1c;
  border-radius: 50px;
  padding: 6px;
  color: #fff;
}
.fp-arrow {
  background: none;
  border: none;
  color: #fff;
  width: 42px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  border-radius: 50px;
  transition:
    background 0.3s ease,
    opacity 0.3s ease;
}
.fp-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
}
.fp-count {
  font-family: "General Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 34px;
}
@media (max-width: 991px) {
  .fp-slides {
    aspect-ratio: 1 / 1;
  }
}

/* ==================== Highlights ==================== */
.high_sec {
  width: 100%;
  background: #ffffff;
  padding: clamp(50px, 5.5vw, 80px) 0;
  overflow: hidden;
}
.high_box {
  width: 100%;
  padding: clamp(14px, 1.2vw, 18px) clamp(16px, 1.5vw, 22px);
  border: none;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  margin-top: clamp(10px, 1vw, 16px);
  border-radius: 12px;
  transition: all 0.3s;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.high_box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.high_box img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(176deg) brightness(98%) contrast(102%);
  width: clamp(38px, 3.5vw, 48px) !important;
  height: clamp(38px, 3.5vw, 48px);
  object-fit: contain;
}
/* Project Highlights Mobile Carousel */
.project-carousel {
  position: relative;
  padding: 0 10px;
}
.project-carousel .item {
  padding: 8px;
}
.project-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  position: static;
}
.project-carousel .owl-nav button {
  position: static !important;
  width: 40px;
  height: 40px;
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: 50% !important;
  font-size: 15px !important;
  transition: all 0.3s;
  backdrop-filter: none;
}
.project-carousel .owl-nav button:hover {
  background: var(--gold-dark) !important;
}

.high_box p {
  font-size: clamp(14px, 1.15vw, 17px);
  color: var(--text);
  margin: 0;
}

/* ==================== Configuration ==================== */
.conf__sec {
  width: 100%;
  padding: clamp(50px, 5.5vw, 80px) 0;
  overflow: hidden;
  background: var(--bg-light);
  background: #fff;
}
/* Heading + sub match the Overview section formatting */
.conf-head {
  margin-bottom: clamp(24px, 2.8vw, 40px);
}
.conf-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 10px;
}
.conf-sub {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.config-table-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.07);
  background: #fff;
}
.config-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.config-table thead th {
  background: #0f0f0f;
  color: #fff;
  padding: clamp(15px, 1.4vw, 20px) clamp(10px, 1.2vw, 18px);
  font-family: "General Sans", sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  white-space: nowrap;
}
.config-table tbody td {
  padding: clamp(15px, 1.5vw, 22px) clamp(10px, 1.2vw, 18px);
  font-size: clamp(14px, 1.1vw, 16.5px);
  color: var(--text);
  background: #fff;
  border-bottom: 1px solid #eeeeee;
  white-space: nowrap;
  transition: background 0.25s ease;
}
.config-table tbody tr:last-child td {
  border-bottom: none;
}
.config-table tbody tr:hover td {
  background: #faf8f5;
}
.cfg-type {
  font-weight: 600;
  color: var(--dark);
}
.price-link {
  display: inline-block;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 2px;
  transition:
    border-color 0.3s ease,
    opacity 0.3s ease;
}
.price-link:hover {
  color: #111;
  border-color: #111;
  opacity: 0.75;
}

.config-scroll-hint {
  display: none;
}

/* ---- Mobile: stay a real table, scrolled sideways ---- */
@media (max-width: 767px) {
  .config-table-wrap {
    border-radius: 10px;
    /* Sticky cells need a scroll container, not a clipped one */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  }
  .config-table {
    /* Wider than the screen on purpose — the wrap scrolls */
    min-width: 540px;
  }
  .config-table thead th {
    padding: 13px 12px;
    font-size: 11px;
    letter-spacing: 1px;
  }
  .config-table tbody td {
    padding: 14px 12px;
    font-size: 13.5px;
  }
  /* Freeze Type so a row stays identifiable while scrolling */
  .config-table thead th:first-child,
  .config-table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    text-align: left;
  }
  .config-table thead th:first-child {
    background: #0f0f0f;
  }
  .config-table tbody td:first-child {
    background: #fff;
    box-shadow: 6px 0 8px -6px rgba(0, 0, 0, 0.16);
  }
  .config-table tbody tr:hover td {
    background: #fff;
  }
  .config-scroll-hint {
    display: block;
    margin: 10px 0 0;
    font-size: 11.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #9a9a9a;
    text-align: right;
  }
}

.nav-tabs {
  border-bottom: 2px solid #eee;
  width: fit-content;
  margin: 0 auto;
}
.nav-tabs .nav-link {
  font-size: clamp(17px, 1.5vw, 22px);
  color: #bbb;
  padding: 0.6rem clamp(1rem, 1.5vw, 2rem);
  border: none;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--dark);
  border: none;
  border-bottom: 3px solid var(--gold);
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: none;
  border-bottom: 3px solid var(--gold);
  color: var(--dark);
}

.config_wrap {
  border: 1px solid #eee;
  padding: clamp(20px, 2vw, 30px) 15px;
  margin-top: 15px;
  text-align: center;
  transition: all 0.4s;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.config_wrap:hover {
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}
.config_wrap h3,
.config_wrap h2 {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--dark);
  line-height: 1.5;
}
.config_wrap h4 {
  width: fit-content;
  font-size: clamp(14px, 1.15vw, 17px);
  color: #fff;
  padding: clamp(8px, 0.7vw, 10px) clamp(16px, 1.6vw, 24px);
  background: var(--gold);
  margin: 12px auto 0;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50px;
  border: none;
}
.config_wrap h4:hover {
  background: var(--gold-dark);
}
.config_line {
  height: 1px;
  background: #eee;
  width: 40px;
  margin: 12px auto;
}
.config_title {
  color: var(--gold);
}
.ameni h3 {
  font-family: "General Sans", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  text-align: center;
}

.masterplan-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.masterplan-bg {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.masterplan-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: clamp(14px, 1.2vw, 17px);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
  white-space: nowrap;
}
.masterplan-cta:hover {
  background: var(--gold);
}
.masterplan-cta i {
  margin-right: 8px;
}

.render-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
}
.render-image {
  width: 50%;
}
.render-content {
  width: 50%;
}
.gallery-card {
  width: 100%;
  height: clamp(220px, 28vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 12px;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.render-content li {
  margin-bottom: 8px;
  font-size: clamp(14px, 1.15vw, 17px);
  color: var(--text-light);
}
.list-wrapper {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}
.list-wrapper ul {
  width: 50%;
}

.flr_img {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.flr_img img {
  width: 100%;
  height: clamp(360px, 60vh, 560px);
  object-fit: contain;
  background: #fff;
  display: block;
  filter: blur(4px);
  transition: 0.3s;
}
.overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.15);
}
.enquire-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: clamp(10px, 1vw, 14px) clamp(20px, 2vw, 30px);
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  font-size: clamp(14px, 1.15vw, 17px);
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.enquire-btn:hover {
  background: var(--gold-dark);
}
.custom-card {
  position: relative;
  overflow: hidden;
}

/* ==================== Location ==================== */
.loc__sec {
  width: 100%;
  padding: clamp(50px, 6vw, 100px) 0;
  overflow: hidden;
  /* Warm off-white so it separates from the grey Amenities section above
     and the white FAQ section below */
  background: #f8f5f0;
}
/* Heading matches the Overview section formatting */
.loc-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 clamp(22px, 2.6vw, 36px);
}
/* ---- Accordion ---- */
.loc-item {
  /* Warm-toned divider so it stays visible on the #f8f5f0 background */
  border-bottom: 1px solid #ddd5c9;
}
.loc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  padding: clamp(16px, 1.6vw, 22px) 0;
  text-align: left;
  cursor: pointer;
}
.loc-ico {
  flex: 0 0 24px;
  width: 24px;
  text-align: center;
  font-size: clamp(15px, 1.25vw, 18px);
  color: #1a1a1a;
}
.loc-title {
  flex: 1 1 auto;
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--dark);
}
.loc-chev {
  flex: 0 0 auto;
  font-size: 13px;
  color: #333;
  transition: transform 0.3s ease;
}
/* Expanded = chevron down, collapsed = flipped up */
.loc-head.collapsed .loc-chev {
  transform: rotate(180deg);
}
/* ---- Points of interest ---- */
.loc-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: clamp(16px, 1.8vw, 24px);
  padding: 2px 0 clamp(18px, 2vw, 28px);
}
.loc-poi {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.loc-num {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-txt {
  display: block;
  min-width: 0;
  font-size: clamp(15px, 1.05vw, 16px);
  color: var(--text);
  line-height: 1.35;
}
.loc-txt em {
  display: block;
  font-style: normal;
  color: var(--text-light);
  margin-top: 2px;
}
/* ---- Map ---- */
.loc-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}
.loc-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.loc-map-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 2vw, 26px);
}
.loc-map-btn {
  display: inline-block;
  background: #1c1c1c;
  color: #fff;
  text-decoration: none;
  padding: 15px clamp(26px, 3vw, 44px);
  font-family: "General Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.loc-map-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}
.loc-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 12px;
  text-align: center;
}
/* Single column of POIs on small screens */
@media (max-width: 575px) {
  .loc-body {
    grid-template-columns: 1fr;
  }
  .loc-map {
    aspect-ratio: 1 / 1;
  }
  .loc-map-btn {
    padding: 13px 26px;
    font-size: 12px;
    letter-spacing: 2px;
  }
}
.accordion-item {
  border: none;
  background: transparent;
}
.accordion-button {
  background: transparent !important;
  border-bottom: 1px solid #e0dbd0;
  font-size: clamp(15px, 1.25vw, 18px);
  color: var(--text);
  padding: clamp(12px, 1.1vw, 16px) 0;
}
.accordion-button:not(.collapsed) {
  color: var(--gold);
  box-shadow: none;
}
.accordion-button:focus {
  border-bottom: 1px solid #e0dbd0 !important;
  box-shadow: none !important;
}
.accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
}
.accordion-body p {
  font-size: clamp(14px, 1.15vw, 17px);
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.accordion-body p span {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 15px;
}
.map_img {
  width: 100%;
  margin: 1.5rem 0;
}
.map_img img {
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}
.map_img p {
  font-size: 11px;
  color: #aaa;
  margin-top: 8px;
}

/* ==================== Gallery (new) ==================== */
.gal__sec {
  width: 100%;
  padding: clamp(50px, 6vw, 100px) 0;
  overflow: hidden;
  background: #ffffff;
}
/* Heading matches the Overview section formatting */
.gal-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 clamp(26px, 3vw, 44px);
}
.gal-card {
  width: 100%;
  aspect-ratio: 10 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #eeeeee;
}
/* The card's link fills it so the image keeps its object-fit sizing */
.gal-card > a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.gal-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal-card:hover .gal-photo {
  transform: scale(1.05);
}
/* Mobile prev/next arrows — centred on the card */
.gallery-slider .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 10 / 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  margin: 0 !important;
  pointer-events: none;
}
.gallery-slider .owl-nav button.owl-prev,
.gallery-slider .owl-nav button.owl-next {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #111 !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
}
.gallery-slider .owl-nav button.owl-prev:hover,
.gallery-slider .owl-nav button.owl-next:hover {
  background: #111 !important;
  color: #fff !important;
  transform: scale(1.06);
}
.gallery-slider .owl-nav.disabled {
  display: none !important;
}
.gallery-slider .owl-dots {
  text-align: center;
  margin-top: 24px;
}
.gallery-slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #d5d5d5;
  transition: all 0.3s;
}
.gallery-slider .owl-dots .owl-dot.active span,
.gallery-slider .owl-dots .owl-dot:hover span {
  background: #111;
  transform: scale(1.15);
}
/* Desktop shows a row of 4 cards but keeps sliding, so the arrows centre on
   that row rather than on the full-width mobile aspect box. */
@media screen and (min-width: 992px) {
  .gallery-slider .owl-nav {
    aspect-ratio: auto;
    top: 0;
    bottom: 44px; /* clears the dots row below the cards */
    padding: 0 8px;
  }
}

/* ==================== Amenities ==================== */
.ameni__sec {
  width: 100%;
  padding: clamp(50px, 6vw, 100px) 0;
  background: #ffffff;
  overflow: hidden;
}
/* Heading + sub match the Overview section formatting */
.ameni-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 10px;
}
.ameni-sub {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 clamp(26px, 3vw, 42px);
}
.ameni-box {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: clamp(26px, 3.4vw, 58px) clamp(18px, 2.6vw, 46px);
  background: #fff;
}
/* ---------- WEB / TABLET grid (hidden on mobile) ---------- */
.ameni-grid {
  display: none;
}
@media (min-width: 768px) {
  .ameni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(24px, 3.2vw, 56px);
    row-gap: clamp(26px, 2.9vw, 46px);
  }
}
@media (min-width: 992px) {
  .ameni-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ameni-col {
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 2.9vw, 46px);
}
/* Shared row look: icon left, label right */
.ameni-item,
.ameni-m-item {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 24px);
}
.ameni-item img,
.ameni-m-item img {
  flex: 0 0 auto;
  width: clamp(32px, 2.6vw, 40px);
  height: clamp(32px, 2.6vw, 40px);
  object-fit: contain;
  /* Normalise the gold line icons to the dark thin-line look */
  filter: brightness(0) saturate(100%);
  opacity: 0.9;
}
.ameni-item span,
.ameni-m-item span {
  font-size: clamp(16px, 1.15vw, 18px);
  color: #3a3a3a;
  line-height: 1.35;
}

/* ---------- MOBILE-ONLY slider ---------- */
.ameni-slider {
  width: 100%;
  max-width: 100%;
}
.ameni-slider .owl-stage-outer {
  width: 100%;
}
.ameni-slide {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 2px 4px;
  width: 100%;
}
/* Owl forces `.owl-carousel .owl-item img { width: 100% }`, which would blow the
   icon up to the full row and squeeze the label out — override it explicitly. */
.ameni-slider .owl-item .ameni-m-item img,
.ameni-m-item img {
  flex: 0 0 34px;
  width: 34px !important;
  height: 34px !important;
  max-width: 34px;
}
/* Let the label take the remaining width and wrap instead of collapsing */
.ameni-m-item span {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  white-space: normal;
  overflow-wrap: anywhere;
}
/* ---- Mobile slider ---- */
@media (max-width: 767px) {
  .ameni-box {
    padding: 26px 18px 20px;
  }
  /* Each slide is a comfortable column of four amenities */
  .ameni-grid .ameni-col {
    gap: 26px;
    padding: 4px 2px;
  }
  .ameni-item img {
    width: 34px;
    height: 34px;
  }
  .ameni-item span {
    font-size: 16px;
  }
}
/* Controls sit together in one tidy row under the slides */
.ameni-slider .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.ameni-slider .owl-nav button.owl-prev,
.ameni-slider .owl-nav button.owl-next {
  width: 38px;
  height: 38px;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #111 !important;
  border: 1px solid #dcdcdc !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}
.ameni-slider .owl-nav button.owl-prev:hover,
.ameni-slider .owl-nav button.owl-next:hover {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}
.ameni-slider .owl-nav button.disabled {
  opacity: 0.35;
}
.ameni-slider .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.ameni-slider .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: #d5d5d5;
  transition: all 0.3s ease;
}
.ameni-slider .owl-dots .owl-dot.active span {
  background: #111;
  width: 20px;
  border-radius: 10px;
}

/* ==================== Gallery ==================== */
.gall__sec {
  width: 100%;
  padding: clamp(40px, 5vw, 70px) 0;
  overflow: hidden;
  background: #ffffff;
  background: var(--bg-light);
}
.gallery-carousel .owl-item.active.center .gal_img {
  transform: scale(1);
  transition: 0.5s all ease-in-out;
}
.gallery-carousel .owl-item .gal_img {
  transform: scale(0.88);
  transition: 0.5s all ease-in-out;
}
.gal_img {
  border-radius: 14px;
  overflow: hidden;
}
.gal_img img {
  border-radius: 14px;
  transition: transform 0.5s;
}
.gal_img:hover img {
  transform: scale(1.05);
}
/* ============== FAQ ========= */
.faq__sec {
  width: 100%;
  padding: clamp(50px, 6vw, 100px) 0;
  overflow: hidden;
  /* Warm neutral so it separates from the white Gallery above
     and the white Contact section below */
  background: #f5f3ef;
}
/* Heading + sub match the Overview section formatting */
.faq-heading {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 10px;
}
.faq-sub {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
/* Heading + cards centred as one block */
.faq-head {
  max-width: 1000px;
  margin: 0 auto clamp(26px, 3vw, 44px);
  text-align: center;
}
/* ---- Card-style accordion (two columns on lg and up) ---- */
.faq-list {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  border: 1px solid #e9e4db;
  border-radius: 10px;
  margin-bottom: clamp(10px, 1.1vw, 14px);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item:hover {
  border-color: #ded6c8;
}
/* Lift the open card off the page */
.faq-item:has(.faq-q:not(.collapsed)) {
  border-color: #d8d0c2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
  background: none;
  border: none;
  padding: clamp(17px, 1.8vw, 24px) clamp(16px, 2vw, 28px);
  text-align: left;
  cursor: pointer;
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(15.5px, 1.15vw, 18px);
  line-height: 1.45;
  color: var(--dark);
  transition: color 0.3s ease;
}
.faq-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ded6c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #111;
  transition:
    transform 0.35s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.faq-q:hover .faq-icon {
  border-color: #111;
}
/* Open state — filled marker, chevron flipped */
.faq-q:not(.collapsed) .faq-icon {
  background: #111;
  border-color: #111;
  color: #fff;
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 clamp(16px, 2vw, 28px) clamp(18px, 1.8vw, 24px);
  max-width: 860px;
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  color: var(--text-light);
  line-height: 1.75;
}
@media (max-width: 575px) {
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}
/* ==================== About ==================== */
.video__sec {
  width: 100%;
  padding: clamp(50px, 5.5vw, 80px) 0;
  background: var(--bg-light);
}
.counter {
  padding: 1.5rem 0.5rem 0;
  text-align: center;
}
.block {
  font-family: "General Sans", sans-serif;
  font-size: clamp(28px, 3.8vw, 56px);
  color: var(--gold);
}
.counterText {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.border-r {
  border-right: 1px solid #eee;
}

/* ==================== Get In Touch ==================== */
.contact__sec {
  width: 100%;
  padding: clamp(50px, 5.5vw, 80px) 0;
  background: #ffffff;
}
.contact-wrapper {
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
/* Dark panel is full-bleed: the row stretches so it meets every card edge */
.contact-info {
  background: var(--dark);
  color: #fff;
  padding: clamp(34px, 4vw, 56px) clamp(26px, 3.2vw, 46px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}
.contact-info h2 {
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  color: #fff;
  margin: 0;
}
/* Flourish matches the one under the overview form heading */
.contact-info h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 16px 0 clamp(18px, 1.8vw, 24px);
}
.contact-info > p {
  font-size: clamp(14px, 1.05vw, 16px);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin-bottom: clamp(28px, 3vw, 40px);
  max-width: 42ch;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 26px);
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
/* Outlined, not filled — a filled dark chip disappears on the dark panel */
.contact-detail-item i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.contact-detail-item strong {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.contact-detail-item span,
.contact-detail-item a {
  display: block;
  font-size: clamp(14px, 1.05vw, 16px);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  line-height: 1.55;
  transition: color 0.3s;
}
.contact-detail-item a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-box {
  padding: clamp(32px, 3.8vw, 52px) clamp(26px, 3.2vw, 46px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Underline fields + floating labels, same language as the overview form */
.contact-form-box .form-control {
  border: none !important;
  border-bottom: 1px solid #d5d5d5 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 10px 2px !important;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: var(--dark) !important;
  transition: border-color 0.3s ease !important;
}
.contact-form-box .form-control:focus {
  border-bottom-color: #000 !important;
  box-shadow: none !important;
}
.contact-form-box .form-control:focus + .lux-label,
.contact-form-box .form-control:not(:placeholder-shown) + .lux-label {
  top: -11px;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #000;
}
.contact-form-box .dis-font {
  align-items: flex-start;
  gap: 9px;
  font-size: 11.5px;
  line-height: 1.55;
  color: #8a8a8a;
  margin: 4px 0 clamp(22px, 2.2vw, 30px);
  cursor: pointer;
}
.contact-form-box .dis-font input {
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-form-box .sub_btn {
  width: 100%;
  border-radius: 4px;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* Privacy Strip */
.policy__strip {
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.policy-text {
  font-size: clamp(13px, 1vw, 15px);
  color: #999;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.policy-text a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.policy-text a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* Policy Modal Content */
.policy-content {
  text-align: left;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}
.policy-content p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-content h5 {
  font-family: "General Sans", sans-serif;
  font-size: 16px;
  color: var(--dark);
  margin: 18px 0 8px;
  font-weight: 600;
}
.policy-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.policy-content ul li {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 4px;
}
.policy-content a {
  color: var(--gold);
  text-decoration: none;
}
.policy-content a:hover {
  text-decoration: underline;
}
.policy-content::-webkit-scrollbar {
  width: 4px;
}
.policy-content::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

@media screen and (max-width: 991px) {
  .contact-info {
    padding: 32px 24px 36px;
  }
  .contact-info > p {
    margin-bottom: 26px;
  }
  .contact-form-box {
    padding: 30px 24px 34px;
  }
}

/* ==================== 360 View ==================== */
.view360__sec {
  width: 100%;
  padding: clamp(40px, 5vw, 70px) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.view360__sec::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(0, 0, 0, 0.08) 0%,
    transparent 70%
  );
}
.view360-title {
  font-family: "General Sans", sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  color: #fff;
  margin-bottom: 10px;
}
.view360-sub {
  font-size: clamp(15px, 1.25vw, 18px);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
}
.view360-btn {
  padding: clamp(12px, 1.1vw, 16px) clamp(28px, 3vw, 44px);
  font-size: clamp(15px, 1.2vw, 18px);
  border-radius: 50px;
  background: var(--gold);
  border: 2px solid var(--gold);
  transition: all 0.3s;
  color: #fff;
}
.view360-btn:hover {
  background: transparent;
  color: var(--gold);
}

/* ==================== Forms ==================== */
.form-group {
  height: auto;
  margin-bottom: 14px;
}
.form-control {
  border: 1px solid #ddd !important;
  background: #fff !important;
  color: var(--dark) !important;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.form-control:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
}
.error {
  color: #dc3545;
  font-size: 12px;
}

/* ==================== Footer ==================== */
/* Mizumi Reserve footer layout, kept on the site's black background */
#sp-footer {
  width: 100%;
  background: #0a0a0a;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}
#sp-footer h2 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #fff;
}
#sp-footer p {
  line-height: 18px;
  color: #b4b4b4;
  font-size: 12px;
}
#sp-footer b {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #sp-footer h2 {
    margin-top: 13px;
    font-size: 14px;
  }
  #sp-footer p {
    line-height: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .me {
    margin-bottom: 50px;
  }
}

/* ==================== Luxury Modal ==================== */
/* Frosted dark backdrop */
.modal-backdrop {
  background: #0a0a0a;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal-backdrop.show {
  opacity: 0.72;
}
/* Elegant zoom-in entrance */
.modal.fade .modal-dialog {
  transform: scale(0.94);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}
.modal.show .modal-dialog {
  transform: scale(1);
}
.modal-content {
  background: transparent;
  border: none;
}
.modal-body {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: clamp(34px, 3.4vw, 50px) clamp(24px, 2.8vw, 42px)
    clamp(28px, 2.8vw, 40px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  border: none;
}
/* Only the floor is lowered. The CRO popup sets a 22-character title here
   ("Assetz Codename Summit"), and since the 2.1vw term does not overtake the
   minimum until ~1095px, every phone and tablet sat on that floor — which was
   sized for short titles like "Enquire Now". Desktop sizing is unchanged. */
.modal-body h2 {
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 2.1vw, 32px);
  letter-spacing: 0.4px;
  color: var(--dark);
  margin-bottom: 0;
}
/* Centered flourish under the title */
.modal-body h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: #000;
  margin: 14px auto 0;
}
.modal-body p {
  font-family: "General Sans", sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--text-light);
  line-height: 1.6;
  margin: 16px auto 26px !important;
}

/* Underline-style luxury inputs (scoped to the modal only) */
.modal-body .form-group {
  margin-bottom: 20px;
  text-align: left;
}
.modal-body .form-control {
  border: none !important;
  border-bottom: 1px solid #d9d9d9 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 11px 2px !important;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: var(--dark) !important;
  transition: border-color 0.3s ease !important;
}
.modal-body .form-control::placeholder {
  color: #a0a0a0;
  letter-spacing: 0.3px;
}
.modal-body .form-control:focus {
  border-bottom-color: #000 !important;
  box-shadow: none !important;
}

/* Refined consent line */
.modal-body .dis-font {
  align-items: flex-start;
  gap: 9px;
  font-size: 11.5px;
  line-height: 1.55;
  color: #8a8a8a;
  text-align: left !important;
  margin: 6px 0 24px;
}
.modal-body .dis-font input {
  margin-top: 2px;
}

/* Full-width uppercase submit */
.modal-body .col-md-12.d-flex {
  display: block !important;
}
.modal-body .sub_btn {
  width: 100%;
  border-radius: 4px;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* Close button — subtle, rotates on hover */
.modal-body .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 0.45;
  background-size: 12px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}
.modal-body .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
  background-color: rgba(0, 0, 0, 0.05);
}

/* ==================== Buttons ==================== */
.sub_btn {
  font-size: clamp(15px, 1.15vw, 17px);
  color: #fff;
  background: var(--gold);
  border: none;
  padding: clamp(11px, 1vw, 14px) clamp(30px, 3vw, 44px);
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.sub_btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ---- Fixed desktop CTAs (squared + animated) ---- */
.btn_dwnld,
.btn_enq {
  position: fixed;
  bottom: 24px;
  padding: 11px 20px;
  background: #111111;
  color: #fff;
  font-family: "General Sans", sans-serif;
  font-size: clamp(11px, 0.8vw, 12.5px);
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  z-index: 100;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.3s ease;
  /* Slide up into place once the page settles */
  animation: fixedBtnIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.btn_dwnld {
  left: 15px;
  animation-delay: 0.5s;
}
.btn_enq {
  right: 15px;
  animation-delay: 0.65s;
}
@keyframes fixedBtnIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Light sweeps across the button periodically to draw the eye */
.btn_dwnld::before,
.btn_enq::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: btnShine 5s ease-in-out 2s infinite;
}
.btn_enq::before {
  animation-delay: 3.5s;
}
@keyframes btnShine {
  0%,
  82% {
    left: -120%;
  }
  100% {
    left: 130%;
  }
}
.btn_dwnld:hover,
.btn_enq:hover {
  background: #000000;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}
.btn_dwnld:active,
.btn_enq:active {
  transform: translateY(-1px);
}
.btn_dwnld i,
.btn_enq i {
  font-size: 12px;
  transition: transform 0.35s ease;
}
/* Nudge the icons on hover */
.btn_dwnld:hover i {
  transform: translateY(2px);
}
.btn_enq:hover i {
  transform: rotate(-12deg);
}
/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .btn_dwnld,
  .btn_enq,
  .btn_dwnld::before,
  .btn_enq::before {
    animation: none;
  }
}

/* ==================== Form submitting state ==================== */
@keyframes formSpin {
  to {
    transform: rotate(360deg);
  }
}
/* Spinner inside the submit button */
.btn-spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 9px;
  vertical-align: -2px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: formSpin 0.7s linear infinite;
}
button.is-loading {
  opacity: 0.9;
  cursor: not-allowed;
}
/* Freeze the fields while the request is in flight */
.form-submitting input,
.form-submitting textarea,
.form-submitting select {
  pointer-events: none;
  opacity: 0.7;
}
/* Full-page overlay so nothing else can be clicked either */
.form-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.form-loader.show {
  opacity: 1;
  visibility: visible;
}
.form-loader-box {
  text-align: center;
  color: #fff;
}
.form-loader-spin {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: formSpin 0.8s linear infinite;
}
.form-loader p {
  margin: 0;
  font-family: "General Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

/* ==================== Interior pages (no hero) ==================== */
/* The header hides itself until the user scrolls; pages without a hero
   banner need it visible straight away. */
body.page-inner .fix_head {
  transform: none;
  opacity: 1;
  pointer-events: auto;
  background: rgba(10, 10, 10, 0.94);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.16);
}

/* ==================== Thank You (new) ==================== */
.ty__sec {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78vh;
  padding: clamp(110px, 16vh, 170px) 0 clamp(50px, 6vw, 90px);
  background: #f8f5f0;
}
.ty-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e9e4db;
  border-radius: 14px;
  padding: clamp(32px, 4vw, 58px) clamp(22px, 3vw, 52px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  animation: tyRise 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes tyRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ty-check {
  width: 64px;
  height: 64px;
  margin: 0 auto clamp(20px, 2.4vw, 28px);
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: tyPop 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
@keyframes tyPop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.ty-logo {
  height: clamp(32px, 3vw, 38px);
  width: auto;
  max-width: 100%;
  margin-bottom: clamp(16px, 1.8vw, 22px);
}
.ty-title {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 12px;
}
.ty-text {
  max-width: 420px;
  margin: 0 auto clamp(24px, 3vw, 34px);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--text-light);
}
.ty-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 14px clamp(24px, 2.6vw, 34px);
  font-family: "General Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ty-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
.ty-btn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}
.ty-btn:hover i {
  transform: translateX(-3px);
}
.ty-redirect {
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  color: var(--dark);
  margin: 0;
}
.ty-contact {
  margin-top: clamp(24px, 3vw, 34px);
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid #eee7dc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  font-size: 14px;
  color: var(--text-light);
}
.ty-contact a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.ty-contact a:hover {
  opacity: 0.7;
}
.ty-contact a i {
  font-size: 12px;
  margin-right: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .ty-card,
  .ty-check {
    animation: none;
  }
}

/* ==================== Thank You (legacy) ==================== */
.thank__sec {
  width: 100%;
}
.thank_wrap {
  background: #fff;
  padding: 35px;
  margin: 10% 0;
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.check_sign {
  background: var(--gold);
  height: 90px;
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check_sign i {
  font-size: 42px;
  color: #fff;
}
.section-title h2 {
  font-family: "General Sans", sans-serif;
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--dark);
}
.oops-greet,
.oops-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-light);
}
.go_txt {
  font-size: 14px;
  color: var(--gold);
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  width: fit-content;
  padding: 10px 24px;
  margin: 18px auto 0;
  transition: all 0.3s;
}
.go_txt:hover {
  background: var(--gold);
  color: #fff;
}

/* ==================== Fixed Bottom Bar (Mobile/Tablet) ==================== */
.fixed_div {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background: var(--gold);
  padding: 10px 0;
  text-align: center;
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.fixed_div button,
.fixed_div a {
  color: #fff;
  font-family: "General Sans", sans-serif;
  font-size: 14px;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
}
.div_line {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Add footer padding when fixed bar is visible (below lg) */
@media screen and (max-width: 991px) {
  #sp-footer {
    padding-bottom: 60px;
  }
}

/* ==================== Misc ==================== */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.owl-nav button {
  width: clamp(32px, 3vw, 42px);
  height: clamp(32px, 3vw, 42px);
  background: rgba(0, 0, 0, 0.4) !important;
  color: #fff !important;
  border-radius: 50% !important;
  font-size: clamp(14px, 3.5vw, 16px) !important;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.owl-nav button:hover {
  background: var(--gold) !important;
}
.owl-nav .owl-prev {
  position: absolute;
  left: 8px;
  top: 40%;
}
.owl-nav .owl-next {
  position: absolute;
  right: 8px;
  top: 40%;
}
/* The newer carousels lay their own arrows out with flexbox, so opt them
   out of the absolute positioning above (these rules must stay last). */
.ameni-slider .owl-nav .owl-prev,
.ameni-slider .owl-nav .owl-next,
.essence-carousel .owl-nav .owl-prev,
.essence-carousel .owl-nav .owl-next,
.compose-carousel .owl-nav .owl-prev,
.compose-carousel .owl-nav .owl-next,
.gallery-slider .owl-nav .owl-prev,
.gallery-slider .owl-nav .owl-next {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}
.was-validated .form-control:invalid {
  border-color: #dc3545 !important;
}
.was-validated .form-control:valid {
  border-color: #198754 !important;
}
.modal-body .invalid-feedback,
.modal-body .valid-feedback {
  text-align: left;
}

/* ==================== Responsive ==================== */
@media screen and (max-width: 991px) {
  .overview-form-wrapper {
    margin-top: 25px;
  }
  .map_img {
    margin: 2rem 0;
  }
}

@media screen and (max-width: 767px) {
  .render-wrapper {
    flex-direction: column;
  }
  .render-image,
  .render-content {
    width: 100%;
  }
  .list-wrapper {
    flex-direction: column;
    gap: 5px;
  }
  .list-wrapper ul {
    width: 100%;
    padding-left: 20px;
  }
  .over_box {
    padding-left: 0;
  }
  .down_btn {
    margin-left: 0;
  }
  .nav {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .border-r {
    border-right: 1px solid #eee;
  }
  .cont__sec .con_row {
    flex-direction: column-reverse;
  }
  .gallery-carousel .owl-item .gal_img {
    transform: scale(0.95);
  }
  .thank_wrap {
    margin: 25% 0;
    padding: 22px 16px;
  }
  .overview-form-wrapper {
    margin-top: 25px;
    padding: 20px 15px;
  }
  .offcanvas-menu {
    width: min(86vw, 330px) !important;
  }
  .offcanvas-link {
    font-size: 16px;
    padding: 15px 22px;
  }
}

@media screen and (max-width: 400px) {
  .banner-tags {
    display: none;
  }
}

/* ==================== Alternating Section Backgrounds ==================== */
section#overview      { background: #ffffff !important; }
section#configuration { background: #ebebeb !important; }
section#highlights    { background: #ffffff !important; }
section#amenities     { background: #ebebeb !important; }
section#gallery       { background: #ffffff !important; }
section#connectivity  { background: #f8f5f0 !important; }
section#faq           { background: #f5f3ef !important; }
section#about         { background: #ebebeb !important; }
section#contact       { background: #ffffff !important; }
