/* ============================================================
   秘境之境 · 沉浸式目的地专题页 — 主样式表
   设计语言：暗色奢华 · 动态视差 · 粒子光影
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* 主色调 */
  --color-bg: #0a0a0f;
  --color-bg-alt: #0f0f18;
  --color-surface: rgba(255, 255, 255, 0.03);
  --color-surface-hover: rgba(255, 255, 255, 0.06);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.18);

  /* 文字 */
  --color-text: #e0e0e0;
  --color-text-muted: #8888a0;
  --color-text-dim: #555570;

  /* 强调色 */
  --color-gold: #c8960c;
  --color-gold-light: #d4a853;
  --color-gold-dark: #a07808;

  /* 主题色 */
  --color-secret: #4db8b8;
  --color-luxury: #c8960c;
  --color-family: #f0a060;
  --color-adventure: #e05555;

  /* 排版 */
  --font-serif: 'Noto Serif SC', 'Cinzel', serif;
  --font-sans: 'Noto Sans SC', -apple-system, sans-serif;
  --font-display: 'Cinzel', 'Noto Serif SC', serif;

  /* 间距 */
  --section-padding: 140px 0;
  --container-width: 1280px;

  /* 过渡 */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.6s var(--ease-out-expo);
  --transition-card: 0.5s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg);
  color: var(--color-text);
}

body {
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--color-bg);
  cursor: default;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }

/* Selection */
::selection {
  background: rgba(201, 169, 110, 0.3);
  color: #fff;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }


/* ============================================================
   PARTICLES CANVAS
   ============================================================ */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}


/* ============================================================
   LIGHT ORBS (全局光效)
   ============================================================ */
.light-orbs { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-secret), transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-gold), transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: -7s;
  animation-duration: 25s;
}
.orb-3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, var(--color-adventure), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
  animation-duration: 30s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.15); }
  50% { transform: translate(-30px, 50px) scale(0.9); }
  75% { transform: translate(-50px, -30px) scale(1.05); }
}


/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
.cursor-glow.visible { opacity: 1; }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.5s var(--ease-out-expo);
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}
.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  z-index: 101;
}
.logo-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 3;
}

/* Video Placeholder — animated CSS scene */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #0a0a14 0%,
    #0d1020 20%,
    #111530 40%,
    #0f1a2e 60%,
    #0d1525 80%,
    #0a0a14 100%
  );
  overflow: hidden;
}
.placeholder-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* CSS Mountains */
.placeholder-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
}
.mountain {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}
.mountain-1 {
  border-width: 0 400px 350px;
  border-bottom-color: rgba(15, 25, 45, 0.9);
  left: 5%;
  animation: mountainDrift 30s ease-in-out infinite;
}
.mountain-2 {
  border-width: 0 350px 280px;
  border-bottom-color: rgba(20, 30, 50, 0.85);
  left: 35%;
  animation: mountainDrift 25s ease-in-out infinite reverse;
}
.mountain-3 {
  border-width: 0 500px 400px;
  border-bottom-color: rgba(10, 20, 40, 0.95);
  left: 55%;
  animation: mountainDrift 35s ease-in-out infinite;
}
@keyframes mountainDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

/* CSS Clouds */
.placeholder-clouds {
  position: absolute;
  inset: 0;
}
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  filter: blur(30px);
}
.cloud-1 { width: 300px; height: 60px; top: 25%; left: 10%; animation: cloudDrift 20s linear infinite; }
.cloud-2 { width: 400px; height: 80px; top: 35%; left: 50%; animation: cloudDrift 28s linear infinite reverse; }
.cloud-3 { width: 250px; height: 50px; top: 20%; left: 75%; animation: cloudDrift 24s linear infinite; }
@keyframes cloudDrift {
  0% { transform: translateX(-100px); }
  100% { transform: translateX(calc(100vw + 100px)); }
}

/* Real video (hidden by default) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Hero overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.3) 0%,
    rgba(10, 10, 15, 0.15) 40%,
    rgba(10, 10, 15, 0.5) 80%,
    rgba(10, 10, 15, 0.9) 100%
  );
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  will-change: transform;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}
.line-left, .line-right {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}
.eyebrow-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--color-gold);
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-serif);
  margin-bottom: 32px;
}
.title-line {
  display: block;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #fff;
}
.title-line.accent {
  background: linear-gradient(135deg,
    var(--color-gold-light) 0%,
    var(--color-gold) 30%,
    #fff 50%,
    var(--color-gold) 70%,
    var(--color-gold-light) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s ease-in-out infinite;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #0a0a0f;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.4s var(--ease-out-expo);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 12px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -12px; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: 2;
  pointer-events: none;
}


/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro {
  position: relative;
  z-index: 3;
  padding: 100px 0 120px;
  background: var(--color-bg);
}
.intro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(77, 184, 184, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.intro-stat {
  padding: 30px 20px;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  vertical-align: super;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}
.intro-quote {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}


/* ============================================================
   DESTINATION SECTIONS (Shared)
   ============================================================ */
.destination-section {
  position: relative;
  z-index: 3;
  padding: 140px 0;
  overflow: hidden;
}

.section-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.bg-pattern {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
}
.pattern-secret  { background: var(--color-secret); top: 10%; right: -200px; }
.pattern-luxury  { background: var(--color-gold); top: 10%; left: -200px; }
.pattern-family  { background: var(--color-family); top: 10%; right: -200px; }
.pattern-adventure { background: var(--color-adventure); top: 10%; left: -200px; }

/* Section Header */
.section-header {
  margin-bottom: 64px;
  max-width: 700px;
}
.section-header.text-right {
  margin-left: auto;
  text-align: right;
}
.section-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  margin-bottom: 24px;
}
.title-cn {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.title-en {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}
.section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* Cards row */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Destination Card */
.dest-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dest-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.dest-card.featured {
  border-color: rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.03);
}

/* Card image */
.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-img-placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out-expo);
}
.dest-card:hover .card-img-placeholder {
  transform: scale(1.08);
}

/* Image placeholders — themed gradients */
.img-secret-1 {
  background: linear-gradient(135deg, #1a3a3a 0%, #0d4a4a 30%, #1a3020 70%, #0d1525 100%);
  background-size: 200% 200%;
  animation: bgShift 8s ease-in-out infinite;
}
.img-secret-2 {
  background: linear-gradient(135deg, #1a2a3a 0%, #0a3a4a 30%, #0d2540 70%, #1a1a30 100%);
  background-size: 200% 200%;
  animation: bgShift 10s ease-in-out infinite;
}
.img-secret-3 {
  background: linear-gradient(135deg, #1a201a 0%, #0a3020 30%, #1a2510 70%, #101a15 100%);
  background-size: 200% 200%;
  animation: bgShift 9s ease-in-out infinite;
}
.img-luxury-1 {
  background: linear-gradient(135deg, #1a1a2a 0%, #0a1a3a 30%, #1a1030 70%, #1a1520 100%);
}
.img-luxury-2 {
  background: linear-gradient(135deg, #2a2a3a 0%, #1a1a2a 30%, #0a1525 70%, #1a1a30 100%);
}
.img-luxury-3 {
  background: linear-gradient(135deg, #2a2015 0%, #1a150a 30%, #251a0a 70%, #1a100a 100%);
}
.img-family-1 {
  background: linear-gradient(135deg, #2a1a3a 0%, #1a0a2a 30%, #301a40 70%, #201030 100%);
}
.img-family-2 {
  background: linear-gradient(135deg, #1a3a1a 0%, #0a2a0a 30%, #1a3010 70%, #152010 100%);
}
.img-family-3 {
  background: linear-gradient(135deg, #0a2a3a 0%, #0a1a3a 30%, #1a2040 70%, #0a1030 100%);
}
.img-adventure-1 {
  background: linear-gradient(135deg, #1a2a3a 0%, #0a1a2a 30%, #1a2530 70%, #0a1520 100%);
}
.img-adventure-2 {
  background: linear-gradient(135deg, #2a1a1a 0%, #1a0a0a 30%, #301010 70%, #200a0a 100%);
}
.img-adventure-3 {
  background: linear-gradient(135deg, #1a1010 0%, #200a0a 30%, #150505 70%, #2a1515 100%);
}

@keyframes bgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Card shimmer effect */
.card-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 60%
  );
  animation: shimmer 3s ease-in-out infinite;
  transform: translateX(-100%);
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Card tag */
.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  z-index: 2;
}
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: var(--color-gold);
  color: #0a0a0f;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
  z-index: 2;
}

/* Card body */
.card-body {
  padding: 24px 28px 28px;
}
.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.meta-item {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.03em;
}

/* Section bottom fade */
.section-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
  z-index: 2;
}


/* ============================================================
   PARALLAX DIVIDER
   ============================================================ */
.parallax-divider {
  position: relative;
  z-index: 3;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
    var(--color-bg-alt);
}
.divider-content {
  text-align: center;
  will-change: transform;
}
.divider-icon {
  color: var(--color-gold);
  margin-bottom: 32px;
  opacity: 0.6;
  animation: dividerPulse 4s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
.divider-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.divider-sub {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.25);
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  z-index: 3;
  padding: 120px 0;
  background: var(--color-bg);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-content > p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}
.cta-form { max-width: 800px; margin: 0 auto; }
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.form-group {
  flex: 1;
  min-width: 180px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
}
.form-group input::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-group select { color: rgba(255, 255, 255, 0.5); cursor: pointer; }
.form-group select option { background: #1a1a2a; color: #fff; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 3;
  padding: 80px 0 40px;
  background: var(--color-bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--color-gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--color-text-dim);
}
.footer-tagline { color: var(--color-text-dim); }


/* ============================================================
   REVEAL ANIMATIONS (Triggered by JS)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside revealed containers */
[data-reveal].revealed [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out-expo);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }

  .intro-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cards-row { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .intro-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2.5rem; }
}


/* ============================================================
   PERFORMANCE & ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
