@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #080808;
  color: #e8e0d0;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: #8a6e2f;
  --cream: #e8e0d0;
  --cream-muted: #a09580;
  --bg: #080808;
  --bg-1: #111111;
  --bg-2: #181818;
  --bg-3: #222222;
  --border: rgba(201, 168, 76, 0.2);
  --border-subtle: rgba(255,255,255,0.06);
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
p { line-height: 1.7; color: var(--cream-muted); }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.gold { color: var(--gold); }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }

/* ── GOLD LINE ACCENT ── */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.section-label::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--radius); border: none;
  cursor: pointer; transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold); color: #080808;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--cream); border: 1px solid var(--border-subtle);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, border-bottom 0.4s;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.95); padding: 14px 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--cream); letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--cream-muted); transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1800&q=80');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.65) 50%, rgba(8,8,8,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { margin-bottom: 1.5rem; color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.1rem; max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: absolute; bottom: 48px; right: 0; z-index: 1;
  display: flex; gap: 32px;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream-muted); }

/* ── MARQUEE TICKER ── */
.marquee-wrap {
  background: var(--gold); overflow: hidden; padding: 12px 0;
  border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 24px; padding: 0 40px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: #080808;
}
.marquee-item::after { content: '★'; opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FEATURED CELEBRITIES ── */
.celeb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.celeb-card {
  background: var(--bg-1); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); cursor: pointer; position: relative;
}
.celeb-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.celeb-card-img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.5s ease;
}
.celeb-card:hover .celeb-card-img { transform: scale(1.04); }
.celeb-card-img-wrap { overflow: hidden; position: relative; }
.celeb-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(8,8,8,0.8); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 12px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  backdrop-filter: blur(8px);
}
.celeb-card-avail {
  position: absolute; top: 14px; right: 14px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #4caf7d; box-shadow: 0 0 8px rgba(76,175,125,0.6);
}
.celeb-card-body { padding: 20px; }
.celeb-card-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.celeb-card-cat { font-size: 0.8rem; color: var(--cream-muted); margin-bottom: 12px; }
.celeb-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border-subtle); padding-top: 14px; margin-top: 14px;
}
.celeb-card-price { font-size: 0.8rem; color: var(--cream-muted); }
.celeb-card-price strong { font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.celeb-card-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--bg-1); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; margin-top: 60px; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden;
}
.step {
  padding: 40px 32px; background: var(--bg-1); position: relative;
  border-right: 1px solid var(--border-subtle); transition: background var(--transition);
}
.step:last-child { border-right: none; }
.step:hover { background: var(--bg-2); }
.step-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 900;
  color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 1rem;
}
.step-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonials { position: relative; overflow: hidden; }
.testimonials-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?w=1400&q=80');
  background-size: cover; background-position: center; opacity: 0.08;
}
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 56px;
}
.testi-card {
  background: rgba(17,17,17,0.9); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px;
  backdrop-filter: blur(8px); transition: var(--transition);
}
.testi-card:hover { border-color: var(--border); }
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testi-text { font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; color: var(--cream); font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--border);
}
.testi-name { font-weight: 600; font-size: 0.9rem; color: var(--cream); }
.testi-meta { font-size: 0.78rem; color: var(--gold); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gold); padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: 'FANCONNECT'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 12vw; font-weight: 900;
  color: rgba(0,0,0,0.06); white-space: nowrap; pointer-events: none; letter-spacing: 0.1em;
}
.cta-banner h2 { color: #080808; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(8,8,8,0.65); font-size: 1.05rem; margin-bottom: 2rem; }
.btn-dark { background: #080808; color: var(--gold); }
.btn-dark:hover { background: #111; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

/* ── FOOTER ── */
.footer { background: var(--bg-1); border-top: 1px solid var(--border-subtle); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--cream-muted); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; color: var(--cream); margin-bottom: 1.25rem; }
.footer-col a {
  display: block; font-size: 0.875rem; color: var(--cream-muted);
  margin-bottom: 0.75rem; transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--cream-muted);
}

/* ── FILTER BAR (celebrities page) ── */
.filter-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 24px 0; border-bottom: 1px solid var(--border-subtle); margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--border-subtle); background: transparent;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--cream-muted); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #080808; }
.search-input {
  margin-left: auto; padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--border-subtle); background: var(--bg-2);
  font-family: var(--font-body); font-size: 0.875rem; color: var(--cream);
  outline: none; width: 220px; transition: border-color var(--transition);
}
.search-input::placeholder { color: var(--cream-muted); }
.search-input:focus { border-color: var(--gold); }

/* ── PROFILE PAGE ── */
.profile-hero {
  padding-top: 100px; min-height: 70vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.profile-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
}
.profile-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 20%, rgba(8,8,8,0.4) 70%, rgba(8,8,8,0.3) 100%);
}
.profile-hero-content { position: relative; z-index: 1; padding: 60px 0 48px; }
.profile-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1rem; }
.tag {
  padding: 4px 14px; border-radius: 100px; border: 1px solid var(--border);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
}
.profile-name { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--cream); margin-bottom: 0.5rem; }
.profile-meta { font-size: 0.9rem; color: var(--cream-muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 20px; }
.profile-meta span { display: flex; align-items: center; gap: 6px; }
.profile-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.profile-sticky { position: sticky; top: 100px; }

/* ── PACKAGE CARDS ── */
.package-card {
  background: var(--bg-2); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 16px;
  transition: var(--transition); cursor: pointer;
}
.package-card:hover, .package-card.selected { border-color: var(--gold); background: var(--bg-3); }
.package-card.popular { border-color: var(--gold); }
.package-popular-badge {
  display: inline-block; background: var(--gold); color: #080808;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 12px;
}
.package-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin-bottom: 4px; }
.package-price { font-size: 1.8rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.package-price span { font-size: 1rem; color: var(--cream-muted); font-weight: 400; }
.package-features { list-style: none; }
.package-features li {
  font-size: 0.875rem; color: var(--cream-muted); padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
}
.package-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── BOOKING FORM ── */
.booking-section { background: var(--bg-1); }
.booking-form-wrap {
  background: var(--bg-2); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius);
  border: 1px solid var(--border-subtle); background: var(--bg-3);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--cream);
  outline: none; transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--cream-muted); }
.form-select option { background: var(--bg-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-textarea { resize: vertical; min-height: 100px; }

/* ── DATE PICKER GRID ── */
.date-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 12px; }
.date-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); border: 1px solid var(--border-subtle);
  font-size: 0.8rem; cursor: pointer; transition: var(--transition); color: var(--cream-muted);
}
.date-cell:hover:not(.disabled):not(.empty) { border-color: var(--gold); color: var(--gold); }
.date-cell.selected { background: var(--gold); border-color: var(--gold); color: #080808; font-weight: 700; }
.date-cell.disabled { opacity: 0.25; cursor: not-allowed; }
.date-cell.empty { border: none; cursor: default; }
.date-cell.today { border-color: var(--gold-dim); color: var(--gold); }

/* ── AUTH PAGES ── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.auth-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1400&q=80');
  background-size: cover; background-position: center; opacity: 0.12;
}
.auth-card {
  position: relative; z-index: 1;
  background: var(--bg-1); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 48px; width: 100%; max-width: 460px;
}
.auth-logo { font-family: var(--font-display); font-size: 1.8rem; text-align: center; margin-bottom: 8px; }
.auth-subtitle { text-align: center; font-size: 0.9rem; margin-bottom: 2rem; }
.auth-divider {
  display: flex; align-items: center; gap: 12px; margin: 20px 0;
  font-size: 0.8rem; color: var(--cream-muted);
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-subtle);
}
.auth-switch { text-align: center; margin-top: 1.5rem; font-size: 0.875rem; color: var(--cream-muted); }
.auth-switch a { color: var(--gold); font-weight: 600; }
.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--bg-2); border: 1px solid var(--border-subtle); color: var(--cream);
  padding: 12px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.btn-google:hover { border-color: var(--gold); }

/* ── DASHBOARD ── */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; min-height: 80vh; }
.sidebar {
  background: var(--bg-1); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px 24px; position: sticky; top: 100px; height: fit-content;
}
.sidebar-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-3); border: 2px solid var(--border); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.8rem; color: var(--gold);
}
.sidebar-name { text-align: center; font-family: var(--font-display); color: var(--cream); margin-bottom: 4px; }
.sidebar-email { text-align: center; font-size: 0.8rem; color: var(--cream-muted); margin-bottom: 24px; }
.sidebar-nav { border-top: 1px solid var(--border-subtle); padding-top: 20px; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius);
  font-size: 0.875rem; color: var(--cream-muted);
  transition: var(--transition); cursor: pointer; border: none; background: none;
  width: 100%; text-align: left;
}
.sidebar-link:hover, .sidebar-link.active { background: var(--bg-2); color: var(--gold); }
.sidebar-link .icon { font-size: 1rem; }

/* ── BOOKING STATUS BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
}
.badge-confirmed { background: rgba(76,175,125,0.15); color: #4caf7d; }
.badge-pending { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge-cancelled { background: rgba(255,80,80,0.15); color: #ff5050; }

/* ── BOOKING HISTORY CARD ── */
.booking-card {
  background: var(--bg-1); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; align-items: center; gap: 20px; margin-bottom: 16px;
  transition: var(--transition);
}
.booking-card:hover { border-color: var(--border); }
.booking-card-img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.booking-card-info { flex: 1; }
.booking-card-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--cream); margin-bottom: 4px; }
.booking-card-detail { font-size: 0.82rem; color: var(--cream-muted); }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 24px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  transform: translateY(100px); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.2rem; }
.toast-msg { font-size: 0.9rem; color: var(--cream); }
.toast-success { border-color: rgba(76,175,125,0.4); }
.toast-error { border-color: rgba(255,80,80,0.35); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sticky { position: static; }
  .dashboard-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .booking-card { flex-wrap: wrap; }
}

/* ── MOBILE NAV MENU ── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(8,8,8,0.97); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; color: var(--cream); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 1.5rem; color: var(--cream-muted); cursor: pointer;
  background: none; border: none;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 140px 0 60px; text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.page-header h1 { margin-bottom: 0.75rem; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 80px 0; }
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state h3 { color: var(--cream); margin-bottom: 0.5rem; }

/* ── LOADING SPINNER ── */
.spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--border-subtle); border-top-color: var(--gold);
  animation: spin 0.7s linear infinite; margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }