/* ============================================================
   MyB2B Massage — "Velvet Noir" Design System
   Cinema-grade dark luxury · Liquid gold light · Frosted obsidian
   Powered by UI/UX Pro Max intelligence
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Noir Depth Scale — no pure black (OLED smear prevention) */
  --noir-abyss: #020203;
  --noir: #050506;
  --noir-raised: #0a0a0c;
  --noir-card: #0d0d11;
  --noir-hover: #141419;
  --surface: rgba(255, 255, 255, 0.04);

  /* Borders — frosted glass edges */
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(212, 160, 23, 0.25);
  --border-shimmer: rgba(212, 160, 23, 0.08);

  /* Gold — WCAG 3:1 compliant luxury accent */
  --gold: #D4A017;
  --gold-raw: #A16207;
  --gold-light: #E8B830;
  --gold-dim: rgba(161, 98, 7, 0.1);
  --gold-glow: rgba(212, 160, 23, 0.2);
  --gold-intense: rgba(212, 160, 23, 0.35);

  /* Supporting palette */
  --purple: #8B7EC8;
  --purple-dim: rgba(139, 126, 200, 0.08);
  --cyan: #22d3ee;
  --cyan-dim: rgba(34, 211, 238, 0.06);
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.12);
  --red: #DC2626;
  --telegram: #0088cc;
  --telegram-glow: rgba(0, 136, 204, 0.3);

  /* Text hierarchy */
  --text-primary: #EDEDEF;
  --text-secondary: #8A8F98;
  --text-muted: #555560;
  --text-gold: var(--gold-light);

  /* Typography — Luxury Serif pairing */
  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 7rem;

  /* Radii — consistent 16px cinema style */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.025);
  --glass-blur: blur(16px) saturate(1.2);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shimmer: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(212,160,23,0.03) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 30px rgba(161, 98, 7, 0.15);
  --shadow-gold-intense: 0 8px 50px rgba(212, 160, 23, 0.2);
  --shadow-glow: 0 0 60px rgba(212, 160, 23, 0.06);

  /* Cinema easing — Expo.out */
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.45s;
  --duration-slow: 0.8s;
  --duration-dramatic: 1.2s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(180deg, #0a0a0f 0%, var(--noir-abyss) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 72px;
  padding-bottom: 68px;
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--duration-fast) var(--ease-cinema); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection {
  background: var(--gold-dim);
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY — Cormorant + Montserrat
   ═══════════════════════════════════════════════════════════════ */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.text-gold { color: var(--gold-light); }
.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, #E8B830 40%, #D4A017 70%, #A16207 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-purple { color: var(--purple); }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header p {
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding: 6px var(--space-md);
  background: var(--gold-dim);
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════
   GRIDS — Responsive cinema layout
   ═══════════════════════════════════════════════════════════════ */
.grid-2, .grid-3, .grid-4, .grid-5 {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — Frosted glass navigation
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 6, 0.8);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--duration-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 72px;
}

/* --- Location Search --- */
.location-search {
  position: relative;
  flex-shrink: 0;
}
.location-search-input {
  background: var(--noir-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 6px 14px 6px 34px;
  color: var(--text-primary);
  font-size: 0.78rem;
  font-family: inherit;
  width: 180px;
  outline: none;
  transition: border-color 0.2s, width 0.3s, background 0.2s;
}
.location-search-input::placeholder {
  color: var(--text-muted);
}
.location-search-input:focus {
  border-color: var(--gold);
  background: var(--noir-hover);
  width: 240px;
}
.location-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
}
.location-search-input:focus ~ .location-search-icon {
  color: var(--gold);
}
.location-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 260px;
  background: var(--noir-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  max-height: 320px;
  overflow-y: auto;
  z-index: 9999;
  display: none;
}
.location-search-results.active {
  display: block;
}
.location-search-results a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.15s;
}
.location-search-results a:last-child {
  border-bottom: none;
}
.location-search-results a:hover,
.location-search-results a.highlighted {
  background: var(--gold-dim);
  color: var(--gold-light);
}
.location-search-results .search-state {
  color: var(--text-muted);
  font-size: 0.7rem;
  margin-left: auto;
}
.location-search-results .search-no-results {
  padding: 14px;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}
@media (max-width: 768px) {
  .location-search { display: none; }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.logo .brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.logo .brand-accent { color: var(--gold); }

.header-nav {
  display: none;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 4px 5px;
  margin: 0 auto;
}

.header-nav a {
  position: relative;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 20px;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.header-nav a.active {
  color: var(--gold-light);
  background: var(--gold-dim);
  border: 1px solid rgba(212, 160, 23, 0.15);
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.08);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.header-nav a:hover::after {
  width: 60%;
}

.header-nav a.active::after {
  width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-nav a {
    padding: 6px 10px;
    font-size: 0.7rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS — Liquid gold interactions
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.7rem 1.6rem;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-cinema);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-raw) 100%);
  color: #020203;
  box-shadow: var(--shadow-gold);
}

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

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #E8B830 50%, var(--gold-raw) 100%);
  color: #020203;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(212, 160, 23, 0.3);
}

.btn-telegram {
  background: var(--telegram);
  color: #fff;
  font-weight: 700;
}

.btn-telegram:hover {
  background: #006daa;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--telegram-glow);
}

.btn-sm { padding: 0.45rem 1.1rem; min-height: 36px; font-size: 0.72rem; }
.btn-lg { padding: 0.9rem 2.2rem; min-height: 52px; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   HERO — Cinematic entrance
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 40px;
  overflow: hidden;
}

/* Ambient gold orbs */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  animation: orb-drift-1 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(161, 98, 7, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  animation: orb-drift-2 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33% { transform: translate(60px, -40px) scale(1.1); opacity: 1; }
  66% { transform: translate(-30px, 30px) scale(0.95); opacity: 0.7; }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-50px, -60px) scale(1.15); opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-content h1 {
  margin-bottom: var(--space-lg);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.9;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px var(--space-sm);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.hero-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
  50% { opacity: 0.3; box-shadow: 0 0 2px rgba(34, 197, 94, 0.2); }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HEADER — Subpage cinematic entry
   ═══════════════════════════════════════════════════════════════ */
.page-header {
  padding: 100px 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.breadcrumb a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   CARDS — Frosted obsidian with gold-dust edges
   ═══════════════════════════════════════════════════════════════ */
.card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-cinema);
}

/* Top-edge shimmer */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), rgba(212,160,23,0.06), transparent);
  pointer-events: none;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* Gold variant — warm glow */
.card-gold {
  border-color: rgba(212, 160, 23, 0.12);
  background: linear-gradient(160deg, rgba(212, 160, 23, 0.03) 0%, var(--glass-bg) 100%);
}

.card-gold::before {
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.08), transparent);
}

.card-gold:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.08), var(--shadow-gold);
}

/* --- City Card --- */
.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.city-card .city-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.8);
}

.city-card:hover .city-img {
  transform: scale(1.08);
  filter: brightness(1);
}

.city-card .city-info {
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  width: 100%;
}

/* Legacy emoji icon fallback */
.city-card .city-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-md) 0 var(--space-sm);
  font-size: 1.4rem;
  transition: all var(--duration-normal) var(--ease-spring);
}

.city-card:hover .city-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-raw) 100%);
  transform: scale(1.12);
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.3);
}

.city-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.city-card .city-label {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.city-card .city-arrow {
  margin-top: var(--space-xs);
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-cinema);
}

.city-card:hover .city-arrow {
  opacity: 1;
  transform: translateY(0);
}

.city-card.card-gold .city-img {
  border-bottom: 2px solid var(--gold);
}

/* --- Service Card --- */
.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(212, 160, 23, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s var(--ease-cinema), box-shadow 0.4s var(--ease-cinema), border-color 0.4s ease;
  text-decoration: none;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.3);
}

.service-card .service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.6s var(--ease-cinema), filter 0.6s var(--ease-cinema);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.service-card:hover .service-img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.service-card .service-body {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Legacy emoji icon fallback */
.service-card .service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-dim) 0%, rgba(212, 160, 23, 0.05) 100%);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 var(--space-md) 0;
  font-size: 1.5rem;
  transition: all var(--duration-normal) var(--ease-cinema);
}

.service-card .service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-dim) 0%, rgba(212, 160, 23, 0.2) 100%);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.2);
  transform: translateY(-2px);
}

.service-card h3 { 
  margin-bottom: var(--space-sm); 
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--gold);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

.service-card.card-gold .service-img {
  border-bottom: 2px solid var(--gold);
}

/* --- Trust Card --- */
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-cinema);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 160, 23, 0.1);
}

.trust-card .trust-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim) 0%, rgba(212, 160, 23, 0.05) 100%);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-cinema);
  box-shadow: inset 0 0 10px rgba(212, 160, 23, 0.1);
}

.trust-card:hover .trust-icon {
  background: linear-gradient(135deg, var(--gold-dim) 0%, rgba(212, 160, 23, 0.25) 100%);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.3), inset 0 0 10px rgba(212, 160, 23, 0.2);
  transform: scale(1.05) rotate(5deg);
}

.trust-card .trust-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.trust-card h4 { 
  margin-bottom: 6px; 
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.trust-card:hover h4 {
  color: var(--gold);
}

.trust-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

/* --- Base Card (Restored Premium) --- */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-cinema), box-shadow 0.4s var(--ease-cinema), border-color 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.3);
}

.card-gold {
  background: rgba(212, 160, 23, 0.05);
  border-color: rgba(212, 160, 23, 0.3);
}

.card-gold:hover {
  border-color: rgba(212, 160, 23, 0.5);
  box-shadow: 0 16px 40px rgba(212, 160, 23, 0.2);
}

/* --- Profile Card --- */
.profile-card {
  padding: 0;
  overflow: hidden;
}

.profile-card-img {
  aspect-ratio: 3/4;
  background: var(--noir-raised);
  position: relative;
  overflow: hidden;
}

.profile-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-cinema);
}

/* Golden vignette on hover */
.profile-card:hover .profile-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.profile-card-info {
  padding: var(--space-md);
}

.profile-card-info h4 { margin-bottom: 2px; }

.profile-card-info .profile-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --- Step Card --- */
.step-card {
  text-align: center;
  padding: var(--space-xl);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-raw) 100%);
  color: var(--noir-abyss);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.2);
}

.step-card h3 { margin-bottom: var(--space-sm); }

.step-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — Frosted glass accordion
   ═══════════════════════════════════════════════════════════════ */
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color var(--duration-fast);
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  min-height: 52px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  background: transparent;
  transition: background var(--duration-fast);
}

.faq-question:hover { background: rgba(255, 255, 255, 0.02); }

.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform var(--duration-normal) var(--ease-spring);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-cinema);
}

.faq-answer-inner,
.faq-answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* ═══════════════════════════════════════════════════════════════
   RATES TABLE
   ═══════════════════════════════════════════════════════════════ */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.rates-table th {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--noir-raised);
  border-bottom: 1px solid var(--border);
}

.rates-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.rates-table tr:hover td {
  background: rgba(212, 160, 23, 0.02);
}

.rates-table .price {
  color: var(--gold-light);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Deep noir with gold accents
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--noir-abyss);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .logo { margin-bottom: var(--space-md); }

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--space-xs); }

.footer-col a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-secondary); }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   BOTTOM NAV — Frosted glass mobile bar
   ═══════════════════════════════════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  background: rgba(5, 5, 6, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-top: 1px solid var(--border);
  height: 68px;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color var(--duration-fast);
  min-height: 44px;
  text-decoration: none;
}

.bottom-nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: var(--gold);
}

@media (min-width: 768px) {
  .bottom-nav { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   TELEGRAM FLOATING BUTTON — Pulsing glow ring
   ═══════════════════════════════════════════════════════════════ */
.telegram-float {
  position: fixed;
  bottom: 84px;
  right: var(--space-lg);
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--telegram);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px var(--telegram-glow);
  transition: all var(--duration-fast) var(--ease-spring);
  animation: tg-glow 4s ease-in-out infinite;
}

.telegram-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 136, 204, 0.2);
  animation: tg-ring 4s ease-in-out infinite;
}

@keyframes tg-glow {
  0%, 100% { box-shadow: 0 4px 24px var(--telegram-glow); }
  50% { box-shadow: 0 8px 40px rgba(0, 136, 204, 0.45); }
}

@keyframes tg-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}

.telegram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(0, 136, 204, 0.5);
}

.telegram-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

@media (min-width: 768px) {
  .telegram-float { bottom: var(--space-xl); right: var(--space-xl); }
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY PILLS — Horizontal scroll
   ═══════════════════════════════════════════════════════════════ */
.category-scroll {
  display: flex;
  gap: var(--space-xs);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar { display: none; }

.category-pill {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  min-height: 44px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease-cinema);
}

.category-pill:hover,
.category-pill.active {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: rgba(212, 160, 23, 0.15);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS — Cinema-grade reveals
   ═══════════════════════════════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-cinema),
              transform var(--duration-slow) var(--ease-cinema);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--duration-slow) var(--ease-cinema),
              transform var(--duration-slow) var(--ease-cinema);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.06s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.18s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.30s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.36s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.42s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.54s; }
.stagger.visible > *:nth-child(10) { transition-delay: 0.60s; }

/* ═══════════════════════════════════════════════════════════════
   NOISE TEXTURE OVERLAY — Subtle grain
   ═══════════════════════════════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), rgba(212, 160, 23, 0.06), var(--border), transparent);
  margin: var(--space-xl) 0;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.text-center { text-align: center; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.72rem; }

/* ═══════════════════════════════════════════════════════════════
   BLOG CARD — Premium thumbnail list format
   ═══════════════════════════════════════════════════════════════ */
.blog-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(212, 160, 23, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--gold);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.blog-card-content h3, .blog-card-content h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card-content h3,
.blog-card:hover .blog-card-content h4 {
  color: var(--gold);
}
.blog-card-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   PREMIUM EDITORIAL LAYOUT COMPONENTS (Flagship Pages)
   ═══════════════════════════════════════════════════════════════ */

/* Split Hero */
.split-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: 80vh;
  padding-top: 100px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .split-hero {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    padding-top: 120px;
  }
}
.split-hero-content {
  position: relative;
  z-index: 2;
}
.split-hero-image {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 992px) {
  .split-hero-image {
    height: 70vh;
    min-height: 550px;
  }
}
.split-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-glass-badges {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.glass-badge-item {
  text-align: center;
}
.glass-badge-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.glass-badge-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Package Pricing Cards */
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .package-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .package-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.package-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--noir-card);
  border: 1px solid rgba(255,255,255,0.05);
}
.package-card.package-featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.1);
}
.package-header {
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  text-align: center;
}
.package-featured .package-header {
  background: linear-gradient(135deg, rgba(212,160,23,0.12) 0%, rgba(161,98,7,0.08) 100%);
}
.package-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--noir-abyss);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}
.package-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.package-title-zh {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.package-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.package-prices {
  padding: 0 var(--space-lg) var(--space-md);
}
.package-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}
.package-price-row:last-child {
  border-bottom: none;
}
.package-price-row .duration {
  color: var(--text-secondary);
}
.package-price-row .price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-light);
}
.package-footer {
  padding: var(--space-sm) var(--space-lg) var(--space-lg);
}
.extra-services {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
}
.extra-services h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}
.extra-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.extra-row:last-child { border-bottom: none; }
.extra-row .extra-name { color: var(--text-secondary); }
.extra-row .extra-price { color: var(--gold); font-weight: 600; }

/* Island Highlight */
.island-highlight {
  background: var(--gold-dim);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Editorial Zig-Zag */
.editorial-zigzag {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}
.zigzag-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 768px) {
  .zigzag-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  .zigzag-row:nth-child(even) .zigzag-img-wrap {
    order: 2;
  }
  .zigzag-row:nth-child(even) .zigzag-text {
    order: 1;
    padding-right: var(--space-2xl);
  }
  .zigzag-row:nth-child(odd) .zigzag-text {
    padding-left: var(--space-2xl);
  }
}
.zigzag-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.zigzag-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.zigzag-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* Pricing Tiers */
.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: stretch;
  margin-top: var(--space-xl);
}
@media (min-width: 992px) {
  .pricing-tiers {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: center;
  }
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  transition: all var(--duration-default) ease;
  position: relative;
}
.tier-card h4 {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xs);
}
.tier-card .duration {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}
.tier-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}
.tier-card ul {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 2.2;
  margin-bottom: var(--space-xl);
  text-align: left;
  padding-left: var(--space-md);
  list-style-type: none;
}
.tier-card ul li {
  position: relative;
}
.tier-card ul li::before {
  content: '✓';
  position: absolute;
  left: -20px;
  color: var(--gold-dim);
}
.tier-premium {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  box-shadow: 0 10px 40px rgba(212, 160, 23, 0.15);
  z-index: 10;
}
.tier-premium .price {
  color: var(--gold);
}
.tier-premium ul li::before {
  color: var(--gold);
}
@media (min-width: 992px) {
  .tier-premium {
    transform: scale(1.05);
    padding: 3rem var(--space-lg);
  }
}
.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--noir-dark);
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* Vertical Timeline Booking */
.vertical-timeline {
  position: relative;
  max-width: 600px;
  margin: var(--space-xl) auto 0;
}
.vertical-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-dim), var(--gold), var(--gold-dim));
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-2xl);
  display: flex;
  flex-direction: column;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--noir-dark);
  border: 2px solid var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  z-index: 2;
}
.timeline-num {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════
   PHASE 2 PREMIUM COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* Coverage Directory List */
.coverage-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .coverage-list {
    grid-template-columns: 1fr 1fr;
  }
}
.coverage-item {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-spring);
}
.coverage-item:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,0.03);
  border-color: var(--gold);
}
.coverage-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}
.coverage-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Staggered Masonry Gallery */
.masonry-gallery {
  column-count: 2;
  column-gap: var(--space-md);
}
@media (min-width: 768px) {
  .masonry-gallery {
    column-count: 3;
    column-gap: var(--space-lg);
  }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
  .masonry-item {
    margin-bottom: var(--space-lg);
  }
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--duration-slow) var(--ease-cinema);
}
.masonry-item:hover img {
  transform: scale(1.05);
}

/* Split Feature Mode */
.split-feature {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
@media (min-width: 992px) {
  .split-feature {
    flex-direction: row;
  }
}
.split-mode {
  flex: 1;
  padding: var(--space-2xl);
  position: relative;
}
.split-mode:first-child {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.05), transparent);
}
@media (min-width: 992px) {
  .split-mode:first-child {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
}
.split-mode h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  color: var(--gold);
}
.split-mode ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.split-mode ul li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 20px;
}
.split-mode ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
