/* ============================================================
   BrandX — premium real estate theme (sample: Mayukha Infra)
   Design: Dark Navy + Warm Gold | Luxury Real Estate
   ============================================================ */

/* ----- Google Fonts (loaded via HTML) ----- */

/* ----- CSS Variables ----- */
:root {
  --navy-darkest: #060C18;
  --navy-dark:    #0B1526;
  --navy:         #0F1E38;
  --navy-light:   #162A4A;
  --navy-card:    #111D33;
  --gold:         #C9A55C;
  --gold-light:   #E8C880;
  --gold-dark:    #9A7A35;
  --gold-pale:    rgba(201, 165, 92, 0.12);
  --cream:        #F8F3EA;
  --white:        #FFFFFF;
  --gray-100:     #F6F6F6;
  --gray-200:     #EAEAEA;
  --gray-400:     #BBBBBB;
  --gray-500:     #888888;
  --gray-700:     #444444;
  --text-on-dark: #E8E2D8;
  --text-muted:   #8B8070;
  --brand-border: rgba(201, 165, 92, 0.28);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --nav-link-size: clamp(15px, 0.35vw + 14px, 17px);
  --nav-cta-size: clamp(13px, 0.25vw + 12px, 15px);
  --nav-link-tracking: 0.055em;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:       8px;
  --radius-lg:    16px;
  --shadow-card:  0 8px 40px rgba(0,0,0,0.35);
  --shadow-gold:  0 4px 30px rgba(201, 165, 92, 0.25);
  --gradient-gold: linear-gradient(135deg, #B8820A 0%, #E8C880 50%, #B8820A 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(6,12,24,0.3) 0%, rgba(6,12,24,0.78) 100%);
  /* Navbar — readable over bright hero imagery */
  --navbar-bg: linear-gradient(
    180deg,
    rgba(10, 18, 36, 0.97) 0%,
    rgba(6, 12, 22, 0.92) 45%,
    rgba(5, 10, 20, 0.88) 100%
  );
  --navbar-bg-scrolled: linear-gradient(
    180deg,
    rgba(8, 14, 28, 0.99) 0%,
    rgba(4, 8, 16, 0.98) 100%
  );
  --navbar-edge: rgba(201, 165, 92, 0.22);
  --navbar-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --navbar-shadow-scrolled: 0 6px 32px rgba(0, 0, 0, 0.55);
  /* Space below fixed .navbar before hero copy (bar uses ~72–110px depending on scroll) */
  --hero-top-clearance: clamp(96px, 11vh, 132px);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }
input, select, textarea { font-family: var(--font-sans); }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  font-weight: 700;
}
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy-dark); }
.text-cream  { color: var(--cream); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* ----- Layout Utilities ----- */
.container {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}
.section { padding: 100px 0; }
.section-dark { background: var(--navy-dark); }
.section-darker { background: var(--navy-darkest); }
.section-cream { background: var(--cream); }
.section-light { background: var(--gray-100); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-40  { margin-top: 40px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }

/* ----- Section Header ----- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
}
.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-tag::before { right: calc(100% + 8px); }
.section-tag::after  { left:  calc(100% + 8px); }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-subtitle-light { color: rgba(232, 226, 216, 0.7); }
.title-underline {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-darkest);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201, 165, 92, 0.45);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-darkest);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy-dark);
}
.btn-dark {
  background: var(--navy-dark);
  color: var(--gold);
  border: 1px solid rgba(201,165,92,0.3);
}
.btn-dark:hover {
  background: var(--navy-light);
  border-color: var(--gold);
}
.btn-lg { padding: 17px 46px; font-size: 14px; }
.btn-sm { padding: 10px 24px; font-size: 12px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
  background: var(--navbar-bg);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--navbar-edge);
  box-shadow: var(--navbar-shadow);
  overflow: visible;
}
/* Thin accent line — separates bar from hero without heavy chrome */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 165, 92, 0.35) 20%,
    rgba(232, 200, 128, 0.5) 50%,
    rgba(201, 165, 92, 0.35) 80%,
    transparent 100%
  );
  opacity: 0.85;
  pointer-events: none;
}
.navbar.scrolled {
  background: var(--navbar-bg-scrolled);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  padding: 14px 0;
  box-shadow: var(--navbar-shadow-scrolled), inset 0 -1px 0 rgba(201, 165, 92, 0.08);
  border-bottom-color: var(--brand-border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 24px);
  overflow: visible;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  /* Do not use min-width:0 here — it lets the row shrink and crushes .logo-text to ~0 width */
  min-width: min-content;
  max-width: min(58vw, 600px);
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-darkest);
  flex-shrink: 0;
}
.logo-icon.logo-icon-img {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.logo-icon.logo-icon-img img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Critical: must not shrink below the brand line — min-width:0 caused one-char “columns” */
  min-width: max-content;
  flex: 0 1 auto;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  overflow: visible;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}
/* Only on very narrow viewports allow wrapping (hamburger layout uses full row width first) */
@media (max-width: 380px) {
  .logo-name {
    white-space: normal;
    overflow-wrap: break-word;
  }
}
.logo-tagline {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* Pill tagline only in header — reads clearly on high-contrast bar */
.navbar .logo-tagline {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 500;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  gap: clamp(12px, 2.2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0 4px;
  overflow: visible;
}
.navbar-nav > li {
  list-style: none;
  flex: 0 0 auto;
  position: relative;
  overflow: visible;
}
/* Top-level links only — avoid nowrap on submenu rows */
.navbar-nav > li > .nav-link {
  font-family: var(--font-sans);
  font-size: var(--nav-link-size);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: var(--nav-link-tracking);
  font-variant-ligatures: common-ligatures;
  -webkit-font-smoothing: antialiased;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  line-height: 1.25;
  padding: 10px 6px;
}
.navbar-nav > li > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.navbar-nav > li > .nav-link:hover,
.navbar-nav > li > .nav-link.active {
  color: var(--gold-light);
}
.navbar-nav > li > .nav-link:hover::after,
.navbar-nav > li > .nav-link.active::after {
  width: 100%;
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
  flex-shrink: 0;
}
.navbar-cta .btn,
.navbar-cta .navbar-cta__btn {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.055em;
  font-size: var(--nav-cta-size);
  line-height: 1.25;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: clamp(18px, 2vw, 26px);
  padding-right: clamp(18px, 2vw, 26px);
}
.navbar-item--dropdown { position: relative; }
.navbar-item--dropdown > .nav-link {
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23C9A55C' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 top 55%;
  background-size: 10px auto;
}
.mobile-nav .mobile-nav__cta-btn {
  align-self: stretch;
  margin-left: min(28px, 6vw);
  margin-right: min(28px, 6vw);
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: clamp(13px, 0.35vw + 12px, 15px);
  font-weight: 600;
}
.navbar-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: max(100%, 200px);
  max-width: min(280px, calc(100vw - 32px));
  padding: 8px 0;
  margin: 0;
  background: var(--navy-darkest);
  border: 1px solid rgba(201, 165, 92, 0.22);
  border-radius: 10px;
  box-shadow: var(--navbar-shadow);
  flex-direction: column;
  gap: 0;
  z-index: 1200;
}
.navbar-item--dropdown:hover .navbar-submenu,
.navbar-item--dropdown:focus-within .navbar-submenu {
  display: flex;
}
.navbar-submenu .navbar-submenu__link {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: clamp(13px, 0.2vw + 12px, 15px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: normal;
  line-height: 1.35;
  word-break: break-word;
  text-shadow: none;
}
.navbar-submenu .navbar-submenu__link::after {
  display: none;
}
.navbar-submenu .navbar-submenu__link:hover {
  color: var(--gold);
  background: rgba(201, 165, 92, 0.08);
}
.mobile-nav__sub {
  font-size: 17px !important;
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  opacity: 0.88;
  padding-left: 1.25rem !important;
  align-self: stretch;
  text-align: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--navy-darkest);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav .nav-link {
  font-size: 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
}
/* Generic nav link fallback (e.g. static index.html) */
.nav-link {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--hero-top-clearance) + env(safe-area-inset-top, 0px));
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(6,12,24,0.35) 0%, rgba(6,12,24,0.82) 100%),
    url('https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 165, 92, 0.15);
  border: 1px solid rgba(201, 165, 92, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge i { font-size: 10px; }
.hero-title {
  font-size: clamp(38px, 6vw, 78px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-title span { color: var(--gold); display: block; }
.hero-body {
  max-width: 640px;
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(232, 226, 216, 0.8);
  margin-bottom: 44px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Hero Search Bar */
.hero-search {
  margin-top: 60px;
  background: rgba(6, 12, 24, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 165, 92, 0.2);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: stretch;
  gap: 4px;
  max-width: 820px;
}
.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  border-right: 1px solid rgba(201, 165, 92, 0.15);
}
.search-field:last-of-type { border-right: none; }
.search-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.search-field select {
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text-on-dark);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.search-field select option { background: var(--navy-dark); color: var(--text-on-dark); }
.hero-search .btn { border-radius: 8px; padding: 14px 30px; flex-shrink: 0; align-self: center; }

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,165,92,0.8), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--navy-darkest);
  border-top: 1px solid rgba(201, 165, 92, 0.1);
  border-bottom: 1px solid rgba(201, 165, 92, 0.1);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(201, 165, 92, 0.12);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-suffix { font-size: 28px; }
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(232, 226, 216, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  padding-left: 44px;
}
.about-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.about-title {
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-title em { font-style: italic; color: var(--gold-dark); }
.about-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 32px;
}
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}
.about-feature i {
  width: 32px;
  height: 32px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}
.about-rera {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  padding: 12px 20px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}
.about-rera strong { color: var(--navy-dark); }
.about-image-wrap { position: relative; }
.about-image-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}
.about-image-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy-dark);
  border: 1px solid rgba(201, 165, 92, 0.25);
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
  min-width: 160px;
}
.badge-number {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge-text {
  font-size: 12px;
  color: rgba(232, 226, 216, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================================
   FEATURED PROPERTIES
   ============================================================ */
.properties-section { background: var(--gray-100); }
.section-action {
  text-align: center;
  margin-top: 50px;
}

/* Property Card */
.property-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-color: rgba(201, 165, 92, 0.4);
}
.property-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .property-image img { transform: scale(1.07); }
.property-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,12,24,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.property-card:hover .property-image-overlay { opacity: 1; }
.property-overlay-actions {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
  white-space: nowrap;
}
.property-card:hover .property-overlay-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
}
.badge-ready   { background: #1a7a4a; color: #fff; }
.badge-under   { background: #1a4a7a; color: #fff; }
.badge-launch  { background: #7a1a1a; color: #fff; }
.badge-sold    { background: #4a4a4a; color: #fff; }
.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--gray-500);
  font-size: 15px;
  transition: var(--transition);
  z-index: 1;
}
.wishlist-btn:hover, .wishlist-btn.active { color: #e74c3c; background: var(--white); }
.property-body { padding: 24px; }
.property-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.property-card:hover .property-name { color: var(--gold-dark); }

/* Web design — gallery block (no listing CTAs / overlays) */
.section-gallery .gallery-grid {
  gap: 28px;
}
#gallery .property-card--gallery .property-image {
  height: 220px;
}
#gallery .property-card--gallery.property-card--gallery-no-media .property-body {
  padding: 26px 24px 30px;
}
#gallery .property-card--gallery .property-body .feature-desc {
  margin-top: 10px !important;
  line-height: 1.55;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.property-location i { color: var(--gold); font-size: 12px; }
.property-location--muted { margin-bottom: 12px; }
.property-specs--product { flex-wrap: wrap; gap: 12px 18px; margin-bottom: 12px; }
.property-card--product .property-footer { align-items: flex-start; gap: 12px; }
.property-price--product {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  font-size: 1.05rem;
}
.product-mrp { color: var(--gray-500); font-size: 0.9em; }
.product-mrp del { text-decoration-thickness: 1px; }
.product-sale { font-weight: 700; color: var(--gold-dark); font-size: 1.12em; }
.property-spec--stock-out_of_stock { color: #a33; }
.property-spec--stock-low_stock { color: #9a7b1a; }
.property-spec--stock-preorder { color: var(--navy-dark); }
.property-divider {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  margin: 16px 0;
}
.property-specs {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.property-spec {
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-spec i { color: var(--gold); font-size: 13px; }
.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.property-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-dark);
}
.property-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  font-family: var(--font-sans);
  display: block;
}
.property-price sub {
  font-size: 13px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Dark card variant */
.property-card-dark {
  background: var(--navy-card);
  border-color: rgba(201, 165, 92, 0.1);
}
.property-card-dark:hover { border-color: rgba(201, 165, 92, 0.4); }
.property-card-dark .property-name { color: var(--text-on-dark); }
.property-card-dark:hover .property-name { color: var(--gold-light); }
.property-card-dark .property-location { color: var(--text-muted); }
.property-card-dark .property-specs { color: var(--text-muted); }
.property-card-dark .property-divider { background: rgba(201,165,92,0.1); }
.property-card-dark .property-price { color: var(--gold-light); }
.property-card-dark .property-price span { color: var(--text-muted); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--navy-dark); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 165, 92, 0.12);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,165,92,0.1) 0%, transparent 70%);
  transition: var(--transition-slow);
}
.feature-card:hover {
  background: rgba(201, 165, 92, 0.05);
  border-color: rgba(201, 165, 92, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(201,165,92,0.08);
}
.feature-card:hover::before { bottom: -20px; }
.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(201,165,92,0.15), rgba(201,165,92,0.05));
  border: 1px solid rgba(201,165,92,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 26px;
  color: var(--gold);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--navy-darkest);
  box-shadow: 0 0 30px rgba(201,165,92,0.3);
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 14px;
  color: rgba(232, 226, 216, 0.55);
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.testimonial-card:hover {
  border-color: rgba(201, 165, 92, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 18px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,165,92,0.3);
}
.author-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-darkest);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
}
.author-role { font-size: 13px; color: var(--gray-500); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(6,12,24,0.88) 0%, rgba(11,21,38,0.72) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(30px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-title span { color: var(--gold); }
.cta-subtitle {
  font-size: 18px;
  color: rgba(232, 226, 216, 0.75);
  margin-bottom: 44px;
  line-height: 1.8;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--navy-darkest); }
.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-block-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px 56px;
  align-items: start;
  margin-bottom: 48px;
}
.contact-block-row--split {
  grid-template-columns: 1fr 1fr;
}
.contact-block-row--map-only,
.contact-block-row--details-only {
  grid-template-columns: 1fr;
  max-width: 960px;
}
.contact-block-row--map-top.contact-block-row--map-only {
  max-width: none;
  width: 100%;
}
.contact-block-row--details-only {
  margin-left: auto;
  margin-right: auto;
}
.contact-map-col {
  min-width: 0;
}
.contact-map-col .contact-map-embed {
  margin-top: 0;
}
.contact-details-col {
  min-width: 0;
  padding-top: 4px;
}
.contact-details-col .contact-info-title {
  margin-top: 0;
  margin-bottom: 20px;
}
.contact-enquire-row {
  width: 100%;
}
.contact-enquire-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
}
.contact-enquire-form-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.contact-enquire-form-col > .contact-form-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-enquire-form-col .contact-main-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-enquire-form-col .contact-enquire-cta {
  margin-top: auto;
}
.contact-enquire-aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.contact-enquire-aside--plain {
  padding: 4px 0 0 8px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.contact-enquire-aside .contact-details-legacy,
.contact-enquire-aside .contact-details-rich {
  flex: 1;
}
.contact-enquire-aside--plain .contact-info-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-enquire-aside--plain .contact-item-value {
  color: var(--text-on-dark);
}
.contact-enquire-aside--plain .contact-icon {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 165, 92, 0.22);
}
.contact-enquire-aside--plain .contact-details-rich {
  color: var(--text-on-dark);
}
.contact-enquire-aside--plain .contact-details-rich h3,
.contact-enquire-aside--plain .contact-details-rich h4 {
  font-family: var(--font-serif);
  color: var(--white);
}
.contact-enquire-cta {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  gap: 10px;
}
.contact-enquire-cta .fab {
  font-size: 1.15em;
}
.contact-enquire-aside .contact-details-rich,
.contact-enquire-aside .contact-details-legacy {
  margin-top: 0;
}
.contact-details-rich {
  font-size: 15px;
  color: var(--text-on-dark);
  line-height: 1.75;
}
.contact-details-rich a {
  color: var(--gold);
}
.contact-details-rich a:hover {
  color: var(--white);
}
.contact-details-legacy .contact-info-title {
  margin-top: 0;
}
.contact-enquire-row--solo {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form-wrap {
  background: var(--navy-card);
  border: 1px solid rgba(201, 165, 92, 0.15);
  border-radius: 16px;
  padding: 50px 44px;
}
.contact-form-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 165, 92, 0.15);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-on-dark);
  outline: none;
  transition: border-color 0.3s;
}
.form-control:focus {
  border-color: rgba(201, 165, 92, 0.5);
  background: rgba(201, 165, 92, 0.03);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control option { background: var(--navy-dark); }
textarea.form-control { resize: vertical; min-height: 120px; }
.contact-info { padding-top: 20px; }
.contact-info-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 165, 92, 0.1);
  border: 1px solid rgba(201, 165, 92, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-item:hover .contact-icon {
  background: var(--gold);
  color: var(--navy-darkest);
}
.contact-item-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px;
  color: var(--text-on-dark);
  font-weight: 500;
}
.contact-item-value a { color: var(--text-on-dark); }
.contact-item-value a:hover { color: var(--gold); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 165, 92, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy-darkest);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-darkest);
  border-top: 1px solid rgba(201, 165, 92, 0.1);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.35fr)
    minmax(200px, 2.15fr)
    minmax(180px, 1fr);
  gap: 48px 40px;
  padding-bottom: 60px;
  align-items: start;
}
.footer-about { }
.footer-main-nav {
  min-width: 0;
}
.footer-nav-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px 32px;
  align-items: start;
}
.footer-nav-group {
  min-width: 0;
}
.footer-nav-group .footer-title {
  margin-bottom: 16px;
}
.footer-nav-group .footer-links {
  gap: 10px;
}
.footer-link--sub {
  padding-left: 2px;
}
.footer-contact-col {
  min-width: 0;
}
.footer-about .social-links--footer-about {
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer .social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 165, 92, 0.15);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.footer .social-link:hover {
  background: var(--gold);
  color: var(--navy-darkest);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}
.footer-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link i { font-size: 10px; color: var(--gold); }
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-text {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }
.rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 165, 92, 0.1);
  border: 1px solid rgba(201, 165, 92, 0.25);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 16px;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  background: #1ebe5b;
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.65); }
}
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 997;
  width: 44px;
  height: 44px;
  background: var(--navy-dark);
  border: 1px solid rgba(201, 165, 92, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy-darkest); }

/* ============================================================
   PAGE HERO (Properties & Details pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background-image:
    linear-gradient(to bottom, rgba(6,12,24,0.7) 0%, rgba(6,12,24,0.9) 100%),
    url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero-title {
  font-size: clamp(32px, 5vw, 62px);
  color: var(--white);
  margin-bottom: 18px;
}
.page-hero-subtitle {
  font-size: 17px;
  color: rgba(232, 226, 216, 0.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(232, 226, 216, 0.6);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 10px; }

/* ============================================================
   PROPERTIES LISTING PAGE
   ============================================================ */
.filter-section {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 140px;
}
.filter-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.filter-select {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A55C' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.filter-select:focus { border-color: var(--gold); }
.filter-btn { display: flex; gap: 12px; align-items: flex-end; }
.results-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.results-count { font-size: 15px; color: var(--gray-500); }
.results-count strong { color: var(--navy-dark); font-weight: 600; }
.sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-500);
}
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-200);
  background: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.properties-grid.list-view { grid-template-columns: 1fr; }
.properties-grid.list-view .property-card {
  display: grid;
  grid-template-columns: 300px 1fr;
}
.properties-grid.list-view .property-image { height: auto; min-height: 220px; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.page-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  background: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--gold);
}

/* ============================================================
   PROPERTY DETAILS PAGE
   ============================================================ */
.detail-hero {
  padding-top: 90px;
  background: var(--navy-darkest);
}
.detail-gallery-main {
  position: relative;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}
.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.gallery-btn {
  width: 48px;
  height: 48px;
  background: rgba(6,12,24,0.8);
  border: 1px solid rgba(201,165,92,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
}
.gallery-btn:hover { background: var(--gold); color: var(--navy-darkest); }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery-thumb {
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb:hover { border-color: rgba(201,165,92,0.6); transform: scale(1.02); }

/* Detail Content */
.detail-section { padding: 60px 0; background: var(--white); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}
.detail-header { margin-bottom: 32px; }
.detail-status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.detail-title {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.detail-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.detail-location i { color: var(--gold); }
.detail-price-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  margin-bottom: 32px;
}
.detail-price {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}
.detail-price-note {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.detail-specs-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 32px;
}
.detail-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.detail-spec-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}
.detail-spec-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}
.detail-spec-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tabs */
.detail-tabs { margin-bottom: 36px; }
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 32px;
  gap: 0;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 28px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--navy-dark); }
.tab-btn.active { color: var(--gold-dark); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.detail-desc-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Amenities */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--gray-100);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition);
  border: 1px solid transparent;
}
.amenity-item:hover {
  background: var(--cream);
  border-color: rgba(201,165,92,0.3);
  color: var(--navy-dark);
}
.amenity-item i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Enquiry Sidebar */
.enquiry-card {
  background: var(--navy-dark);
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid rgba(201, 165, 92, 0.15);
  position: sticky;
  top: 100px;
}
.enquiry-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}
.enquiry-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.enquiry-agent {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(201, 165, 92, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(201, 165, 92, 0.15);
  margin-bottom: 24px;
}
.agent-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-darkest);
}
.agent-name {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}
.agent-title { font-size: 12px; color: var(--text-muted); }
.enquiry-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.quick-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 165, 92, 0.15);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: var(--transition);
}
.quick-action:hover {
  background: rgba(201, 165, 92, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.quick-action i { font-size: 14px; color: var(--gold); }
.enquiry-divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 12px;
}
.enquiry-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(201,165,92,0.15);
}
.enquiry-divider span {
  background: var(--navy-dark);
  padding: 0 14px;
  position: relative;
}

/* Map embed */
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--gray-200);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* Similar Properties */
.similar-section { background: var(--gray-100); padding: 80px 0; }

/* Contact map (trusted embed from sitedata) */
.contact-map-embed {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 165, 92, 0.25);
  min-height: 200px;
}
.contact-map-embed iframe {
  width: 100%;
  min-height: 280px;
  height: 320px;
  border: 0;
  display: block;
}

/* Property quick-view modal */
.property-modal {
  max-width: 960px;
  width: calc(100% - 32px);
  border: none;
  border-radius: 16px;
  padding: 0;
  background: var(--navy-card);
  color: var(--text-on-dark);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.property-modal::backdrop {
  background: rgba(6, 12, 24, 0.75);
  backdrop-filter: blur(4px);
}
.property-modal-inner {
  position: relative;
  padding: 20px 20px 24px;
}
.property-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.property-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.property-modal-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.property-modal-visual img {
  width: 100%;
  display: block;
  max-height: 320px;
  object-fit: cover;
}
.property-modal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.property-modal-body h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--white);
}
.property-modal-loc {
  color: var(--gold-light);
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.property-modal-price {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
.property-modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.property-modal-spec strong {
  color: var(--gold);
  margin-right: 4px;
}
.property-modal-section h4 {
  margin: 0 0 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.property-modal-section p {
  margin: 0 0 8px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(232, 226, 216, 0.9);
}
.property-modal-amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  font-size: 0.88rem;
}
.property-modal-amenities li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark);
}
.property-modal-amenities i {
  color: var(--gold);
}
.property-modal-body .btn {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .property-modal-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite linear;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-nav-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  :root {
    --nav-link-size: clamp(14px, 0.3vw + 12px, 16px);
    --nav-cta-size: clamp(12px, 0.2vw + 11px, 14px);
    --nav-link-tracking: 0.05em;
  }
  .navbar-logo {
    max-width: min(54vw, 520px);
  }
  .navbar-nav {
    gap: clamp(8px, 1.5vw, 18px);
  }
}

@media (max-width: 960px) {
  .about-grid   { grid-template-columns: 1fr; gap: 50px; }
  .contact-block-row {
    grid-template-columns: 1fr;
  }
  .contact-enquire-row--split {
    grid-template-columns: 1fr;
  }
  .detail-grid  { grid-template-columns: 1fr; }
  .enquiry-card { position: static; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-search { flex-wrap: wrap; }
  .search-field { border-right: none; border-bottom: 1px solid rgba(201,165,92,0.15); min-width: 40%; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --hero-top-clearance: clamp(84px, 12vh, 112px);
  }
  .section { padding: 70px 0; }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  /* Use space up to the hamburger; keep min-content so the brand never collapses to zero width */
  .navbar-logo {
    flex: 1 1 auto;
    min-width: min-content;
    max-width: none;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .about-image-badge { left: 16px; bottom: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .detail-gallery-main { height: 300px; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .detail-specs-row { gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .enquiry-quick-actions { grid-template-columns: 1fr; }
  .cta-section { padding: 80px 0; }
}

@media (max-width: 540px) {
  .properties-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 38px; }
  .hero-search { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; }
  .filter-group { min-width: 100%; }
  .results-info { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Public theme — parity helpers */
.pub-float-stack {
  position: fixed;
  bottom: 170px;
  right: 30px;
  z-index: 996;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.pub-float-stack a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 1px solid rgba(201, 165, 92, 0.35);
  color: var(--gold);
  font-size: 18px;
  transition: var(--transition);
}
.pub-float-stack a:hover {
  background: var(--gold);
  color: var(--navy-darkest);
  border-color: var(--gold);
}

/* Floating actions — right sticky (WordPress-like); classic uses .whatsapp-float + .pub-float-stack above */
.pub-float-wrap--dock {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 998;
}
.pub-float-dock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 10px 0 0 10px;
  overflow: visible;
  background: rgba(6, 12, 24, 0.92);
  border: 1px solid rgba(201, 165, 92, 0.22);
  border-right: 0;
  box-shadow: -8px 10px 30px rgba(0, 0, 0, 0.38);
}
.pub-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 1px solid rgba(201, 165, 92, 0.38);
  color: var(--gold);
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.pub-float-btn:hover {
  background: var(--gold);
  color: var(--navy-darkest);
  border-color: var(--gold);
}
.pub-float-btn--dock {
  width: 44px;
  height: 42px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 18, 34, 0.95);
  color: #fff;
  font-size: 18px;
  position: relative;
}
.pub-float-btn--dock:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 9px;
}
.pub-float-btn--dock:first-child {
  border-top-left-radius: 9px;
}
.pub-float-btn--dock::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #1f7ed6;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.pub-float-btn--dock:hover::before {
  opacity: 1;
}
.pub-float-btn--dock:hover {
  background: #0ea5e9;
  color: #fff;
  transform: none;
}
.pub-float-btn--wa {
  width: 44px;
  height: 42px;
  background: #25d366;
  border-color: transparent;
  color: #fff;
  font-size: 20px;
  box-shadow: none;
  animation: none;
}
.pub-float-btn--wa:hover {
  background: #1ebe5b;
  color: #fff;
  border-color: transparent;
  transform: none;
}
@media (max-width: 540px) {
  .pub-float-wrap--dock {
    right: 0;
  }
}
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.why-split__text { text-align: left; }
.why-split__media { text-align: right; }
.clients-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: center;
  align-items: center;
}
.client-logo-wrap { min-height: 52px; display: flex; align-items: center; justify-content: center; }
.client-logo {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 0.35s, opacity 0.35s, transform 0.35s;
}
.client-logo:hover { filter: none; opacity: 1; transform: translateY(-2px); }
.client-name-fallback {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  padding: 12px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
}
.award-card {
  padding: 24px;
  border: 1px solid rgba(201, 165, 92, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}
.award-card:hover {
  border-color: rgba(201, 165, 92, 0.45);
  transform: translateY(-4px);
}
.award-card__image {
  width: 100%;
  max-height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.award-card__image img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}
.award-card__title {
  margin: 0;
  font-size: 15px;
  color: rgba(232, 226, 216, 0.92);
  line-height: 1.55;
  text-align: left;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-details {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy-dark);
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-details[open] .faq-summary { border-bottom: 1px solid var(--gray-200); }
.faq-answer { padding: 16px 22px 22px; color: var(--gray-700); line-height: 1.85; }
.flyer-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.flyer-card:hover {
  border-color: rgba(201, 165, 92, 0.45);
  box-shadow: var(--shadow-card);
}
.flyer-card__media {
  display: block;
  height: 180px;
  overflow: hidden;
  background: var(--gray-100);
}
.flyer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flyer-card__body { padding: 20px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.flyer-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy-dark);
}

/* ----- Web design: popups — frameless overlay (image + controls, no card) ----- */
.wd-popups {
  border: none;
  padding: max(12px, env(safe-area-inset-top, 0px)) max(12px, env(safe-area-inset-right, 0px))
    max(12px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
  margin: auto;
  width: min(100vw, 100%);
  max-width: 100vw;
  max-height: 100dvh;
  max-height: 100vh;
  background: transparent;
  color: var(--text-on-dark);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-popups::backdrop {
  background: rgba(6, 12, 24, 0.82);
  backdrop-filter: blur(3px);
}
.wd-popups__stack {
  position: relative;
  z-index: 5;
  display: block;
  width: fit-content;
  max-width: min(94vw, 100%);
  margin: 0 auto;
  isolation: isolate;
}
.wd-popups__figure {
  position: relative;
  display: block;
  width: fit-content;
  max-width: min(94vw, 920px);
  max-height: min(86dvh, 880px);
  max-height: min(86vh, 880px);
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45);
}
.wd-popups__img {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  height: auto;
  max-width: min(94vw, 920px);
  max-height: min(86dvh, 880px);
  max-height: min(86vh, 880px);
  object-fit: contain;
  transition: opacity 0.2s ease;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.wd-popups__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(6, 12, 24, 0.55);
  color: var(--white);
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wd-popups__close-x {
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  margin-top: -2px;
}
.wd-popups__close:hover {
  background: rgba(6, 12, 24, 0.78);
  color: var(--gold-light);
}
.wd-popups__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.wd-popups__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 10px 12px;
  flex-wrap: wrap;
  background: linear-gradient(to top, rgba(6, 12, 24, 0.72) 0%, rgba(6, 12, 24, 0.35) 55%, transparent 100%);
  pointer-events: none;
}
.wd-popups__nav .wd-popups__btn,
.wd-popups__nav .wd-popups__dots,
.wd-popups__nav .wd-popups__dot {
  pointer-events: auto;
}
.wd-popups__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(6, 12, 24, 0.45);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.wd-popups__btn:hover {
  background: rgba(201, 165, 92, 0.35);
  border-color: rgba(201, 165, 92, 0.55);
  color: var(--gold-light);
}
.wd-popups__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.wd-popups__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  max-width: 200px;
}
.wd-popups__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wd-popups__dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}
.wd-popups__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.wd-popups-fx-canvas {
  position: fixed;
  inset: 0;
  flex: none;
  z-index: 3;
  pointer-events: none;
}
.wd-popups__figure--pulse {
  animation: wdPopFigPulse 0.85s ease-in-out infinite;
}
@keyframes wdPopFigPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.035); opacity: 0.9; }
}
.wd-popups__figure--sparkle {
  position: relative;
}
.wd-popups__figure--sparkle::after {
  content: "";
  position: absolute;
  inset: -8px;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.5) 0%, transparent 38%),
    radial-gradient(circle at 82% 28%, rgba(232, 200, 128, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 52% 88%, rgba(201, 165, 92, 0.4) 0%, transparent 48%);
  animation: wdPopSparkleFade 1.15s ease-in-out infinite;
}
@keyframes wdPopSparkleFade {
  0%, 100% { opacity: 0.3; transform: scale(0.995); }
  50% { opacity: 1; transform: scale(1.012); }
}
@media (prefers-reduced-motion: reduce) {
  .wd-popups__img,
  .wd-popups__btn,
  .wd-popups__dot,
  .wd-popups__close {
    transition: none;
  }
  .wd-popups__figure--pulse,
  .wd-popups__figure--sparkle::after {
    animation: none !important;
  }
}
@media (max-width: 960px) {
  .why-split { grid-template-columns: 1fr; text-align: center; }
  .why-split__media { text-align: center; }
}

/* Routed pages: home hero background */
.page-home .hero-bg {
  background-image:
    linear-gradient(to bottom, rgba(6,12,24,0.32) 0%, rgba(6,12,24,0.80) 100%),
    url('https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=1920&q=80');
}

/* Static index.html — compact footer (distinct from .footer) */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201, 165, 92, 0.12);
  padding: 28px 0;
}
.site-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer__sep {
  color: var(--text-muted);
  user-select: none;
}

/* Web design live preview: class + viewport set in lib/public_theme_render.php; font scaling like real mobile */
html.wd-pv {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html.wd-pv body {
  min-height: 100%;
}
html.wd-pv .wd-block-anchor {
  scroll-margin-top: 96px;
}
html.wd-pv .wd-block-anchor:target {
  outline: 2px solid rgba(201, 165, 92, 0.45);
  outline-offset: 4px;
}

/* Business profile policy pages (/privacy, /terms, …) */
.section-policy {
  padding-top: 32px;
  padding-bottom: 64px;
}
.policy-page__title {
  text-align: left;
  margin-top: 8px;
  margin-bottom: 24px;
}
.policy-prose {
  max-width: 720px;
  line-height: 1.65;
  color: var(--text-on-dark);
}
.policy-prose p {
  margin: 0 0 1em;
}
.policy-prose h1,
.policy-prose h2,
.policy-prose h3,
.policy-prose h4 {
  font-family: var(--font-serif);
  margin: 1.25em 0 0.5em;
  color: var(--cream);
}
.policy-prose ul,
.policy-prose ol {
  margin: 0 0 1em 1.25em;
  padding: 0;
}
.policy-prose a {
  color: var(--gold-light);
  text-decoration: underline;
}
.policy-prose a:hover {
  color: var(--gold);
}

/* Public blog (/blog, /blog/slug) — light canvas, dark type, gold accents */
.section-blog,
.section-blog-article {
  padding-top: clamp(28px, 5vw, 48px);
  padding-bottom: clamp(56px, 8vw, 88px);
}
main.blog-page,
main.blog-article {
  padding-top: var(--hero-top-clearance);
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 18%, var(--white) 100%);
}
body:has(main.blog-page) .navbar,
body:has(main.blog-article) .navbar {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.18);
}
.blog-page .catalogue-back,
.blog-article .catalogue-back {
  margin: 0 0 20px;
}
.blog-page .section-header {
  text-align: left;
  margin-bottom: clamp(32px, 5vw, 48px);
  max-width: 42rem;
}
.blog-page .section-tag::before,
.blog-page .section-tag::after {
  display: none;
}
.blog-page .section-tag {
  margin-bottom: 10px;
}
.blog-page .title-underline {
  margin: 16px 0 0;
}
.blog-page__empty {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(8px, 2vw, 16px);
}
.blog-card {
  margin: 0;
}
.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(15, 30, 56, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(6, 12, 24, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.blog-card__link:hover {
  border-color: rgba(201, 165, 92, 0.45);
  box-shadow: 0 16px 48px rgba(6, 12, 24, 0.1);
  transform: translateY(-3px);
}
.blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-card);
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px 22px;
}
.blog-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.1rem + 0.2vw, 1.25rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.35;
}
.blog-card__ex {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--gray-700);
}
.blog-article__hero {
  margin: 8px 0 clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 30, 56, 0.1);
  box-shadow: 0 12px 40px rgba(6, 12, 24, 0.08);
}
.blog-article__hero-img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.blog-article__head {
  margin-bottom: clamp(20px, 3vw, 28px);
  padding-bottom: 4px;
}
.blog-article__title {
  text-align: left;
  margin-bottom: 12px;
  max-width: 48rem;
}
.blog-article__date {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-article__date time {
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.blog-article__lead {
  max-width: 42rem;
  font-size: clamp(1.02rem, 0.2vw + 1rem, 1.12rem);
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.blog-article__body {
  margin-top: 0;
}
/* Article body — readable on light background (replaces dark-theme .policy-prose here) */
.blog-prose {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--gray-700);
}
.blog-prose > *:first-child {
  margin-top: 0;
}
.blog-prose p {
  margin: 0 0 1.15em;
}
.blog-prose h2,
.blog-prose h3,
.blog-prose h4 {
  font-family: var(--font-serif);
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.28;
  margin: 1.85em 0 0.55em;
}
.blog-prose h2 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
}
.blog-prose h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
}
.blog-prose h4 {
  font-size: 1.08rem;
}
.blog-prose ul,
.blog-prose ol {
  margin: 0 0 1.15em;
  padding-left: 1.35em;
}
.blog-prose ul {
  list-style: disc;
}
.blog-prose ol {
  list-style: decimal;
}
.blog-prose li {
  margin: 0.4em 0;
}
.blog-prose li::marker {
  color: var(--gold-dark);
}
.blog-prose a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 165, 92, 0.55);
}
.blog-prose a:hover {
  color: var(--navy);
  text-decoration-color: var(--gold);
}
.blog-prose strong {
  color: var(--navy-dark);
  font-weight: 600;
}
.blog-prose em {
  color: var(--gray-700);
}
.blog-prose blockquote {
  margin: 1.25em 0;
  padding: 14px 18px 14px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(201, 165, 92, 0.08);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--navy);
}
.blog-prose hr {
  border: none;
  height: 1px;
  margin: 2em 0;
  background: linear-gradient(90deg, transparent, rgba(15, 30, 56, 0.12), transparent);
}
