/* ══════════════════════════════════════════════════════════════════
   SOBHA CITY ABU DHABI – PREMIUM HOMEPAGE STYLES (2026 REDESIGN)
   ══════════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #C9A84C; --gold-light: #E8D5A3; --gold-deep: #8B6914; --gold-pale: #F9F3E3;
  --black: #091E2C; --charcoal: #0B2A3C; --dark: #143A4F; --mid: #5A5A5A; --muted: #888;
  --border: #E2D8C5; --white: #FFFFFF; --off-white: #FAFAF8; --section-alt: #F6F2EA;
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'Inter', 'DM Sans', sans-serif;
  --radius: 6px; --radius-lg: 12px; --max: 1240px; --transition: 0.3s ease;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-sans); background: var(--white); color: var(--charcoal); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-serif); line-height: 1.15; color: var(--black); font-weight: 400; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { font-size: 1rem; color: var(--mid); line-height: 1.8; }
.overline {
  font-family: var(--ff-sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.75rem;
}

/* ── LAYOUT ───────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.section-pad-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-alt { background: var(--section-alt); }
.bg-dark { background: var(--charcoal); }
.gold-rule { width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); margin: 1rem auto 0; }
.gold-rule.left { margin-left: 0; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background-color 0.26s ease,
    color 0.26s ease;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.18);
}
.btn-gold {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.24), transparent 38%),
    linear-gradient(135deg, #d6b05f 0%, var(--gold) 48%, #a57c24 100%);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 12px 30px rgba(201,168,76,0.28);
}
.btn-gold:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    0 16px 38px rgba(201,168,76,0.38);
}
.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--gold);
  border-color: rgba(201,168,76,0.65);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.08));
  color: var(--white);
  border-color: var(--gold);
}
.btn-white {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,241,235,0.96));
  color: var(--charcoal);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 10px 26px rgba(9,30,44,0.12);
}
.btn-white:hover {
  color: var(--black);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.86),
    0 14px 34px rgba(9,30,44,0.16);
}

/* ── NAVBAR ───────────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 18px 0; transition: all 0.4s ease; background: transparent;
}
#site-header.scrolled {
  background: rgba(11,42,60,0.97); padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.05em; line-height: 1;
}
.nav-logo span {
  display: block; font-size: 0.55rem; font-family: var(--ff-sans); font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  color: var(--white) !important;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 42%),
    linear-gradient(135deg, #d2ad5e 0%, var(--gold) 52%, #a77b20 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 10px 26px rgba(201,168,76,0.3);
}
.nav-cta:hover {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.26), transparent 42%),
    linear-gradient(135deg, #ddb96d 0%, #c9a84c 50%, #9d731b 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 14px 32px rgba(201,168,76,0.36);
}
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ────────────────────────────────────────────────── */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  position: absolute; left: 0; transition: all 0.3s ease; border-radius: 2px;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-hamburger span:nth-child(3) { bottom: 0; }
.nav-hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ── MOBILE MENU ──────────────────────────────────────────────── */
.nav-mobile {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--black); z-index: 1000; padding: 100px 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.nav-mobile.active { right: 0; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav-mobile ul li a {
  display: block; padding: 14px 0;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.nav-mobile ul li a:hover { color: var(--gold-light); padding-left: 8px; }
.nav-mobile-cta {
  margin-top: 1rem;
  display: block;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.2), transparent 42%),
    linear-gradient(135deg, #d6b05f 0%, var(--gold) 52%, #a57c24 100%) !important;
  color: var(--white) !important;
  padding: 16px !important;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12) !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 14px 32px rgba(201,168,76,0.24);
}
.nav-mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.nav-mobile-overlay.active { opacity: 1; visibility: visible; }

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #071A28;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/sobha-city-hero.png');
  background-size: cover; background-position: center 40%; opacity: 0.40;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08) translateY(-1.5%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 30% 50%, rgba(9,30,44,0.92) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(9,30,44,0.5) 0%, rgba(9,30,44,0.15) 40%, rgba(9,30,44,0.7) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4) 30%, rgba(201,168,76,0.4) 70%, transparent);
}
.hero-content {
  position: relative; z-index: 2; max-width: 860px;
  text-align: center; padding: 0 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 50px;
  padding: 10px 26px; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 2rem; animation: heroFadeUp 1s ease 0.2s both;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
#hero h1 {
  color: var(--white); font-weight: 300; font-style: italic;
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
  animation: heroFadeUp 1s ease 0.4s both;
}
#hero h1 strong {
  display: block; font-style: normal; font-weight: 600;
  color: transparent;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, #E8C95A 100%);
  -webkit-background-clip: text; background-clip: text; padding-bottom: 0.1em;
}
.hero-tagline {
  font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 300;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.5);
  margin-bottom: 3rem; text-transform: uppercase;
  animation: heroFadeUp 1s ease 0.6s both;
}
.hero-sep {
  display: inline-block; width: 20px; height: 1px;
  background: rgba(201,168,76,0.4); vertical-align: middle; margin: 0 6px;
}
.hero-stats {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 3rem; animation: heroFadeUp 1s ease 0.8s both;
}
.hero-stat-card { padding: 1.6rem 2.2rem; position: relative; text-align: center; }
.hero-stat-card + .hero-stat-card::before {
  content: ''; position: absolute; left: 0; top: 25%; height: 50%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.3), transparent);
}
.hero-stat-num {
  font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 600;
  color: var(--white); display: block; line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(201,168,76,0.7); margin-top: 6px; display: block;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: heroFadeUp 1s ease 1s both;
}
.hero-btns .btn-gold { padding: 18px 40px; font-size: 0.72rem; letter-spacing: 0.2em; }
.hero-btns .btn-outline {
  padding: 18px 40px; font-size: 0.72rem; letter-spacing: 0.2em;
  backdrop-filter: blur(10px); background: rgba(255,255,255,0.04);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: heroFadeUp 1s ease 1.3s both;
}
.hero-scroll-text {
  font-size: 0.55rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(201,168,76,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── EOI TICKER ───────────────────────────────────────────────── */
.eoi-ticker { background: var(--gold); padding: 12px 0; overflow: hidden; }
.ticker-inner {
  display: flex; align-items: center; gap: 0; white-space: nowrap;
  animation: ticker 22s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white); padding: 0 2.5rem;
}
.ticker-dot { color: rgba(255,255,255,0.5); font-size: 1rem; }

/* ── HIGHLIGHTS GRID ──────────────────────────────────────────── */
.highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.highlight-card {
  padding: 2.5rem 2rem; border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background var(--transition);
}
.highlight-card:last-child { border-right: none; }
.highlight-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.highlight-card:hover::after { transform: scaleX(1); }
.highlight-card:hover { background: var(--gold-pale); }
.highlight-icon {
  width: 48px; height: 48px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.highlight-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.highlight-num { font-family: var(--ff-serif); font-size: 2.2rem; font-weight: 600; color: var(--black); line-height: 1; margin-bottom: 0.3rem; }
.highlight-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── ABOUT ────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }
.about-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--white);
  padding: 1.4rem 1.8rem; border-radius: var(--radius-lg); text-align: center;
  box-shadow: 0 8px 30px rgba(139,105,20,0.35);
}
.about-img-badge .num { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 600; display: block; line-height: 1; }
.about-img-badge .txt { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; display: block; margin-top: 4px; }
.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { margin-bottom: 1.2rem; }
.about-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--mid); }
.about-list li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px;
  
}

/* ── PROPERTIES ───────────────────────────────────────────────── */
.properties-tabs {
  display: flex; justify-content: center; gap: 0; margin-bottom: 3.5rem;
  border: 1.5px solid var(--border); border-radius: 50px; overflow: hidden;
  width: fit-content; margin-left: auto; margin-right: auto;
}
.prop-tab {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 30px; cursor: pointer; color: var(--muted); background: var(--white); border: none;
  transition: all var(--transition);
}
.prop-tab.active, .prop-tab:hover { background: var(--gold); color: var(--white); }
.prop-panel { display: none; }
.prop-panel.active { display: block; }
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.prop-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--gold); }
.prop-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--section-alt); }
.prop-card-body { padding: 1.5rem; }
.prop-card-type { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.prop-card-name { font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 600; color: var(--black); margin-bottom: 0.5rem; }
.prop-card-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.6; margin-bottom: 1.2rem; }
.prop-card-pricing { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 1rem; border-top: 1px solid var(--border); }
.prop-price-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.prop-price-val { font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 600; color: var(--black); }
.eoi-tag {
  background: var(--gold-pale); border: 1px solid var(--gold-light); border-radius: var(--radius);
  padding: 5px 10px; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-deep); text-align: right;
}
.eoi-tag span { display: block; font-size: 0.82rem; }

/* ── FLOOR PLANS CTA ──────────────────────────────────────────── */
.fp-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.fp-cta-stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.fp-cta-stat-num { font-family: var(--ff-serif); font-size: 2rem; font-weight: 600; color: var(--gold); display: block; line-height: 1; }
.fp-cta-stat-lbl { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; display: block; }
.fp-cta-preview { display: flex; justify-content: center; }
.fp-preview-stack { position: relative; width: 320px; height: 280px; }
.fp-preview-card { position: absolute; border-radius: 12px; width: 280px; }
.fp-preview-back { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.1); height: 200px; top: 0; left: 40px; transform: rotate(4deg); }
.fp-preview-mid { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.15); height: 210px; top: 15px; left: 20px; transform: rotate(2deg); }
.fp-preview-front { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.25); backdrop-filter: blur(10px); padding: 1.6rem; top: 30px; left: 0; height: auto; }
.fp-preview-label { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 600; color: var(--white); }
.fp-preview-sub { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

/* ── PRICING SECTION ──────────────────────────────────────────── */
.pricing-intro { max-width: 580px; margin: 1rem auto 0; color: rgba(255,255,255,0.5); }
.pricing-categories { display: flex; flex-direction: column; gap: 2.5rem; }
.pricing-category { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.12); border-radius: 14px; overflow: hidden; }
.pricing-cat-header { display: flex; align-items: center; gap: 16px; padding: 1.2rem 1.8rem; background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%); border-bottom: 1px solid rgba(201,168,76,0.12); }
.pricing-cat-icon { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--gold), #B8922E); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pricing-cat-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.5; }
.pricing-cat-title { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; color: #fff; }
.pricing-cat-subtitle { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.pricing-units { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; }
.pricing-unit { padding: 1.8rem; border-right: 1px solid rgba(201,168,76,0.08); border-bottom: 1px solid rgba(201,168,76,0.08); transition: background 0.3s ease; }
.pricing-unit:hover { background: rgba(201,168,76,0.05); }
.pricing-unit-config { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.pricing-unit-name { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 500; color: #fff; margin-bottom: 1.2rem; }
.pricing-unit-row { display: flex; flex-direction: column; gap: 0.8rem; }
.pricing-unit-price { display: flex; flex-direction: column; }
.pricing-unit-price-label { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.pricing-unit-price-val { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 600; color: #fff; line-height: 1; white-space: nowrap; }
.pricing-unit-price-val .currency { font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.5); margin-right: 2px; }
.pricing-unit-eoi { flex-shrink: 0; }
.pricing-unit-eoi-label { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.pricing-unit-eoi-val { font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 700; color: var(--gold); background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; padding: 5px 12px; display: inline-block; white-space: nowrap; }
.pricing-cta-row { text-align: center; margin-top: 2.5rem; }
.table-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; font-style: italic; }

/* ── PAYMENT PLAN ─────────────────────────────────────────────── */
.pp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pp-timeline { position: relative; padding-left: 2.5rem; }
.pp-timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.15)); }
.pp-step { position: relative; padding-bottom: 1.4rem; display: flex; align-items: flex-start; }
.pp-step:last-child { padding-bottom: 0; }
.pp-dot { position: absolute; left: -2.5rem; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--charcoal); border: 2.5px solid var(--gold); z-index: 1; }
.pp-step:first-child .pp-dot, .pp-step:last-child .pp-dot { width: 18px; height: 18px; left: calc(-2.5rem - 1px); background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.15); }
.pp-step-content { flex: 1; }
.pp-step-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.pp-step-name { font-family: var(--ff-serif); font-size: 0.95rem; font-weight: 500; color: #fff; }
.pp-step-pct { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; color: var(--gold); margin-left: auto; white-space: nowrap; }
.pp-highlight { display: flex; gap: 1.5rem; margin-top: 2rem; }
.pp-highlight-card { flex: 1; background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15); border-radius: 10px; padding: 1.2rem; text-align: center; }
.pp-highlight-num { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 600; color: var(--gold); line-height: 1; }
.pp-highlight-lbl { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ── LOCATION ─────────────────────────────────────────────────── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.location-map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 1/1; position: relative; }
.location-map-wrap iframe { width: 100%; height: 100%; border: none; }
.distances-list { margin-top: 2rem; display: flex; flex-direction: column; }
.distance-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
.distance-item:last-child { border-bottom: none; }
.distance-place { font-size: 0.88rem; font-weight: 500; color: var(--dark); }
.distance-time { font-family: var(--ff-serif); font-size: 1rem; font-weight: 600; color: var(--gold); }

/* ── AMENITIES ────────────────────────────────────────────────── */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.amenity-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem; text-align: center; transition: all var(--transition);
}
.amenity-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,168,76,0.12); transform: translateY(-4px); }
.amenity-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold-pale);
  border: 1.5px solid var(--gold-light); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1rem;
}
.amenity-icon svg { width: 24px; height: 24px; stroke: var(--gold-deep); fill: none; stroke-width: 1.5; }
.amenity-card h4 { font-family: var(--ff-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); }
.amenity-card p { font-size: 0.75rem; color: var(--muted); margin-top: 5px; line-height: 1.5; }

/* ── MASTER PLAN ──────────────────────────────────────────────── */
.masterplan-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.masterplan-img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.masterplan-list { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mp-item { padding: 1.1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); border-left: 3px solid var(--gold); }
.mp-item h4 { font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.mp-item p { font-size: 0.72rem; color: var(--muted); margin-top: 3px; }

/* ── WHY SOBHA ────────────────────────────────────────────────── */
#why-sobha { background: var(--charcoal); color: var(--white); }
#why-sobha .overline { color: var(--gold); }
#why-sobha h2 { color: var(--white); }
#why-sobha p { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3.5rem; }
.why-card { padding: 2.2rem 1.8rem; border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius-lg); transition: all var(--transition); }
.why-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.why-num { font-family: var(--ff-serif); font-size: 3rem; font-weight: 300; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 0.8rem; }
.why-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.7rem; }
.why-card p { font-size: 0.85rem; }

/* ── EOI SECTION ──────────────────────────────────────────────── */
#eoi { background: var(--gold-pale); border-top: 2px solid var(--gold-light); border-bottom: 2px solid var(--gold-light); }
.eoi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.eoi-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: 0 12px 50px rgba(0,0,0,0.07); }
.eoi-form h3 { margin-bottom: 0.4rem; font-size: 1.6rem; }
.eoi-form .sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.8rem; }
.eoi-form .eoi-custom-form {
  margin: 0;
}
.eoi-form .eoi-custom-form input[type="text"],
.eoi-form .eoi-custom-form input[type="email"],
.eoi-form .eoi-custom-form input[type="tel"],
.eoi-form .eoi-custom-form input[type="number"],
.eoi-form .eoi-custom-form select,
.eoi-form .eoi-custom-form textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; font-family: var(--ff-sans); font-size: 0.88rem;
  color: var(--dark); background: var(--off-white); transition: border-color var(--transition); outline: none;
}
.eoi-form .eoi-custom-form input:focus,
.eoi-form .eoi-custom-form select:focus,
.eoi-form .eoi-custom-form textarea:focus { border-color: var(--gold); background: var(--white); }
.eoi-form .eoi-custom-form button[type="submit"],
.eoi-form .eoi-custom-form .wpforms-submit,
.eoi-popup-body .eoi-custom-form button[type="submit"],
.eoi-popup-body .eoi-custom-form .wpforms-submit {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(169,125,24,0.24);
  cursor: pointer;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.24), transparent 40%),
    linear-gradient(135deg, #d6b05f 0%, var(--gold) 52%, #a57c24 100%);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 14px 32px rgba(201,168,76,0.24);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    filter 0.26s ease;
}
.eoi-form .eoi-custom-form button[type="submit"]:hover,
.eoi-form .eoi-custom-form .wpforms-submit:hover,
.eoi-popup-body .eoi-custom-form button[type="submit"]:hover,
.eoi-popup-body .eoi-custom-form .wpforms-submit:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 18px 40px rgba(201,168,76,0.34);
  transform: translateY(-2px);
  filter: saturate(1.05);
}
.eoi-form .eoi-custom-form button[type="submit"]:disabled,
.eoi-form .eoi-custom-form .wpforms-submit:disabled,
.eoi-popup-body .eoi-custom-form button[type="submit"]:disabled,
.eoi-popup-body .eoi-custom-form .wpforms-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}
.eoi-info h2 { margin-bottom: 1rem; }
.eoi-info p { margin-bottom: 1.5rem; }
.eoi-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.eoi-step { display: flex; align-items: flex-start; gap: 1.2rem; }
.step-num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 600; }
.step-text h4 { font-family: var(--ff-sans); font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.step-text p { font-size: 0.78rem; color: var(--muted); }

/* ── GALLERY ──────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 10px; }
.gallery-item { overflow: hidden; border-radius: var(--radius); background: var(--section-alt); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.span2 { grid-row: span 2; }
.gallery-item .img-ph { width: 100%; aspect-ratio: 4/3; background: var(--section-alt); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 840px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; padding: 1.3rem 0; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 400; color: var(--dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-deep); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; line-height: 1;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 1.3rem; font-size: 0.88rem; line-height: 1.8; }

/* ── DEVELOPER STRIP ──────────────────────────────────────────── */
.developer-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-align: center; }
.dev-stat { padding: 1.8rem 1rem; border-right: 1px solid var(--border); }
.dev-stat:last-child { border-right: none; }
.dev-stat-num { font-family: var(--ff-serif); font-size: 2rem; font-weight: 600; color: var(--gold-deep); }
.dev-stat-lbl { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ── DISCLAIMER ───────────────────────────────────────────────── */
.disclaimer-banner { background: var(--charcoal); padding: 14px 0; text-align: center; }
.disclaimer-banner p { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background: var(--black); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 1rem; line-height: 1.7; max-width: 280px; }
.footer-logo { font-family: var(--ff-serif); font-size: 1.7rem; font-weight: 600; color: var(--white); }
.footer-logo span { display: block; font-size: 0.55rem; font-family: var(--ff-sans); font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
footer nav h4, footer > div > div h4 { font-family: var(--ff-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
footer nav ul, footer > div > div ul { display: flex; flex-direction: column; gap: 0.6rem; }
footer nav ul li a, footer > div > div ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
footer nav ul li a:hover, footer > div > div ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ── SCROLL ANIMATIONS ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .developer-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.62rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }
  .section-pad { padding: 60px 0; }
  .section-pad-lg { padding: 80px 0; }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  /* Hero */
  #hero { min-height: 100vh; min-height: 100dvh; }
  #hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-tagline { font-size: 0.65rem; letter-spacing: 0.15em; margin-bottom: 2rem; }
  .hero-badge { font-size: 0.55rem; padding: 8px 18px; margin-bottom: 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stat-card { padding: 1rem 1.4rem; }
  .hero-stat-num { font-size: 1.7rem; }
  .hero-stat-lbl { font-size: 0.5rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btns .btn-gold, .hero-btns .btn-outline { width: 100%; max-width: 300px; justify-content: center; padding: 15px 28px; }
  .hero-scroll { display: none; }

  /* Grids */
  .about-grid, .location-grid, .masterplan-content, .eoi-grid, .pp-grid, .fp-cta-grid {
    grid-template-columns: 1fr; gap: 2.5rem;
  }
  .prop-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-units { grid-template-columns: 1fr; }
  .pricing-unit { border-right: none; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }

  /* Properties */
  .properties-tabs { flex-direction: column; border-radius: var(--radius-lg); width: 100%; }
  .prop-tab { text-align: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.span2 { grid-row: span 1; }

  /* About badge */
  .about-img-badge { position: static; margin-top: 1rem; display: inline-flex; gap: 12px; align-items: center; }

  /* Developer strip */
  .developer-strip { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Floor plans / payment plan */
  .fp-cta-preview { display: none; }
  .pp-highlight { flex-direction: column; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .hero-stat-card { padding: 0.8rem 1rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .masterplan-list { grid-template-columns: 1fr; }
}

.contact-country-wrap {
  position: relative;
  min-width: 180px;
}

.contact-country-select {
  width: 100%;
  min-height: 56px;
  padding: 0.9rem 2.5rem 0.9rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  appearance: none;
}

.contact-country-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gold-deep);
  font-size: 0.75rem;
}

.contact-country-select option {
  color: var(--charcoal);
}

.eoi-custom-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.eoi-custom-form .field-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.eoi-custom-form .field-stack label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

.eoi-custom-form .field-stack input,
.eoi-custom-form .field-stack select,
.eoi-custom-form .field-stack textarea {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--charcoal);
  font: inherit;
}

.eoi-custom-form .field-stack textarea {
  min-height: 120px;
  resize: vertical;
}

.eoi-custom-form .field-stack input:focus,
.eoi-custom-form .field-stack select:focus,
.eoi-custom-form .field-stack textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.14);
}

.eoi-phone-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 12px;
}

.eoi-form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.7;
}

.eoi-form-note.is-success {
  color: #0f8a46;
}

.eoi-form-note.is-error {
  color: #b42318;
}

@media (max-width: 767px) {
  .eoi-custom-form .field-row,
  .eoi-phone-row {
    grid-template-columns: 1fr;
  }

  .contact-country-wrap {
    min-width: 0;
  }
}

/* ── COMMUNITIES SHOWCASE ───────────────────────────────────── */
.communities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.community-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: all 0.4s ease;
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.community-card:hover img {
  transform: scale(1.04);
}

.community-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9, 30, 44, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.community-card-name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}

.community-card-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.community-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(201,168,76,0.28);
}

.community-card:hover .community-card-btn {
  opacity: 1;
  transform: translateY(0);
}

.community-card-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ── UTILITY OVERRIDES ──────────────────────────────────────── */
.hero-btn-outline {
  color: var(--gold-light) !important;
  border-color: var(--gold) !important;
}

.section-intro {
  margin-bottom: 3rem;
}

.section-intro-lg {
  margin-bottom: 3.5rem;
}

.section-intro-xl {
  margin-bottom: 4rem;
}

.section-copy {
  max-width: 620px;
  margin: 1rem auto 0;
}

.section-copy-sm {
  max-width: 580px;
}

.section-copy-lg {
  max-width: 640px;
}

.dark-copy {
  color: rgba(255, 255, 255, 0.55);
}

.dark-copy-soft {
  color: rgba(255, 255, 255, 0.3);
}

.gold-link {
  color: var(--gold) !important;
}

.gold-link-strong {
  color: var(--gold) !important;
  font-weight: 600;
}

.feature-card-accent {
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
}

.feature-card-accent .prop-card-body {
  padding-top: 2rem;
}

.feature-list-tight {
  margin-top: 1rem;
}

.compact-btn {
  font-size: 0.7rem;
  padding: 12px 24px;
}

.quick-links-band {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-links a {
  color: var(--gold-deep);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-actions-center {
  justify-content: center;
}

.dark-heading {
  color: #fff;
}

.dark-note {
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1.5rem;
  text-align: center;
}

.developer-strip-spaced {
  margin: 3.5rem 0;
}

.eoi-important-note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-link-meta {
  margin-top: 0.8rem;
  font-size: 0.78rem;
}

.footer-location {
  margin-top: 2rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
  margin-top: 1rem;
}

.footer-legal p {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.popup-overline {
  margin-bottom: 0.5rem;
}

/* ── FLOATING CTA BUTTONS ───────────────────────────────────── */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 10px 26px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background-color 0.26s ease;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.floating-btn:hover {
  transform: translateY(-2px);
}

.floating-btn:active {
  transform: scale(0.97);
}

.floating-btn-primary {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 42%),
    linear-gradient(135deg, #d6b05f 0%, var(--gold) 52%, #a57c24 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 12px 30px rgba(201, 168, 76, 0.32);
}

.floating-btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    0 16px 38px rgba(201, 168, 76, 0.42);
}

.floating-btn-brochure {
  background:
    linear-gradient(180deg, rgba(23,53,71,0.96), rgba(9,30,44,0.96));
  border: 1px solid rgba(201, 168, 76, 0.28);
}

.floating-btn-brochure:hover {
  border-color: var(--gold);
  background: var(--dark);
}

.floating-btn-floor {
  background:
    linear-gradient(180deg, rgba(23,53,71,0.92), rgba(9,30,44,0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-btn-floor:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--dark);
}

/* ── EOI POPUP ──────────────────────────────────────────────── */
.eoi-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 30, 44, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 1.5rem;
}

.eoi-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.eoi-popup-overlay:not(.active) .eoi-popup-card {
  display: none;
}

.eoi-popup-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 168, 76, 0.15);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.eoi-popup-overlay.active .eoi-popup-card {
  display: block;
  transform: translateY(0) scale(1);
}

.eoi-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--mid);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 2;
}

.eoi-popup-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.eoi-popup-header {
  padding: 2.4rem 2.4rem 1.6rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.eoi-popup-header h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.eoi-popup-header p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.eoi-popup-body {
  padding: 2rem 2.4rem 2.4rem;
}

.eoi-popup-body .eoi-custom-form .wpforms-submit,
.eoi-popup-body .eoi-custom-form .field-stack input,
.eoi-popup-body .eoi-custom-form .field-stack select,
.eoi-popup-body .eoi-custom-form .field-stack textarea,
.eoi-popup-body .contact-country-select {
  background: var(--off-white);
}

.eoi-popup-body .eoi-custom-form .wpforms-submit {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 14px 34px rgba(201,168,76,0.26);
}

.eoi-popup-body .eoi-custom-form .field-stack input:focus,
.eoi-popup-body .eoi-custom-form .field-stack select:focus,
.eoi-popup-body .eoi-custom-form .field-stack textarea:focus,
.eoi-popup-body .contact-country-select:focus {
  background: #fff;
}

@media (max-width: 768px) {
  .communities-grid {
    grid-template-columns: 1fr;
  }

  .community-card {
    aspect-ratio: 16 / 9;
  }

  .community-card-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .floating-cta {
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    gap: 0;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(11, 42, 60, 0.97);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    align-items: stretch;
  }

  .floating-btn {
    flex: 1;
    justify-content: center;
    border-radius: 8px;
    padding: 13px 8px;
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    gap: 6px;
    box-shadow: none;
    border: none !important;
  }

  .floating-btn + .floating-btn {
    margin-left: 8px;
  }

  .floating-btn-primary {
    flex: 1.4;
  }

  .floating-btn-brochure {
    background: rgba(201, 168, 76, 0.12);
  }

  .floating-btn-floor {
    background: rgba(255, 255, 255, 0.06);
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 580px) {
  .eoi-popup-header {
    padding: 2rem 1.5rem 1.2rem;
  }

  .eoi-popup-header h3 {
    font-size: 1.35rem;
  }

  .eoi-popup-body {
    padding: 1.5rem;
  }
}
