/* ===== DSR INFINITY ULTRA-LUXURY ARCHITECTURAL DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Architectural Palette (Warm Alabaster Silk & Champagne Gold) */
  --bg-dark: #0e1219; /* Warm Obsidian Bronze Slate for Dark Accent Decks */
  --bg-page: #f8f6f0; /* Ultra-Premium Warm Alabaster Silk Page Background */
  --bg-card: #ffffff; /* Crisp Clean Warm White Card Surface */
  --bg-card-dark: #141a24;
  --accent-gold: #c89e47; /* Rich Metallic Champagne Gold */
  --accent-gold-light: #f3dfab;
  --accent-gold-dark: #9a762a;
  --accent-gold-glow: rgba(200, 158, 71, 0.28);
  --accent-emerald: #1e3a34;
  --text-main: #161b24; /* Deep Charcoal Obsidian Body Text */
  --text-muted: #546274;
  --text-dim: #8492a6;
  --border-light: rgba(200, 158, 71, 0.22);
  --border-glow: rgba(200, 158, 71, 0.45);
  --gold-hairline: rgba(200, 158, 71, 0.35);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Dynamic Accent */
  --active-theme: #c89e47;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
}

img, svg, video, iframe, canvas {
  max-width: 100%;
  box-sizing: border-box;
}

/* Background Canvas */
#bgCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* Typography Utilities */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* Section Common Styles */
section {
  padding: 6.5rem 6vw;
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 3.8rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.75;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-dark);
  background: transparent;
}

.btn:hover {
  background: rgba(200, 158, 71, 0.12);
  box-shadow: 0 4px 22px var(--accent-gold-glow);
  transform: translateY(-2px);
  color: var(--accent-gold);
}

.btn-solid {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #a87d2e 100%);
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(168, 125, 46, 0.38);
}

.btn-solid:hover {
  background: linear-gradient(135deg, #dfb763 0%, var(--accent-gold) 100%);
  box-shadow: 0 10px 32px rgba(200, 158, 71, 0.55);
  color: #ffffff !important;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding: 0 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  z-index: 100;
  background: rgba(248, 246, 240, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: background 0.3s;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-main);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.brandmark .glyph {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--accent-gold);
  background: rgba(200, 158, 71, 0.08);
  box-shadow: 0 0 16px var(--accent-gold-glow);
}

nav.links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 1.8vw, 2.2rem);
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 600;
  flex-shrink: 1;
}

nav.links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
}

nav.links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

nav.links a:hover {
  color: var(--accent-gold);
}

nav.links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-actions .btn {
  white-space: nowrap;
  padding: 0.65rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.menu-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.7rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* Mobile Overlay Menu Drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 25, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(-10px);
  padding: 5rem 2rem 2rem;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-close {
  background: rgba(200, 158, 71, 0.15);
  border: 1px solid rgba(200, 158, 71, 0.35);
  color: var(--accent-gold-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--accent-gold);
  color: #ffffff;
}

.mobile-menu a.mob-link {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  letter-spacing: 0.02em;
}

.mobile-menu a.mob-link:hover,
.mobile-menu a.mob-link:focus {
  color: var(--accent-gold-light);
  transform: scale(1.04);
}

/* ===== PERFECTLY PROPORTIONED 3-SLIDE VERTICAL EOI CAROUSEL ===== */
.carousel-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 580px;
  width: 100%;
  height: 48px;
  overflow: hidden;
  position: relative;
  background: rgba(14, 18, 25, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--accent-gold);
  border-radius: 30px;
  margin-bottom: 1.8rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  user-select: none;
}

.carousel-premium:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold-light);
  box-shadow: 0 10px 35px rgba(200, 158, 71, 0.45);
}

.slides-container-vertical {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: verticalSlide 12s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.slide-item {
  height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1.2rem;
  box-sizing: border-box;
  flex-shrink: 0;
}

.slide-item .slide-badge {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #a87d2e 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
  white-space: nowrap;
}

.slide-item .slide-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

@keyframes verticalSlide {
  0%, 28% { transform: translateY(0); }
  33.333%, 61.333% { transform: translateY(-48px); }
  66.666%, 94.666% { transform: translateY(-96px); }
  100% { transform: translateY(0); }
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 5;
  overflow: hidden;
}

.progress-bar .fill {
  height: 100%;
  width: 33.333%;
  background: linear-gradient(90deg, #c89e47, #f3dfab, #c89e47);
  border-radius: 2px;
  animation: progressFill 12s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  box-shadow: 0 0 15px rgba(200, 158, 71, 0.5);
}

@keyframes progressFill {
  0% { transform: translateX(0); }
  28% { transform: translateX(0); }
  33.333% { transform: translateX(100%); }
  61.333% { transform: translateX(100%); }
  66.666% { transform: translateX(200%); }
  94.666% { transform: translateX(200%); }
  100% { transform: translateX(0); }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15vh 6vw 8vh;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('assets/exterior_render.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.44) contrast(1.1);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 18, 25, 0.78) 0%, rgba(14, 18, 25, 0.45) 55%, var(--bg-page) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 158, 71, 0.18), transparent 65%);
}

.hero-content {
  max-width: 940px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.2vw, 5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold-light);
}

.hero-sub {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 700px;
  margin-bottom: 2.4rem;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* HIGH-CONTRAST STAT STRIP DECK CARD */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.8rem;
  margin-top: 4rem;
  padding: 2rem 2.5rem;
  background: rgba(14, 18, 25, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  line-height: 1;
}

.stat .lbl {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 0.5rem;
}

/* ===== OVERVIEW SECTION ===== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.overview-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.overview-card:hover::before {
  opacity: 1;
}

.overview-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.overview-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* Gallery Showcase */
.gallery-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

@media(min-width: 980px) {
  .gallery-showcase {
    grid-template-columns: 1.8fr 1fr;
  }
}

.gallery-view {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
  background: #0e1219;
}

.gallery-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.4s ease;
}

.gallery-nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  justify-content: center;
}

.gallery-tab {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-left: 3px solid transparent;
  border-radius: 10px;
  padding: 1.3rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  color: inherit;
}

.gallery-tab.active,
.gallery-tab:hover {
  border-left-color: var(--accent-gold);
  background: rgba(200, 158, 71, 0.08);
}

.gallery-tab h4 {
  font-size: 1.08rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.gallery-tab p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.image-disclaimer-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 1.4rem;
}

/* ===== FIVE ELEMENTS STAGE ===== */
.elements {
  background: var(--bg-dark);
  color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.elements .section-head h2,
.elements .section-head p {
  color: #ffffff;
}

.elements-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media(min-width: 980px) {
  .elements-stage {
    grid-template-columns: 1.2fr 1fr;
  }
}

.wheel-wrapper {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}

.wheel-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed var(--border-light);
  border-radius: 50%;
  animation: rotateSlow 40s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--bg-card-dark);
  border: 1px solid var(--accent-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 0.8rem;
}

.wheel-hub .hub-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0.3rem;
  color: var(--accent-gold);
}

.wheel-hub .hub-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #ffffff;
}

.wheel-hub .hub-name em {
  font-style: italic;
  color: var(--active-theme);
}

.wheel-hub .hub-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  margin-top: 0.2rem;
}

.node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px;
}

.node button {
  all: unset;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.node button svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dim);
}

.node button:hover {
  transform: scale(1.1);
  border-color: var(--node-color);
}

.node.active button {
  background: var(--node-color);
  border-color: var(--node-color);
  box-shadow: 0 0 22px var(--node-color);
  transform: scale(1.14);
}

.node.active button svg {
  stroke: #ffffff;
}

.node-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-family: var(--font-heading);
  color: var(--text-dim);
  margin-top: 0.3rem;
  white-space: nowrap;
}

.element-panel {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.element-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--active-theme, var(--accent-gold));
  transition: background 0.3s;
}

.element-panel .tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--active-theme, var(--accent-gold));
  margin-bottom: 0.6rem;
}

.element-panel h3 {
  font-size: 1.95rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.element-panel .desc {
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 1.8rem;
}

.amenity-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.amenity-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #ffffff;
  font-size: 0.96rem;
}

.amenity-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* ===== RESIDENCES & UNIT TYPOLOGIES ===== */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.unit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.unit-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.unit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1.4rem;
}

.unit-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.9rem;
  color: var(--accent-gold-dark);
  line-height: 1;
}

.unit-typology {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  background: rgba(200, 158, 71, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 158, 71, 0.3);
}

.unit-sizes {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.unit-size-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.unit-size-row span:last-child {
  color: var(--text-main);
  font-weight: 600;
}

/* Floor Plan Showcase Grid & Image CTA Overlays */
.blurred-floorplans-section {
  margin-top: 3.8rem;
}

.blurred-floorplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.blurred-fp-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.blurred-fp-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

.blurred-fp-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blurred-fp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(9px) brightness(0.48) contrast(1.1);
  transform: scale(1.08);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.blurred-fp-card:hover .blurred-fp-bg img {
  filter: blur(5px) brightness(0.58) contrast(1.15);
  transform: scale(1.03);
}

.blurred-fp-content {
  position: relative;
  z-index: 2;
  padding: 1.8rem 1.4rem;
  background: linear-gradient(0deg, rgba(14, 18, 25, 0.96) 0%, rgba(14, 18, 25, 0.75) 75%, rgba(14, 18, 25, 0) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.blurred-fp-badge {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  background: rgba(200, 158, 71, 0.2);
  border: 1px solid rgba(200, 158, 71, 0.4);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
}

.blurred-fp-content h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #ffffff;
}

.blurred-fp-content p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

/* Image CTA Hover Overlay for Gallery & Blog Images */
.img-cta-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.img-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 25, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.img-cta-container:hover .img-cta-overlay {
  opacity: 1;
}

.img-cta-btn {
  background: var(--accent-gold);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(10px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.img-cta-container:hover .img-cta-btn {
  transform: translateY(0);
}

/* ===== AMENITIES SECTION ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.amenity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.amenity-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.amenity-badge {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  background: rgba(200, 158, 71, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  align-self: center;
  margin: 0 auto;
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 158, 71, 0.12);
  display: grid;
  place-items: center;
  color: var(--accent-gold-dark);
  margin: 0 auto;
}

.amenity-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
}

/* ===== LOCATION SECTION & CATEGORIZED HIGHLIGHTS ===== */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media(min-width: 980px) {
  .location-wrap {
    grid-template-columns: 1.2fr 1fr;
  }
}

.location-info h3 {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.landmarks-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.landmark-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.9rem 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.landmark-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.landmark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.landmark-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.landmark-dist {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--accent-gold-dark);
  font-weight: 700;
  background: rgba(200, 158, 71, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 12px;
}

.map-box {
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  min-height: 370px;
  background: #0e1219;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.4rem;
}

.map-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-pin {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #c85a32;
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 30px rgba(200, 90, 50, 0.7);
  position: relative;
  z-index: 2;
}

/* Categorized Location Highlights Grid (Exact 3-Column Grid Layout) */
.location-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

@media(max-width: 1024px) {
  .location-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 640px) {
  .location-categories-grid {
    grid-template-columns: 1fr;
  }
}

.location-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.location-cat-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.location-cat-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--border-light);
}

.location-cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(200, 158, 71, 0.12);
  color: var(--accent-gold-dark);
  display: grid;
  place-items: center;
}

.location-cat-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--text-main);
}

.location-landmark-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-landmark-item:last-child {
  border-bottom: none;
}

.landmark-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.landmark-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.landmark-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.landmark-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.landmark-time-badge {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-gold-dark);
  background: rgba(200, 158, 71, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(200, 158, 71, 0.3);
}

/* ===== CALCULATOR & ESTIMATOR ===== */
.calculator-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.8rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

@media(min-width: 980px) {
  .calculator-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.calc-controls h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.field-group {
  margin-bottom: 1.5rem;
}

.field-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.field-group select,
.field-group input[type="text"] {
  width: 100%;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 0.95rem;
  padding: 0.8rem 1.1rem;
  outline: none;
  transition: border-color 0.3s;
}

.field-group select:focus,
.field-group input:focus {
  border-color: var(--accent-gold);
}

.range-container {
  position: relative;
  margin-top: 0.5rem;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-page);
  outline: none;
  border: 1px solid var(--border-light);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 12px var(--accent-gold-glow);
}

.checkbox-group {
  display: flex;
  gap: 1.4rem;
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--accent-gold);
  width: 16px;
  height: 16px;
}

.calc-summary {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-head h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 0.4rem;
}

.total-price-display {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.price-breakdown-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-top: 1.6rem;
  font-size: 0.88rem;
}

.price-breakdown-list li {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  padding-bottom: 0.35rem;
}

.price-breakdown-list li span.val {
  color: var(--text-main);
  font-weight: 600;
}

/* Ledger Table */
.ledger-table-wrap {
  margin-top: 3.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.ledger-table-wrap h3 {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

table.ledger-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

table.ledger-table tr {
  border-bottom: 1px solid var(--border-light);
}

table.ledger-table td {
  padding: 0.85rem 0.6rem;
}

table.ledger-table td:first-child {
  color: var(--text-main);
}

table.ledger-table td:last-child {
  font-family: var(--font-heading);
  text-align: right;
  color: var(--accent-gold-dark);
  font-weight: 700;
}

table.ledger-table tr.subhead td {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  padding-top: 1.4rem;
}

/* ===== HIGH-END LUXURY FAQ PAGE STYLES ===== */
/* ===== HIGH-END LUXURY FAQ PAGE STYLES ===== */
.faq-hero {
  padding: 14vh 6vw 3.5rem;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.faq-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.2rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.faq-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.search-filter-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.search-box-wrap {
  position: relative;
  width: 100%;
}

.search-box-wrap::before {
  content: '🔍';
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  opacity: 0.55;
  pointer-events: none;
}

.search-box-input {
  width: 100%;
  height: 60px;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 30px !important;
  padding: 0 1.8rem 0 3.4rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-main);
  outline: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}

.search-box-input:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 10px 35px var(--accent-gold-glow);
  background: #ffffff !important;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cat-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 25px;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  user-select: none;
}

.cat-tab:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-gold-glow);
}

.cat-tab.active {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #a87d2e 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(200, 158, 71, 0.45);
}

.faq-main-section {
  padding: 2rem 6vw 6rem;
  max-width: 1040px;
  margin: 0 auto;
}

.faq-category-block {
  margin-bottom: 4rem;
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--text-main);
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border-light);
}

.category-title .badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  background: rgba(200, 158, 71, 0.12);
  border: 1px solid rgba(200, 158, 71, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.faq-grid {
  display: grid;
  gap: 1.2rem;
}

/* FAQ CARD ACCORDION STYLES */
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 10px 30px rgba(200, 158, 71, 0.12);
  transform: translateY(-2px);
}

.faq-card.active {
  border-color: var(--accent-gold);
  box-shadow: 0 12px 35px var(--accent-gold-glow);
  background: #ffffff;
}

.faq-q {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  box-sizing: border-box;
}

.faq-q span {
  min-width: 0;
  flex: 1;
  word-break: break-word;
}

.faq-card:hover .faq-q {
  color: var(--accent-gold-dark);
}

.faq-card.active .faq-q {
  color: var(--accent-gold-dark);
}

.faq-arrow {
  width: 22px;
  height: 22px;
  stroke: var(--accent-gold);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.faq-card.active .faq-arrow {
  transform: rotate(180deg);
  stroke: var(--accent-gold-dark);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.8rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.98rem;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.35s ease, padding 0.4s ease;
}

.faq-card.active .faq-a {
  max-height: 600px;
  opacity: 1;
  padding: 1.2rem 1.8rem 1.8rem;
  border-top: 1px dashed var(--border-light);
}

.faq-a b,
.faq-a strong {
  color: var(--text-main);
  font-weight: 600;
}

.faq-no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-light);
  border-radius: 16px;
  margin-top: 2rem;
}

.faq-no-results h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.faq-no-results p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== HOME PAGE FAQ ACCORDION STYLES ===== */
.faq-home-section {
  padding: 6.5rem 6vw;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
}

.faq-accordion-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1.3rem;
}

.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.faq-trigger {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.faq-trigger span {
  min-width: 0;
  flex: 1;
  word-break: break-word;
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold-dark);
  transition: transform 0.35s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.8rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.96rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-content {
  max-height: 400px;
  padding: 1.3rem 1.8rem 1.7rem;
  border-top: 1px dashed var(--border-light);
}

/* ===== HIGH-FASHION LUXURY BLOG STYLES ===== */
.blog-hero {
  padding: 15vh 6vw 3.8rem;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.blog-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.blog-main-section {
  padding: 1rem 6vw 6rem;
  max-width: 1260px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.6rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 45px rgba(200, 158, 71, 0.18);
}

.blog-card-img {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 4;
  background: rgba(14, 18, 25, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

.blog-card-content {
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.blog-meta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold-dark);
  margin-bottom: 0.85rem;
}

.blog-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.95rem;
  line-height: 1.35;
}

.blog-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== POPUP PORTAL & MODAL DIALOG STYLES ===== */
#contact-popup-portal,
#thank-you-popup-portal {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#contact-popup-portal.show,
#thank-you-popup-portal.show {
  opacity: 1;
  pointer-events: auto;
}

.ar-flash-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  max-width: 470px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#contact-popup-portal.show .ar-flash-card,
#thank-you-popup-portal.show .ar-flash-card {
  transform: translateY(0) scale(1);
}

.ar-flash-image-wrap {
  position: relative;
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem -2rem;
  height: 165px;
  overflow: hidden;
}

.ar-flash-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.05);
}

.ar-flash-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 18, 25, 0.25) 0%, rgba(14, 18, 25, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.6rem;
}

.ar-flash-image-badge {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #a87d2e 100%);
  padding: 0.3rem 0.8rem;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.ar-flash-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ar-flash-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(14, 18, 25, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}

.ar-flash-close:hover {
  background: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
}

.ar-flash-title {
  font-family: var(--font-display);
  font-size: 1.95rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.ar-flash-subtitle {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 1.6rem;
}

.ar-flash-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ar-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.ar-form-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
}

.ar-required {
  color: #c85a32;
}

.ar-form-input {
  width: 100%;
  height: 50px;
  background: var(--bg-page) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 8px !important;
  color: var(--text-main) !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0 1.2rem;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.ar-form-input:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px rgba(200, 158, 71, 0.18);
}

.ar-phone-wrap {
  display: flex;
  gap: 0.6rem;
}

.ar-country-code {
  width: 80px !important;
  text-align: center;
  font-weight: 700;
}

.ar-submit-btn {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #a87d2e 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(168, 125, 46, 0.35);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.ar-submit-btn:hover {
  background: linear-gradient(135deg, #dfb763 0%, var(--accent-gold) 100%);
  box-shadow: 0 8px 25px rgba(200, 158, 71, 0.5);
}

.ar-thank-content {
  text-align: center;
  padding: 1.6rem 0;
}

.ar-thank-emoji {
  font-size: 3.6rem;
  margin-bottom: 0.8rem;
}

.ar-thank-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.ar-thank-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ===== ENQUIRY SECTION ===== */
.enquiry-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3.8rem 3vw;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

@media(min-width: 980px) {
  .enquiry-wrap {
    grid-template-columns: 1fr 1.2fr;
    padding: 4.2rem;
  }
}

.enquiry-copy p {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-info {
  display: grid;
  gap: 0.8rem;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.contact-info strong {
  color: var(--text-main);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media(min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  background: var(--bg-page) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 8px !important;
  color: var(--text-main) !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0 1.2rem;
  outline: none;
  box-sizing: border-box;
  transition: all 0.35s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px rgba(200, 158, 71, 0.18);
}

.confirm-msg {
  display: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: #1e3a34;
  margin-top: 0.5rem;
}

.confirm-msg.show {
  display: block;
}

/* ===== ULTRA-LUXURY ARCHITECTURAL FOOTER ===== */
.luxury-footer {
  background: linear-gradient(180deg, #0e1219 0%, #070a0e 100%);
  color: #ffffff;
  border-top: 2px solid var(--accent-gold);
  padding: 5.5rem 6vw 2.6rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.5);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media(min-width: 980px) {
  .footer-top-grid {
    grid-template-columns: 2.2fr 1fr 1fr 1.8fr;
  }
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: 0.06em;
}

.footer-brand p.address {
  color: var(--accent-gold-light);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-brand p.desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.footer-divider-line {
  height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin: 1.4rem 0;
  width: 100%;
  max-width: 340px;
}

.marketed-by-tag {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
}

.footer-nav-col h4,
.footer-disclaimer-col h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}

.footer-nav-col ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.footer-nav-col ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.92rem;
  display: inline-block;
}

.footer-nav-col ul a:hover {
  color: var(--accent-gold-light);
  transform: translateX(4px);
}

.footer-disclaimer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(200, 158, 71, 0.25);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile Sticky Action Bar */
.mobile-bottom-bar {
  display: none;
}

/* Responsiveness Media Queries */
@media(max-width: 1200px) {
  header {
    padding: 0 3vw;
  }
  nav.links {
    gap: 1.1rem;
    font-size: 0.82rem;
  }
}

@media(max-width: 1024px) {
  header nav.links {
    display: none;
  }

  .header-actions .btn {
    display: none !important;
  }

  .menu-trigger {
    display: block;
    background: rgba(200, 158, 71, 0.12);
    border: 1px solid rgba(200, 158, 71, 0.3);
    border-radius: 8px;
    color: var(--accent-gold-dark);
    padding: 0.3rem 0.6rem;
    font-size: 1.5rem;
    line-height: 1;
  }

  section {
    padding: 4.5rem 5vw;
  }
}

@media(max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    font-size: 15px;
  }

  header {
    height: 70px;
    padding: 0 4vw;
    max-width: 100vw;
  }

  .brandmark {
    font-size: 1.15rem;
  }

  .brandmark .glyph {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  #floatingEnquireBtn,
  #floatingCallBtn {
    display: none !important;
  }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(14, 18, 25, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--accent-gold);
    z-index: 9990;
    padding: 8px 12px;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
  }

  .mobile-bottom-bar a {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .mobile-btn-call {
    background: rgba(200, 158, 71, 0.15);
    color: var(--accent-gold-light) !important;
    border: 1px solid rgba(200, 158, 71, 0.4);
  }

  .mobile-btn-enquire {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #a87d2e 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(200, 158, 71, 0.35);
  }

  section {
    padding: 3.5rem 4vw;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .section-head {
    max-width: 100%;
  }

  .section-head h2 {
    font-size: clamp(1.75rem, 6.5vw, 2.4rem);
    word-break: break-word;
  }

  .section-head p {
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
    padding: 95px 4vw 3.5rem;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 6.8vw, 2.8rem);
    line-height: 1.2;
    word-break: break-word;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
  }

  .stat-strip {
    margin-top: 2.2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.2rem 1rem;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .stat .num {
    font-size: 1.8rem;
  }

  .stat .lbl {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }

  .stat:nth-child(5) {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 0.6rem;
    border-top: 1px dashed rgba(200, 158, 71, 0.25);
  }

  .carousel-premium {
    max-width: 100%;
    height: 48px;
    padding: 0 10px;
  }

  .slide-item {
    height: 48px;
    padding: 0 0.8rem;
  }

  .slide-item .slide-text {
    font-size: 0.72rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .faq-home-section {
    padding: 3.5rem 4vw;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .faq-accordion-list {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .faq-trigger {
    padding: 1.1rem 1.2rem;
    font-size: 0.94rem;
  }

  .faq-trigger span {
    min-width: 0;
    flex: 1;
    word-break: break-word;
  }

  .faq-content {
    padding: 0 1.2rem;
    font-size: 0.9rem;
  }

  .faq-item.active .faq-content {
    padding: 1.1rem 1.2rem 1.4rem;
  }

  .faq-card .faq-q {
    padding: 1.1rem 1.2rem;
    font-size: 0.94rem;
  }

  .faq-card .faq-q span {
    min-width: 0;
    flex: 1;
    word-break: break-word;
  }

  .faq-card.active .faq-a {
    padding: 1.1rem 1.2rem 1.4rem;
    font-size: 0.9rem;
  }

  .ledger-table-wrap {
    padding: 1.4rem 1rem;
    margin-top: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table.ledger-table {
    font-size: 0.82rem;
    min-width: 480px;
  }

  .calculator-wrap {
    padding: 1.6rem 1.2rem;
  }

  .calc-summary {
    padding: 1.4rem 1.2rem;
  }

  .total-price-display {
    font-size: 1.8rem;
  }

  .wheel-wrapper {
    width: 270px;
    height: 270px;
  }

  .wheel-hub {
    width: 115px;
    height: 115px;
    padding: 0.5rem;
  }

  .wheel-hub .hub-name {
    font-size: 1.1rem;
  }

  .node {
    width: 44px;
    height: 44px;
    margin: -22px;
  }

  .node button {
    width: 42px;
    height: 42px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Amenities 2-Column Centered Mobile Layout */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem;
  }

  .amenity-card {
    padding: 1.1rem 0.6rem;
    gap: 0.55rem;
    border-radius: 12px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .amenity-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto;
  }

  .amenity-icon svg {
    width: 20px;
    height: 20px;
  }

  .amenity-name {
    font-size: 0.82rem;
    line-height: 1.3;
    text-align: center;
  }

  .amenity-badge {
    font-size: 0.56rem;
    padding: 0.15rem 0.45rem;
    align-self: center;
    margin: 0 auto;
  }

  body {
    padding-bottom: 60px;
  }
}

@media(max-width: 480px) {
  .carousel-premium {
    height: 48px;
    max-width: 100%;
    margin-bottom: 1.4rem;
  }

  .slide-item {
    height: 48px;
    padding: 0 0.5rem;
    gap: 0.4rem;
  }

  .slide-item .slide-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.45rem;
  }

  .slide-item .slide-text {
    font-size: 0.68rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}