/* ==========================================================================
   EVERMARK LUXURY REAL ESTATE & BUILDERS — HIGH-END BESPOKE DESIGN SYSTEM
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
  /* Brand Evermark Official Palette (Extracted from Logo) */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-muted: #e2e8f0;
  
  /* Primary Deep Midnight Navies (Brand Identity) */
  --navy-950: #070d1e;
  --navy-900: #0d1730;
  --navy-800: #132042;
  --navy-700: #1c2d58;
  --navy-600: #253c75;
  --navy-500: #335099;
  --navy-100: #e8eef8;
  --navy-50: #f2f6fc;

  /* Universal Theme Brand Tokens */
  --emerald-950: #070d1e;
  --emerald-900: #0d1730;
  --emerald-800: #132042;
  --emerald-700: #1c2d58;
  --emerald-600: #253c75;
  --emerald-500: #335099;
  --emerald-100: #e8eef8;
  --emerald-50: #f2f6fc;

  /* Architectural Flame Coral / Orange (Brand Accent) */
  --coral-primary: #ef4a2e;
  --coral-light: #ff6b52;
  --coral-lighter: #ffebe7;
  --coral-dark: #d83a1f;

  /* Accent Mappings (Logo Colors) */
  --gold-primary: #ef4a2e;
  --gold-light: #ff6b52;
  --gold-lighter: #ffebe7;
  --gold-dark: #d83a1f;
  --gold-gradient: linear-gradient(135deg, #ff6b52 0%, #ef4a2e 50%, #d83a1f 100%);
  --gold-glass: rgba(239, 74, 46, 0.12);

  /* Deep Luxury Typography */
  --text-primary: #0d1730;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --text-white: #ffffff;

  /* Refined Architectural Borders */
  --border-subtle: rgba(13, 23, 48, 0.08);
  --border-light: rgba(13, 23, 48, 0.14);
  --border-gold: rgba(239, 74, 46, 0.35);
  --border-gold-solid: #ef4a2e;

  /* Ultra-Soft Atmospheric Shadows */
  --shadow-xs: 0 1px 3px rgba(13, 23, 48, 0.05);
  --shadow-sm: 0 4px 12px rgba(13, 23, 48, 0.06);
  --shadow-md: 0 12px 32px -4px rgba(13, 23, 48, 0.09);
  --shadow-lg: 0 24px 60px -12px rgba(13, 23, 48, 0.14);
  --shadow-gold: 0 12px 36px -6px rgba(239, 74, 46, 0.28);

  /* Fonts: Poppins for Headings & Branding, Roboto for Body */
  --font-serif: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ RESET & GLOBAL BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-smooth);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--emerald-950);
  line-height: 1.2;
  font-weight: 600;
}

.wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ============ SVG ICONS UTILITIES ============ */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-icon-sm { width: 14px; height: 14px; }
.svg-icon-lg { width: 22px; height: 22px; }
.svg-icon-xl { width: 28px; height: 28px; }

/* ==========================================================================
   FLOATING CENTERED LUXURY GLASS NAVBAR (SLIM & BALANCED)
   ========================================================================== */
.navbar-wrapper {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}

.navbar-island {
  pointer-events: auto;
  width: 100%;
  max-width: 1260px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px -6px rgba(13, 31, 24, 0.08), 0 0 0 1px rgba(13, 31, 24, 0.04);
  border-radius: 40px;
  padding: 6px 8px 6px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 58px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-island.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 40px -8px rgba(13, 31, 24, 0.12), 0 0 0 1px rgba(197, 151, 70, 0.25);
  transform: translateY(-2px);
}

.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-emblem {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--emerald-900);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(13, 31, 24, 0.12);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--emerald-950);
  white-space: nowrap;
}

.brand-name span {
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 400;
}

.nav-links-deck {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-links-deck li {
  white-space: nowrap;
}

.nav-links-deck a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 11px;
  border-radius: 20px;
  transition: var(--transition-smooth);
  white-space: nowrap;
  display: inline-block;
}

.nav-links-deck a:hover {
  color: var(--emerald-950);
  background: rgba(13, 31, 24, 0.05);
}

.nav-links-deck a.active {
  color: var(--gold-dark);
  background: var(--gold-lighter);
  font-weight: 700;
}

.nav-actions-deck {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 30px;
  background: var(--bg-subtle);
  color: var(--emerald-950);
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--border-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav-call span {
  white-space: nowrap;
  display: inline-block;
}

.btn-nav-call:hover {
  background: var(--emerald-100);
  color: var(--emerald-950);
  border-color: var(--emerald-600);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald-900);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(13, 31, 24, 0.18);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  background: var(--gold-primary);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.nav-mobile-trigger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  color: var(--emerald-900);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1240px) {
  .btn-nav-call { display: none; }
}

@media (max-width: 1040px) {
  .nav-links-deck { display: none; }
  .nav-mobile-trigger { display: flex; }
  .navbar-island { padding: 6px 10px 6px 14px; border-radius: 40px; }
}

/* Mobile Drawer Overlay */
.mobile-nav-curtain {
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 24, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-curtain.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-curtain a {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-nav-curtain a:hover {
  color: var(--gold-light);
}

.mobile-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============ LUXURY BUTTONS ============ */
.btn-gold-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--emerald-900);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(13, 31, 24, 0.18);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-gold-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 183, 108, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-gold-primary:hover {
  background: var(--gold-primary);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-gold-primary:hover::before {
  left: 100%;
}

.btn-white-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--emerald-950);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-white-glass:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #128c7e;
  color: #ffffff;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(18, 140, 126, 0.25);
}

.btn-whatsapp-pill:hover {
  background: #075e54;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============ SECTION HEADER UTILITY ============ */
.section-header-block {
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-primary);
  background: var(--gold-lighter);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(197, 151, 70, 0.25);
}

.section-main-title {
  font-size: clamp(30px, 4.2vw, 52px);
  color: var(--emerald-950);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-main-title em {
  font-style: italic;
  color: var(--gold-primary);
  font-weight: 400;
}

.section-description {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 14px;
  line-height: 1.65;
}

/* ============ HERO SECTION ============ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 48px;
  padding-top: 110px;
  overflow: hidden;
  background: #08140f;
}

.hero-bg-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(110%) brightness(102%) saturate(115%);
}

.hero-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.55) 0%, 
    rgba(255, 255, 255, 0.25) 35%, 
    rgba(248, 250, 249, 0.65) 70%, 
    #f8faf9 100%);
  z-index: 1;
  pointer-events: none;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-inner-content {
  position: relative;
  z-index: 5;
}

.hero-headline {
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.15;
  color: var(--emerald-950);
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.95), 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-headline span.gold-italics {
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 500;
}

.hero-subtext {
  font-size: clamp(14px, 1.1vw, 16.5px);
  color: var(--emerald-950);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 26px;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 31, 24, 0.1);
}

.hero-metric-item b {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 36px);
  color: var(--emerald-950);
  line-height: 1.1;
  display: block;
}

.hero-metric-item b span {
  color: var(--gold-primary);
}

.hero-metric-item p {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 2px;
}

@media (max-width: 820px) {
  .hero-metrics-ribbon { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-headline { max-width: 100%; }
}

/* ============ MARQUEE STRIP ============ */
.marquee-ribbon {
  background: var(--emerald-900);
  color: #ffffff;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(197, 151, 70, 0.3);
  border-bottom: 1px solid rgba(197, 151, 70, 0.3);
}

.marquee-content-track {
  display: flex;
  width: max-content;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.marquee-content-track em {
  font-style: normal;
  color: var(--gold-light);
  margin: 0 10px;
}

/* ==========================================================================
   SECTION 1: 4K AERIAL DRONE CINEMATIC SHOWCASE (DEDICATED VIDEO 1)
   ========================================================================== */
#video-tour {
  padding: 100px 0;
  background: #ffffff;
}

.drone-theater-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #08140f;
  aspect-ratio: 16/9;
  max-height: 680px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.drone-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drone-hud-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 15, 0.45) 0%, transparent 35%, rgba(8, 20, 15, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 3vw, 36px);
  color: #ffffff;
  pointer-events: none;
}

.drone-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-feed-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 20, 15, 0.7);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.live-feed-pill span.green-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.drone-hud-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  pointer-events: auto;
}

.drone-video-info h3 {
  font-size: clamp(20px, 2.4vw, 32px);
  color: #ffffff;
  margin-bottom: 4px;
}

.drone-video-info p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}

.drone-ctrl-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-drone-ctrl {
  background: rgba(255, 255, 255, 0.95);
  color: var(--emerald-950);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-drone-ctrl:hover {
  background: var(--gold-primary);
  color: #ffffff;
}

/* ==========================================================================
   3D PINNED SECTION FLIP DECK (LANDMARKS OVERVIEW)
   ========================================================================== */
#flip-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0 24px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

#flip-section .section-header-block {
  margin-bottom: 10px;
}

#flip-section .section-eyebrow {
  margin-bottom: 6px;
  padding: 4px 12px;
  font-size: 11px;
}

#flip-section .section-main-title {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
}

#flip-section .section-description {
  font-size: 13px;
  margin-top: 4px;
}

.flip-deck-stage {
  position: relative;
  width: 100%;
  max-width: 1060px;
  height: 410px;
  margin: 14px auto 0;
}

.flip-deck-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 45px -10px rgba(13, 23, 48, 0.22), 0 0 0 1px rgba(239, 74, 46, 0.18);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  will-change: transform, filter;
  transform-origin: center top;
}

.flip-deck-card[data-index="0"] {
  z-index: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.flip-deck-card[data-index="1"] {
  z-index: 2;
  transform: translate3d(0, 120%, 0);
}

.flip-deck-card[data-index="2"] {
  z-index: 3;
  transform: translate3d(0, 120%, 0);
}

.deck-scroll-indicator-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.deck-step-pill {
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.deck-step-pill.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(239, 74, 46, 0.3);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.scroll-indicator-pulse {
  animation: scrollBounce 1.6s infinite ease-in-out;
}

.deck-card-visual {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.deck-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-card-info {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.deck-tag-counter {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.deck-card-info h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin: 4px 0 6px;
  color: var(--emerald-950);
}

.deck-card-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.deck-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.deck-pills-row span {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--emerald-900);
}

.deck-controls-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 860px) {
  .flip-deck-stage { height: 560px; }
  .flip-deck-card { grid-template-columns: 1fr; }
  .deck-card-visual { height: 210px; }
  .deck-card-info { padding: 18px; }
}

/* ==========================================================================
   SIGNATURE DEVELOPMENTS & 3D BESPOKE CARDS (NO PRICES)
   ========================================================================== */
#projects, #properties {
  padding: 100px 0;
  background: #ffffff;
}

.filter-pills-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-pill-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.filter-pill-btn:hover {
  border-color: var(--gold-primary);
  color: var(--emerald-950);
}

.filter-pill-btn.active {
  background: var(--emerald-900);
  color: #ffffff;
  border-color: var(--emerald-900);
  box-shadow: 0 4px 14px rgba(13, 31, 24, 0.18);
}

.luxury-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.luxury-card-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.luxury-card-box:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.luxury-card-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--bg-muted);
}

.luxury-card-media img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-card-box:hover .luxury-card-media img {
  transform: scale(1.06);
}

.badge-top-left {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--emerald-900);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
}

.badge-top-right {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(13, 31, 24, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.luxury-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.luxury-card-body h3 {
  font-size: 21px;
  color: var(--emerald-950);
  margin-bottom: 6px;
}

.card-location-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.card-specs-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 18px;
  font-size: 12.5px;
}

.card-specs-row span {
  color: var(--text-secondary);
}

.card-specs-row span b {
  display: block;
  font-size: 13.5px;
  color: var(--emerald-950);
  margin-top: 2px;
}

.luxury-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 980px) {
  .luxury-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .luxury-cards-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 2: DEDICATED VIRTUAL VILLA WALKTHROUGH (DEDICATED VIDEO 2)
   ========================================================================== */
#villa-experience {
  padding: 110px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
}

.villa-stage-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.villa-theater-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #08140f;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.villa-video-elem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.villa-theater-hud {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 15, 0.4) 0%, transparent 40%, rgba(8, 20, 15, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #ffffff;
  pointer-events: none;
}

.villa-hotspots-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hotspot-interactive-card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hotspot-interactive-card:hover, .hotspot-interactive-card.active {
  border-color: var(--gold-primary);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.hotspot-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-lighter);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotspot-desc h5 {
  font-size: 15.5px;
  color: var(--emerald-950);
  margin-bottom: 2px;
}

.hotspot-desc span {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .villa-stage-layout { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FILTER / INVENTORY SEARCH BAR (NO PRICES)
   ========================================================================== */
.inventory-glass-search {
  background: var(--emerald-900);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 40px;
}

.inv-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inv-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.inv-field select, .inv-field input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
}

.inv-field select option {
  background: var(--emerald-900);
  color: #ffffff;
}

@media (max-width: 860px) {
  .inventory-glass-search { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .inventory-glass-search { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BEFORE / AFTER DRAGGABLE CONSTRUCTION SLIDER
   ========================================================================== */
#construction {
  padding: 100px 0;
  background: var(--bg-surface);
}

.ba-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  margin-top: 36px;
  user-select: none;
}

.ba-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-layer.after {
  clip-path: inset(0 0 0 50%);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%);
  cursor: ew-resize;
}

.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--emerald-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--gold-primary);
}

.ba-badge {
  position: absolute;
  top: 20px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.94);
  color: var(--emerald-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
}
.ba-badge.before { left: 20px; }
.ba-badge.after { right: 20px; }

/* 5 Steps */
.process-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.process-step-box {
  background: var(--bg-subtle);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.process-step-box .step-digit {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-primary);
}

.process-step-box h4 {
  font-size: 15.5px;
  margin: 8px 0 4px;
}

.process-step-box p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .process-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-grid-5 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CLIENT TESTIMONIALS (4 CARDS PER ROW / HORIZONTAL SMOOTH SCROLL)
   ========================================================================== */
#testimonials {
  padding: 100px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.testimonials-4-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.testi-luxury-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testi-luxury-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.testi-stars-row {
  display: flex;
  gap: 4px;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.testi-body-quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
}

.testi-client-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.testi-client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.testi-client-meta b {
  display: block;
  font-size: 13.5px;
  color: var(--emerald-950);
}

.testi-client-meta span {
  font-size: 12px;
  color: var(--text-tertiary);
}

@media (max-width: 1080px) {
  .testimonials-4-row-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonials-4-row-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT & VIP ADVISORY FORM
   ========================================================================== */
#contact {
  padding: 100px 0;
  background: #ffffff;
}

.contact-layout-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--emerald-900);
  color: #ffffff;
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 30px;
}

.contact-coord-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.coord-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coord-text b {
  font-size: 13.5px;
  color: #ffffff;
}

.coord-text span {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form-card {
  background: var(--bg-surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group-item {
  margin-bottom: 20px;
}

.form-group-item label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--emerald-950);
  margin-bottom: 6px;
}

.form-group-item input, .form-group-item select, .form-group-item textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  font-size: 14px;
  font-family: var(--font-sans);
  background: var(--bg-subtle);
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-smooth);
}

.form-group-item input:focus, .form-group-item select:focus, .form-group-item textarea:focus {
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--gold-glass);
}

.btn-form-submit {
  width: 100%;
  background: var(--emerald-900);
  color: #ffffff;
  padding: 15px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(13, 31, 24, 0.2);
}

.btn-form-submit:hover {
  background: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 860px) {
  .contact-layout-box { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DEDICATED DETAIL PAGES (NO PRICES)
   ========================================================================== */
.detail-banner-header {
  padding: 130px 0 50px;
  background: var(--emerald-900);
  color: #ffffff;
}

.detail-banner-header h1 {
  font-size: clamp(32px, 4.2vw, 54px);
  color: #ffffff;
  margin: 10px 0 8px;
}

.detail-grid-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  padding: 60px 0 100px;
}

.specs-tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.spec-badge-box {
  background: var(--bg-subtle);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.spec-badge-box span {
  font-size: 12px;
  color: var(--text-tertiary);
  display: block;
}

.spec-badge-box b {
  font-size: 16px;
  color: var(--emerald-950);
  margin-top: 2px;
  display: block;
}

.amenities-lux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.amenities-lux-grid li {
  list-style: none;
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .detail-grid-layout { grid-template-columns: 1fr; }
  .specs-tri-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   LUXURY FOOTER DESIGN
   ========================================================================== */
.site-luxury-footer {
  background: #07130e;
  background: radial-gradient(circle at 50% 0%, rgba(197, 151, 70, 0.12) 0%, #07130e 70%);
  color: #ffffff;
  padding: 80px 0 36px;
  border-top: 1px solid rgba(197, 151, 70, 0.3);
  position: relative;
  overflow: hidden;
}

/* Footer VIP Newsletter Strip */
.footer-newsletter-banner {
  background: rgba(13, 31, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 151, 70, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
}

.footer-newsletter-text h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-newsletter-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-subscribe-form {
  display: flex;
  gap: 10px;
}

.footer-subscribe-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  color: #ffffff;
  font-size: 13.5px;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition-smooth);
}

.footer-subscribe-input:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px var(--gold-glass);
}

.btn-footer-subscribe {
  background: var(--gold-primary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-footer-subscribe:hover {
  background: var(--gold-light);
  color: var(--emerald-950);
  transform: translateY(-1px);
}

/* Footer 4 Columns Grid */
.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-header {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links-list a {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 11px;
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-social-deck {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-circle-btn:hover {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.regulatory-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.regulatory-pills-row span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(197, 151, 70, 0.12);
  border: 1px solid rgba(197, 151, 70, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Footer Bottom Strip */
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}

.goftech-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 151, 70, 0.15);
  border: 1px solid rgba(197, 151, 70, 0.35);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 12.5px;
  transition: var(--transition-smooth);
}

.goftech-pill-badge b {
  color: var(--gold-light);
  font-weight: 700;
}

.goftech-pill-badge:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.goftech-pill-badge:hover b {
  color: #ffffff;
}

@media (max-width: 980px) {
  .footer-newsletter-banner { grid-template-columns: 1fr; }
  .footer-columns-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-columns-grid { grid-template-columns: 1fr; }
  .footer-newsletter-banner { padding: 24px 20px; }
  .footer-subscribe-form { flex-direction: column; }
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.floating-wa-anchor {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #128c7e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-wa-anchor:hover {
  transform: translateY(-4px) scale(1.08);
  background: #075e54;
}

/* ============ BLOG RICH CONTENT FORMATTING ============ */
.blog-rich-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.blog-rich-content p {
  margin-bottom: 18px;
}

.blog-rich-content h2,
.blog-rich-content h3,
.blog-rich-content h4 {
  color: var(--emerald-950);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 32px 0 14px;
  line-height: 1.35;
}

.blog-rich-content h2 { font-size: 24px; }
.blog-rich-content h3 { font-size: 20px; }
.blog-rich-content h4 { font-size: 17px; }

.blog-rich-content ul,
.blog-rich-content ol {
  padding-left: 28px;
  margin-bottom: 20px;
}

.blog-rich-content li {
  margin-bottom: 8px;
}

.blog-rich-content blockquote {
  border-left: 4px solid var(--gold-primary);
  padding: 14px 20px;
  margin: 24px 0;
  background: var(--bg-subtle);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--emerald-950);
}

.blog-rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

.blog-rich-content video {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.blog-rich-content a {
  color: var(--gold-primary);
  text-decoration: underline;
  font-weight: 600;
}

