/* ─── Color tokens ─────────────────────────────────────── */
:root {
  --gold: #B8860B;
  --gold-light: #DAA520;
  --gold-dark: #8B6914;
  --cream: #FDFAF5;
  --warm-white: #F9F6EF;
  --light-gray: #FFFBFB;
  /* --light-gray:  #F0EBE1; */
  --mid-gray: #E5DED2;
  --text-dark: #1A1209;
  --text-mid: #4A3F2F;
  --text-light: #8A7A65;
  --card-bg: #FFFFFF;
}

/* ─── Reset ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; } */
a {
  color: inherit;
}

button {
  font-family: inherit;
}

.min-h-screen {
  min-height: 100vh;
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ════════════════════════════════════════════════════════ */

/* Containers */
.lx-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lx-container-sm {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Section padding */
.lx-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Flex helpers */
.lx-flex {
  display: flex;
}

.lx-flex-col {
  display: flex;
  flex-direction: column;
}

.lx-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lx-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lx-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.lx-items-center {
  align-items: center;
}

.lx-items-start {
  align-items: flex-start;
}

.lx-gap-2 {
  gap: 0.5rem;
}

.lx-gap-3 {
  gap: 0.75rem;
}

.lx-gap-4 {
  gap: 1rem;
}

.lx-gap-5 {
  gap: 1.25rem;
}

.lx-gap-6 {
  gap: 1.5rem;
}

.lx-gap-8 {
  gap: 2rem;
}

.lx-gap-10 {
  gap: 2.5rem;
}

/* Grid helpers */
.lx-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.lx-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.lx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.lx-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.lx-grid-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.lx-grid-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lx-grid-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.lx-grid-connectivity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Responsive overrides */
@media (max-width: 1024px) {
  .lx-grid-about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lx-grid-contact {
    grid-template-columns: 1fr;
  }

  .lx-grid-footer {
    grid-template-columns: 1fr 1fr;
  }

  .lx-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lx-grid-connectivity {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .lx-grid-2 {
    grid-template-columns: 1fr;
  }

  .lx-grid-3 {
    grid-template-columns: 1fr;
  }

  .lx-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lx-grid-footer {
    grid-template-columns: 1fr;
  }

  .lx-grid-contact {
    grid-template-columns: 1fr;
  }

  .lx-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lx-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lx-grid-connectivity {
    gap: 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════════════ */
.lx-section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.lx-section-label--with-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.lx-section-label-logo {
  height: 2.4em;
  width: auto;
  display: block;
}

.lx-section-title {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lx-section-overview {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
}

.lx-section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Section header block (centered) */
.lx-section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   GOLD EFFECTS
   ════════════════════════════════════════════════════════ */
.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.shimmer {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-line-center {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

.gold-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.navbar-transparent {
  padding: 1.25rem 0;
  background: transparent;
}

.navbar-scrolled {
  padding: 0.75rem 0;
  background: rgba(253, 250, 245, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(184, 134, 11, 0.12);
}

.navbar-inner {
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-link {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-menu {
  background: rgba(253, 250, 245, 0.97);
  border-top: 1px solid var(--mid-gray);
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu-inner {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  #nav-enquire-lg {
    display: none !important;
  }

  #mobile-menu-toggle {
    display: block !important;
  }
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 62px;
  }

  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  }
}

.mobile-sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.mobile-sticky-cta-call {
  background: var(--text-dark);
  color: #fff;
}

.mobile-sticky-cta-enquire {
  background: #DBA669;
  /* background: var(--gold); */
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .hero-right {
    display: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 134, 11, 0.28);
  width: fit-content;
}

@media (max-width: 900px) {
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.8);
  }
}

.hero-headline {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 1.06;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-headline .line-thin {
  font-weight: 300;
  display: block;
}

.hero-headline .line-bold {
  font-weight: 700;
  display: block;
}

.hero-headline .line-italic {
  font-weight: 300;
  font-style: italic;
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 32rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .hero-cta-row {
    justify-content: center;
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .hero-trust {
    justify-content: center;
  }
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  flex-shrink: 0;
}

.hero-trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.hero-trust-text strong {
  color: var(--text-dark);
  display: block;
  font-size: 0.82rem;
}

/* Search box */
.hero-search {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(184, 134, 11, 0.08);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.hero-search-tabs {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.1rem;
  background: var(--light-gray);
  border-radius: 7px;
  padding: 3px;
  width: fit-content;
}

.hero-search-tab {
  padding: 0.35rem 1.25rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.hero-search-tab.active {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.35);
}

.hero-search-fields {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 0.6rem;
  align-items: end;
}

@media (max-width: 600px) {
  .hero-search-fields {
    grid-template-columns: 1fr;
  }
}

.hero-search-label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.hero-search-label.is-hidden {
  opacity: 0;
  user-select: none;
}

.hero-search-input-wrap {
  position: relative;
}

.hero-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  display: flex;
}

.hero-search-input {
  width: 100%;
  background: var(--warm-white);
  border: 1.5px solid var(--mid-gray);
  border-radius: 8px;
  padding: 0.6rem 0.75rem 0.6rem 2.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

select.hero-search-input {
  padding-left: 2rem;
  appearance: none;
  cursor: pointer;
}

.hero-search-input::placeholder {
  color: var(--text-light);
}

.hero-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.10);
}

.hero-search-chevron {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-light);
  display: flex;
}

/* Floating cards */
@keyframes float-a {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-b {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-float-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.13);
  animation: fade-in-right 0.8s ease forwards;
}

.hero-prop-card {
  width: 260px;
  animation: float-a 5s ease-in-out infinite, fade-in-right 0.9s ease forwards;
  animation-delay: 0s, 0.2s;
  animation-fill-mode: both, forwards;
}

.hero-prop-card-img {
  width: 100%;
  height: 145px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.hero-prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-prop-card-body {
  padding: 0.85rem 1rem 1rem;
}

.hero-prop-card-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(184, 134, 11, 0.1);
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.hero-prop-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.hero-prop-card-loc {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  gap: 3px;
}

.hero-prop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-prop-card-price {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-prop-card-price-label {
  font-size: 0.6rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  width: fit-content;
}

.hero-stat-card:nth-child(2) {
  animation: float-b 4.5s ease-in-out infinite, fade-in-right 0.9s ease forwards;
  animation-delay: 0s, 0.5s;
  animation-fill-mode: both, forwards;
}

.hero-stat-card:nth-child(3) {
  animation: float-a 5.5s ease-in-out 1s infinite, fade-in-right 0.9s ease forwards;
  animation-delay: 0s, 0.8s;
  animation-fill-mode: both, forwards;
}

.hero-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.1);
  color: var(--gold-dark);
  flex-shrink: 0;
}

.hero-stat-card-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-card-label {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 0.25s;
  z-index: 10;
}

.hero-scroll:hover {
  opacity: 0.6;
}

.hero-scroll-mouse {
  width: 22px;
  height: 34px;
  border-radius: 11px;
  border: 2px solid rgba(184, 134, 11, 0.45);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-wheel {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--gold);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  background-image: radial-gradient(circle, rgba(184, 134, 11, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 2;
  mask-image: radial-gradient(ellipse 80% 80% at 80% 20%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 80% 20%, black 0%, transparent 70%);
}

.hero-flex {
  display: flex;
  align-items: stretch;
}

.hero-banner-wrap {
  flex: 1 1 auto;
  min-width: 0;
  aspect-ratio: 5692 / 3201;
}

.hero-banner-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
}

@media (max-width: 768px) {
  .hero-banner-wrap {
    aspect-ratio: 1668 / 2501;
  }

  .hero-banner-img {
    margin-top: 20px;
  }
}

.hero-side-form {
  position: relative;
  flex: 0 0 360px;
  background: #fff;
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.hero-side-form-accent {
  position: absolute;
  top: 3rem;
  bottom: 3rem;
  left: 0;
  width: 4px;
  background: var(--gold);
  border-radius: 0 3px 3px 0;
}

#hero-contact-form {
  gap: 0.5rem;
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
  }

  .hero-side-form {
    flex-basis: auto;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #DBA669;
  /* background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%); */
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.25s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  transition: transform 0.45s;
}

.btn-gold:hover::after {
  transform: translateX(100%);
}

.btn-gold:hover {
  box-shadow: 0 6px 22px rgba(184, 134, 11, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.25);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   CARDS
   ════════════════════════════════════════════════════════ */
.card-white {
  background: #fff;
  border: 1px solid var(--mid-gray);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s;
}

.card-white:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(184, 134, 11, 0.18);
}

.card-cream {
  background: var(--warm-white);
  border: 1px solid var(--mid-gray);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s;
}

.card-cream:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

/* ═══════════════════════════════════════════════════════════
   PROPERTIES
   ════════════════════════════════════════════════════════ */
.property-image {
  position: relative;
  overflow: hidden;
  height: 326px;
  /* height: 240px; */
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card-white:hover .property-image img {
  transform: scale(1.07);
}

.property-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42) 0%, transparent 55%);
}

.property-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 3px 9px;
  background: var(--gold);
  color: #fff;
  border-radius: 3px;
}

.property-type-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.property-like {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.property-like:hover {
  transform: scale(1.1);
}

.property-like svg {
  pointer-events: none;
}

.property-like.liked svg {
  fill: #e53e3e;
  color: #e53e3e;
}

.floorplan-showcase {
  max-width: 720px;
  margin: 0 auto;
}

.floorplan-frame {
  position: relative;
  border: 1px solid var(--mid-gray);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 9;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.floorplan-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.floorplan-frame-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 9, 0.32) 0%, transparent 42%);
  pointer-events: none;
}

.floorplan-frame-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold-dark);
  border-radius: 20px;
}

.floorplan-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.floorplan-view-btn:hover {
  transform: translate(-50%, -50%) translateY(-1px);
}

.gallery-carousel--floorplan {
  justify-content: space-between;
}

.gallery-carousel--floorplan .gallery-carousel-track {
  flex: 0 1 auto;
  max-width: 100%;
  margin: 0;
}

.gallery-carousel--floorplan .gallery-carousel-item {
  flex: 0 0 100%;
}

.gallery-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.gallery-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--mid-gray);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.gallery-carousel-dot:hover {
  background: var(--gold-light);
}

.gallery-carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════
   CONFIGURATION TABLE
   ════════════════════════════════════════════════════════ */
.config-table-wrap {
  margin-top: 2.5rem;
}

.config-table-wrap .table-responsive {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--mid-gray);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.config-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.config-table thead {
  background: rgba(184, 134, 11, 0.06);
}

.config-table th {
  padding: 1rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--mid-gray);
  white-space: nowrap;
}

.config-table td {
  padding: 1.1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--mid-gray);
  vertical-align: middle;
}

.config-table tbody tr:last-child td {
  border-bottom: none;
}

.config-table tbody tr:hover {
  background: rgba(184, 134, 11, 0.03);
}

.config-table td strong {
  color: var(--text-dark);
  font-size: 1.05rem;
}

.config-table-enquire {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: inherit;
  transition: color 0.2s;
}

.config-table-enquire:hover {
  color: var(--gold);
  text-decoration: underline;
}

.config-table-note {
  padding: 0.75rem 1.25rem;
  text-align: right;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--text-light);
}

@media (max-width: 600px) {

  .config-table th,
  .config-table td {
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   GALLERY CAROUSEL
   ════════════════════════════════════════════════════════ */
.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-carousel-track {
  flex: 1;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery-carousel-item {
  flex: 0 0 calc(50% - 0.625rem);
  scroll-snap-align: start;
}

.gallery-carousel-item .property-image {
  /* height: auto; */
  /* aspect-ratio: 2048 / 930; */
  background: #f4f1ea;
}

/* .gallery-carousel-item .property-image img { object-fit: contain; } */
.gallery-carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--mid-gray);
  background: #fff;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.gallery-carousel-btn:hover {
  background: var(--gold);
  color: #fff;
}

.gallery-carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 768px) {
  .gallery-carousel-item {
    flex: 0 0 calc(50% - 0.625rem);
  }
}

@media (max-width: 480px) {
  .gallery-carousel-item {
    flex: 0 0 100%;
  }

  .gallery-carousel-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .gallery-carousel {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .gallery-carousel-track {
    order: 1;
    width: 100%;
    flex-basis: 100%;
    /* force track to take full width, pushing buttons to next line */
  }

  .gallery-carousel-prev,
  .gallery-carousel-next {
    position: static;
    transform: none;
    order: 2;
  }
}

.property-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.property-name {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.85rem;
}

.property-specs {
  display: flex;
  gap: 1.1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--mid-gray);
}

.property-spec {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-price-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 2px;
}

.property-price {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Filter pills */
.filter-pill {
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--mid-gray);
  background: #fff;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.filter-pill.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.28);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.property-card.is-hidden {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════ */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.18);
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.card-cream:hover .icon-box {
  transform: scale(1.1);
}

.amenity-image {
  margin: -1.75rem -1.75rem 1.25rem;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 180px;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-cream:hover .amenity-image img {
  transform: scale(1.06);
}

.service-title {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
}

.service-underline {
  margin-top: 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card-cream:hover .service-underline {
  opacity: 1;
}

.amenities-marquee {
  overflow: hidden;
  /* -webkit-mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%); */
}

.amenities-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.75rem;
  animation: amenities-marquee-scroll 32s linear infinite;
}

.amenities-marquee:hover .amenities-marquee-track {
  animation-play-state: paused;
}

.amenities-marquee-item {
  flex: 0 0 23rem;
  max-width: 23rem;
}

@keyframes amenities-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .amenities-marquee-item {
    flex: 0 0 17.5rem;
    max-width: 17.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .amenities-marquee-track {
    animation: none;
  }

  .amenities-marquee {
    overflow-x: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   PROJECT HIGHLIGHTS (dark split layout)
   ════════════════════════════════════════════════════════ */
.highlights-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.highlights-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlights-copy .gold-line-center {
  margin: 1rem 0 1.5rem 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.highlights-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 32rem;
  margin-bottom: 2.25rem;
}

.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
}

.highlights-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-light);
}

.highlights-list-icon {
  display: flex;
  flex-shrink: 0;
}

.highlights-image-wrap {
  border: 3px solid var(--gold);
  /* aspect-ratio: 1 / 1; */
  overflow: hidden;
}

.highlights-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .highlights-copy .lx-section-label,
  .highlights-desc {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .highlights-list {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════ */
.about-image-wrap {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(26, 18, 9, 0.22), transparent);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--mid-gray);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  max-width: 180px;
}

.about-badge-num {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-badge-text {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.about-corner {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 88px;
  height: 88px;
  border-radius: 14px;
  border: 2px solid rgba(184, 134, 11, 0.22);
}

.about-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-features {
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.about-feature-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.1);
  border: 1.5px solid var(--gold);
}

.about-feature-dot-inner {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   CONNECTIVITY (accordion + map)
   ════════════════════════════════════════════════════════ */
.connectivity-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--mid-gray);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.accordion-item.is-open {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.accordion-title {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-chevron {
  color: var(--gold-dark);
  display: flex;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.accordion-item.is-open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.connectivity-map-wrap {
  position: sticky;
  top: 100px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.connectivity-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease;
  cursor: default;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.connectivity-map-img.is-zoomed {
  cursor: grab;
}

.connectivity-map-img.is-zoomed:active {
  cursor: grabbing;
}

@media (max-width: 1024px) {
  .connectivity-map-wrap {
    position: relative;
    top: 0;
  }
}

.connectivity-zoom-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.connectivity-zoom-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--mid-gray);
  background: #fff;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, color 0.2s;
}

.connectivity-zoom-btn:hover {
  background: var(--gold);
  color: #fff;
}

.connectivity-zoom-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.about-stats {
  margin-top: 5rem;
}

.stat-card {
  padding: 1.75rem;
  text-align: center;
}

.stat-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--mid-gray);
  border-radius: 24px;
  padding: 3.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.quote-mark {
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 0.5rem;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 2rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 0.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-location {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 0.25rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testimonial-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--mid-gray);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-light);
  transition: border-color 0.2s, color 0.2s;
}

.testimonial-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonial-dot {
  height: 8px;
  width: 8px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--mid-gray);
  transition: width 0.3s, background 0.3s;
}

.testimonial-dot.active {
  width: 24px;
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════ */
.contact-map-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  min-height: 420px;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.contact-map-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--mid-gray);
  border-radius: 18px;
  padding: 2.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.form-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.contact-form-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: center;
}

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--mid-gray);
  border-radius: 8px;
  padding: 0.7rem 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

/* ── Inline validation ── */
.form-input.is-invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.10);
}

.form-input.is-valid {
  border-color: #38a169;
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.10);
}

.form-error-msg {
  display: none;
  font-size: 0.72rem;
  color: #e53e3e;
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  animation: fade-in-error 0.18s ease;
}

.form-error-msg.visible {
  display: block;
}

@keyframes fade-in-error {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-consent.is-invalid .form-consent-text {
  color: #e53e3e;
}

.form-consent-error {
  display: none;
  font-size: 0.72rem;
  color: #e53e3e;
  margin-top: 0.3rem;
  font-weight: 500;
  animation: fade-in-error 0.18s ease;
}

.form-consent-error.visible {
  display: block;
}

select.form-input {
  cursor: pointer;
}

textarea.form-input {
  resize: none;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.contact-success svg {
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-success h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-success p {
  color: var(--text-light);
  max-width: 340px;
}

.contact-success .btn-gold {
  margin-top: 1.5rem;
  padding: 0.65rem 1.5rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}

.form-consent-checkbox {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-consent-text {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-light);
}

.form-consent-link {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent-link:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   ENQUIRY POPUP
   ════════════════════════════════════════════════════════ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 26, 46, 0.65);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 2.25rem 2rem;
}

.popup-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.popup-close-btn:hover {
  background: rgba(184, 134, 11, 0.1);
  color: var(--gold-dark);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer-bg {
  background-color: #1A1209;
}

.footer-newsletter {
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 0%, rgba(184, 134, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.footer-newsletter-label {
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-newsletter-title {
  font-size: 1.9rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.6rem;
}

.footer-newsletter-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
}

.footer-newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  min-width: 0;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.footer-newsletter-input:focus {
  border-color: var(--gold);
}

.footer-newsletter-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (max-width: 500px) {
  .footer-newsletter-row {
    flex-direction: column;
  }
}

.footer-newsletter-msg {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--gold);
  display: none;
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-mark span {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
}

.footer-brand-name {
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.42);
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-group-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-qr {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 4px;
  margin-bottom: 1.1rem;
}

.footer-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-rera-number {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-rera-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

.footer-rera-note a {
  color: var(--gold);
  text-decoration: none;
}

.footer-rera-note a:hover {
  text-decoration: underline;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.footer-contact-block {
  margin-top: 1.25rem;
}

.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.5rem;
}

.footer-contact-value {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.footer-contact-value:hover {
  color: var(--gold);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
  padding-top: 1.75rem;
}

.footer-disclaimer {
  font-size: 0.72rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.3);
}

.footer-link {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 134, 11, 0.08);
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-privacy-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.footer-privacy-link:hover {
  color: var(--gold);
}

.footer-scroll-top {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.footer-scroll-top:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 560px) {
  .footer-grid {
    text-align: center;
  }

  .footer-brand-row {
    justify-content: center;
  }

  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-rera {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
  }

  .footer-contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-legal {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-text {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   MISC
   ════════════════════════════════════════════════════════ */
.star-filled {
  color: var(--gold);
  fill: var(--gold);
}

.text-gold {
  color: var(--gold-dark);
}

.text-muted {
  color: var(--text-light);
}

.section-bg-warm {
  background-color: var(--warm-white);
}

.section-bg-light {
  background-color: var(--light-gray);
}

.section-bg-cream {
  background-color: var(--cream);
}

.section-bg-dark {
  background-color: var(--text-dark);
}