/* ═══════════════════════════════════════════
   CSS VARIABLES & THEMES
   ═══════════════════════════════════════════ */
:root {
  --hf: 'Playfair Display', Georgia, serif;
  --bf: 'Outfit', sans-serif;
}

.theme-dark {
  --bg: #0a0a14;
  --bg2: #0f0f1c;
  --text: #f5eff0;
  --muted: #9088a0;
  --dim: #605870;
  --rose: #e8a0b4;
  --rose-deep: #d4708a;
  --lavender: #b8a0e0;
  --mint: #a0e0c8;
  --blush: #f2c4d0;
  --gold: #e8d0a0;
  --border: rgba(232,160,180,0.08);
  --card-bg: rgba(232,160,180,0.04);
  --nav-bg: rgba(10,10,20,0.88);
  --orb1: rgba(232,160,180,0.07);
  --orb2: rgba(180,160,230,0.05);
  --orb3: rgba(160,224,200,0.04);
  --glass-hover: rgba(232,160,180,0.06);
  --shadow: rgba(0,0,0,0.3);
}

.theme-light {
  --bg: #fdf8f6;
  --bg2: #f5eee8;
  --text: #2a1a24;
  --muted: #7a6878;
  --dim: #a89aa8;
  --rose: #c4587a;
  --rose-deep: #a8406a;
  --lavender: #8a68c0;
  --mint: #3aaa88;
  --blush: #e8a0b8;
  --gold: #c8a060;
  --border: rgba(180,60,100,0.1);
  --card-bg: rgba(180,60,100,0.03);
  --nav-bg: rgba(253,248,246,0.92);
  --orb1: rgba(232,160,180,0.1);
  --orb2: rgba(180,160,230,0.07);
  --orb3: rgba(160,224,200,0.05);
  --glass-hover: rgba(232,160,180,0.06);
  --shadow: rgba(0,0,0,0.08);
}

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--bf);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.5s, color 0.5s;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
a, button, div, span, label {
  -webkit-tap-highlight-color: transparent;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { -webkit-appearance: none; }
em { font-style: italic; color: var(--rose); }
strong { color: var(--text); font-weight: 600; }

/* ═══ ANIMATIONS ═══ */
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-18px) translateX(8px); }
  66% { transform: translateY(8px) translateX(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.025; }
  50% { opacity: 0.06; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 20px rgba(232,160,180,0.25); }
  50% { box-shadow: 0 0 40px rgba(232,160,180,0.45); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(232,160,180,0.12); }
  50% { border-color: rgba(180,160,230,0.22); }
}

/* ═══ LAYOUT ═══ */
.container { max-width: 1200px; margin: 0 auto; position: relative; }
.container-sm { max-width: 800px; }
.section { padding: 120px 32px; position: relative; z-index: 1; }
.section-accent { background: linear-gradient(180deg, transparent, var(--card-bg), transparent); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-title { font-family: var(--hf); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.15; margin-top: 24px; }
.section-sub { color: var(--muted); max-width: 600px; margin: 16px auto 0; line-height: 1.8; font-size: 0.95rem; }
.body-text { color: var(--muted); line-height: 1.9; font-size: 0.98rem; margin-bottom: 16px; }
.body-text.dim { color: var(--dim); font-size: 0.9rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { transform: translateX(40px); }
.reveal-left.visible { transform: translateX(0); }

/* ═══ AURORA ═══ */
.aurora { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.aurora-orb { position: absolute; border-radius: 50%; }
.orb-1 { width: 800px; height: 800px; background: radial-gradient(circle, var(--orb1) 0%, transparent 60%); top: 15%; left: 15%; animation: orbFloat 25s ease-in-out infinite; }
.orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, var(--orb2) 0%, transparent 60%); top: 45%; right: 10%; animation: orbFloat 30s ease-in-out infinite reverse; }
.orb-3 { width: 500px; height: 500px; background: radial-gradient(circle, var(--orb3) 0%, transparent 60%); bottom: 20%; left: 35%; animation: orbFloat 20s ease-in-out infinite 5s; }

/* ═══ VR GRID ═══ */
.vr-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(232,160,180,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(232,160,180,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 6s ease-in-out infinite;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

/* ═══ NAVIGATION ═══ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 28px; transition: all 0.4s; display: flex; justify-content: center;
}
#navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1300px; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; }
.nav-logo-img { height: 44px; width: auto; border-radius: 10px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-brand { font-family: var(--hf); font-size: 1.1rem; font-weight: 500; letter-spacing: 1.5px; }
.nav-sub { font-size: 0.52rem; letter-spacing: 2.5px; color: var(--dim); text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s; font-weight: 400; position: relative; cursor: pointer;
  -webkit-tap-highlight-color: transparent; -webkit-user-select: none; user-select: none; outline: none;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--rose), var(--lavender)); transition: width 0.3s;
}
.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Theme Toggle */
.theme-toggle {
  width: 40px; height: 24px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--card-bg); cursor: pointer; position: relative; transition: all 0.3s;
  display: flex; align-items: center; padding: 2px;
}
.theme-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--lavender));
  display: flex; align-items: center; justify-content: center; font-size: 0.55rem;
  transition: transform 0.3s;
}
.theme-dark .theme-icon { transform: translateX(0); }
.theme-light .theme-icon { transform: translateX(16px); }

/* Mobile Toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
  -webkit-tap-highlight-color: transparent; outline: none;
}
.mobile-toggle:focus, .mobile-toggle:active { outline: none; }
.mobile-toggle span {
  width: 22px; height: 1.5px; background: var(--rose);
  transition: all 0.3s; display: block;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--bg); backdrop-filter: blur(30px);
  z-index: 999; display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 30px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none; user-select: none;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--hf); font-size: 1.8rem; font-weight: 400;
  font-style: italic; color: var(--rose); letter-spacing: 2px;
  transition: transform 0.3s;
  -webkit-tap-highlight-color: transparent; outline: none;
  -webkit-user-select: none; user-select: none;
}
.mobile-menu a:focus, .mobile-menu a:active { outline: none; background: transparent; }
.mobile-menu a:hover { transform: translateX(8px); }

/* ═══ BUTTONS ═══ */
.cta-main {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep), var(--lavender));
  background-size: 200% 200%; animation: shimmer 5s linear infinite;
  color: #fff !important; border: none; border-radius: 60px;
  padding: 17px 44px; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; letter-spacing: 1px; text-transform: uppercase;
  font-family: var(--bf); display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 32px rgba(232,160,180,0.25);
}
.cta-main:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(232,160,180,0.35); }
.cta-sm { padding: 10px 24px; font-size: 0.73rem; }
.cta-pulse { animation: pulseBtn 3s ease-in-out infinite, shimmer 5s linear infinite; }
.cta-outline {
  background: transparent; color: var(--rose) !important; border: 1.5px solid var(--border);
  border-radius: 60px; padding: 15px 36px; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; letter-spacing: 1px; text-transform: uppercase;
  font-family: var(--bf); display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.4s;
}
.cta-outline:hover { background: rgba(232,160,180,0.08); border-color: var(--rose); transform: translateY(-2px); }

/* ═══ HOLO BADGE ═══ */
.holo-badge {
  display: inline-block; padding: 7px 22px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(232,160,180,0.12), rgba(180,160,230,0.12));
  border: 1px solid rgba(232,160,180,0.2);
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--rose);
}
.theme-light .holo-badge {
  background: linear-gradient(135deg, rgba(180,60,100,0.08), rgba(120,80,180,0.08));
  border-color: rgba(180,60,100,0.15);
}

/* ═══ GRADIENT TEXT ═══ */
.gradient-text {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, var(--rose), var(--blush), var(--lavender), var(--mint), var(--rose));
  background-size: 300% auto; animation: shimmer 6s linear infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ GLASS CARDS ═══ */
.glass {
  background: var(--card-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden;
}
.glass::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose), var(--lavender), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.glass:hover { border-color: rgba(232,160,180,0.2); transform: translateY(-5px); box-shadow: 0 20px 50px var(--shadow); }
.glass:hover::before { opacity: 1; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 140px 24px 100px; position: relative; overflow: hidden; z-index: 1;
}
.hero-title {
  font-family: var(--hf); font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 300; line-height: 1.08; max-width: 880px;
  margin-top: 32px; margin-bottom: 24px;
}
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 600px; line-height: 1.9; font-weight: 300; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-stats { margin-top: 60px; display: flex; gap: 48px; flex-wrap: wrap; justify-content: center; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--hf); font-size: 1.8rem; font-weight: 300; color: var(--rose); display: block; }
.hero-stat-label { font-size: 0.65rem; letter-spacing: 2px; color: var(--dim); text-transform: uppercase; }
.hero-deco { position: absolute; border: 1px solid var(--border); opacity: 0.5; animation: floatSlow 7s ease-in-out infinite; }
.d1 { top: 12%; right: 10%; width: 80px; height: 80px; border-radius: 20px; transform: rotate(15deg); }
.d2 { bottom: 18%; left: 6%; width: 60px; height: 60px; border-radius: 50%; animation-delay: 2s; }
.d3 { top: 35%; left: 5%; width: 8px; height: 8px; background: var(--rose); border-radius: 50%; border: none; opacity: 0.4; animation-delay: 1s; animation-duration: 5s; }
.d4 { bottom: 35%; right: 8%; width: 6px; height: 6px; background: var(--lavender); border-radius: 50%; border: none; opacity: 0.3; animation-delay: 3s; animation-duration: 6s; }

/* ═══ MARQUEE ═══ */
.marquee-wrap {
  overflow: hidden; padding: 20px 0; position: relative; z-index: 1;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: inline-block; white-space: nowrap; animation: marquee 40s linear infinite;
}
.marquee-track span { padding: 0 14px; font-size: 0.8rem; color: var(--dim); letter-spacing: 2px; text-transform: uppercase; }
.marquee-track .dot { color: var(--rose); }

/* ═══ ABOUT VISUAL ═══ */
.about-visual-wrap {
  position: relative; width: 100%; display: flex; justify-content: center;
}
.about-photo {
  width: 100%; max-height: 500px; object-fit: cover; border-radius: 24px;
  border: 1px solid var(--border); display: none;
}
.about-photo.active { display: block; }
.about-photo.active + .about-card { display: none; }
.about-card {
  aspect-ratio: 3/4; max-height: 420px; width: 100%; border-radius: 24px;
  background: linear-gradient(145deg, rgba(232,160,180,0.08), var(--card-bg));
  border: 1px solid var(--border); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; padding: 36px;
  position: relative; overflow: hidden; animation: borderGlow 6s ease-in-out infinite;
}
.vr-icon-modern { opacity: 0.7; animation: floatSlow 6s ease-in-out infinite; position: relative; filter: drop-shadow(0 4px 20px rgba(232,160,180,0.15)); }
.about-card-title {
  font-family: var(--hf); font-size: 1.3rem; font-weight: 300; font-style: italic;
  text-align: center; background: linear-gradient(135deg, var(--rose), var(--lavender));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; position: relative;
}
.about-card-sub { font-size: 0.78rem; color: var(--dim); text-align: center; line-height: 1.7; position: relative; }
.corner-deco { position: absolute; width: 32px; height: 32px; opacity: 0.3; }
.corner-deco.tl { top: 16px; left: 16px; border-top: 1px solid var(--rose); border-left: 1px solid var(--rose); border-radius: 4px 0 0 0; }
.corner-deco.br { bottom: 16px; right: 16px; border-bottom: 1px solid var(--lavender); border-right: 1px solid var(--lavender); border-radius: 0 0 4px 0; }
.mini-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.mini-num { font-family: var(--hf); font-size: 2rem; font-weight: 300; display: block; }
.mini-label { font-size: 0.65rem; letter-spacing: 2px; color: var(--dim); text-transform: uppercase; }
.rose { color: var(--rose); }
.lavender { color: var(--lavender); }
.mint { color: var(--mint); }
.gold { color: var(--gold); }
.blush { color: var(--blush); }

/* ═══ STEPS ═══ */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.step-card { padding: 36px 28px; display: flex; gap: 20px; align-items: flex-start; }
.step-card h3 { font-family: var(--hf); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-family: var(--hf);
  font-size: 1.3rem; font-weight: 600; flex-shrink: 0;
}
.rose-bg { background: rgba(232,160,180,0.15); color: var(--rose); border: 1px solid rgba(232,160,180,0.3); }
.lavender-bg { background: rgba(180,160,230,0.15); color: var(--lavender); border: 1px solid rgba(180,160,230,0.3); }
.mint-bg { background: rgba(160,224,200,0.15); color: var(--mint); border: 1px solid rgba(160,224,200,0.3); }
.gold-bg { background: rgba(232,208,160,0.15); color: var(--gold); border: 1px solid rgba(232,208,160,0.3); }
.quote-box {
  text-align: center; margin-top: 48px; padding: 32px; border-radius: 20px;
  border: 1px solid var(--border); background: var(--card-bg);
}
.quote-box p { font-family: var(--hf); font-size: 1.2rem; font-weight: 400; font-style: italic; color: var(--rose); line-height: 1.7; }

/* ═══ VR CARDS ═══ */
.vr-card { padding: 44px 28px; text-align: center; }
.vr-card-icon { font-size: 2.5rem; margin-bottom: 18px; }
.vr-card-title { font-family: var(--hf); font-size: 1.4rem; font-weight: 500; margin-bottom: 22px; }
.vr-features { display: flex; flex-direction: column; gap: 12px; }
.vr-features li { display: flex; align-items: center; gap: 10px; justify-content: center; color: var(--muted); font-size: 0.88rem; }
.feat-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.rose-dot { background: var(--rose); }
.lav-dot { background: var(--lavender); }
.mint-dot { background: var(--mint); }

/* ═══ SERVICES ═══ */
.service-card { padding: 36px 26px; }
.service-icon {
  font-size: 1.6rem; margin-bottom: 16px; width: 48px; height: 48px;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.rose-bg-light { background: rgba(232,160,180,0.1); }
.lav-bg-light { background: rgba(180,160,230,0.1); }
.mint-bg-light { background: rgba(160,224,200,0.1); }
.blush-bg-light { background: rgba(242,196,208,0.1); }
.gold-bg-light { background: rgba(232,208,160,0.1); }
.service-card h3 { font-family: var(--hf); font-size: 1.15rem; font-weight: 500; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.8; }

/* ═══ EARNINGS ═══ */
.earn-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 36px 0 48px; }
.earn-badge {
  display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 50px;
  background: var(--card-bg); border: 1px solid var(--border); font-size: 0.82rem; color: var(--muted);
}
.earn-card { padding: 48px 30px; text-align: center; border-radius: 32px; }
.earn-card.featured { border-color: rgba(232,160,180,0.2); }
.earn-tag {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}
.blush-tag { background: rgba(242,196,208,0.12); border: 1px solid rgba(242,196,208,0.25); color: var(--blush); }
.rose-tag { background: rgba(232,160,180,0.12); border: 1px solid rgba(232,160,180,0.25); color: var(--rose); }
.lav-tag { background: rgba(180,160,230,0.12); border: 1px solid rgba(180,160,230,0.25); color: var(--lavender); }
.earn-level { font-family: var(--hf); font-size: 1.4rem; font-weight: 400; font-style: italic; margin-bottom: 6px; }
.earn-time { font-size: 0.75rem; color: var(--dim); letter-spacing: 1px; display: block; margin-bottom: 24px; }
.earn-range { font-family: var(--hf); font-size: 2rem; font-weight: 600; margin-bottom: 20px; }
.earn-divider { width: 36px; height: 1px; background: var(--border); margin: 0 auto 20px; }
.earn-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.8; }
.earn-period { font-size: 0.7rem; color: var(--dim); margin-top: 16px; display: block; }
.featured-border {
  position: absolute; inset: -1px; border-radius: 32px; padding: 1.5px;
  background: linear-gradient(135deg, var(--rose), var(--lavender), var(--mint), var(--rose));
  background-size: 300% 300%; animation: shimmer 5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

/* ═══ STATS ═══ */
.stats-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 90px 32px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-num { font-family: var(--hf); font-size: 2.8rem; font-weight: 300; line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--dim); margin-top: 10px; }


/* ═══ GALLERY ═══ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  border-radius: 20px; overflow: hidden; cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1); aspect-ratio: 3/2;
  background: var(--card-bg); border: 1px solid var(--border);
}
.gallery-item:hover { transform: scale(1.03) translateY(-4px); box-shadow: 0 20px 40px var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--dim);
  font-size: 0.95rem; border: 2px dashed var(--border); border-radius: 20px;
}

/* ═══ LOCATIONS ═══ */
.location-card { padding: 40px 24px; text-align: center; }
.loc-emoji { font-size: 2.2rem; margin-bottom: 16px; }
.location-card h3 { font-family: var(--hf); font-size: 1.3rem; font-weight: 400; font-style: italic; margin-bottom: 8px; }
.location-card p { color: var(--dim); font-size: 0.85rem; }

/* ═══ FAQ ═══ */
.faq-item {
  border-bottom: 1px solid var(--border); padding: 24px 0; cursor: pointer;
  -webkit-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.faq-item:focus, .faq-item:active { outline: none; background: transparent; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  -webkit-user-select: none; user-select: none;
}
.faq-q h4 {
  font-family: var(--hf); font-size: 1.15rem; font-weight: 500; padding-right: 16px;
  -webkit-user-select: none; user-select: none; pointer-events: none;
}
.faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--card-bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s; flex-shrink: 0; color: var(--rose); font-size: 1.1rem;
}
.faq-item.active .faq-toggle { background: var(--rose); color: var(--bg); }
.faq-item.active .faq-toggle span { transform: rotate(45deg); }
.faq-toggle span { transition: transform 0.3s; display: block; line-height: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.16,1,0.3,1); }
.faq-item.active .faq-a { max-height: 400px; }
.faq-a p { color: var(--muted); font-size: 0.93rem; line-height: 1.85; padding-top: 14px; }

/* ═══ CTA SECTION ═══ */
.cta-section { overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,160,180,0.05), rgba(180,160,230,0.03));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* ═══ FOOTER ═══ */
footer { padding: 72px 32px 36px; position: relative; z-index: 1; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo span { font-family: var(--hf); font-size: 1rem; font-weight: 500; letter-spacing: 1.5px; }
.footer-desc { color: var(--dim); font-size: 0.85rem; line-height: 1.8; max-width: 280px; }
footer h4 { font-family: var(--hf); font-size: 0.95rem; margin-bottom: 16px; color: var(--rose); font-style: italic; }
footer a, footer span { display: block; color: var(--dim); font-size: 0.85rem; margin-bottom: 8px; transition: color 0.3s; }
footer a:hover { color: var(--rose); }
.footer-note { font-size: 0.78rem !important; margin-top: 8px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { color: var(--dim); font-size: 0.72rem; opacity: 0.6; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.72rem; opacity: 0.6; margin-bottom: 0; display: inline; }

/* ═══ STICKY WA ═══ */
.sticky-wa {
  position: fixed; bottom: 24px; left: 24px; z-index: 100;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; padding: 14px 24px; border-radius: 60px;
  font-size: 0.85rem; font-weight: 600; font-family: var(--bf);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  opacity: 0; transform: translateY(16px); transition: all 0.4s;
}
.sticky-wa.visible { opacity: 1; transform: translateY(0); }

/* ═══ LIGHTBOX ═══ */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; cursor: zoom-out;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none; user-select: none;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: min(90%, 1200px); max-height: 85vh; border-radius: 16px;
  object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default; transition: opacity 0.3s;
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px; color: #fff; font-size: 2rem;
  cursor: pointer; background: none; border: none; opacity: 0.7;
  transition: opacity 0.3s; z-index: 2; line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  width: 52px; height: 52px; color: #fff; font-size: 1.6rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 2; line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-family: var(--bf);
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ═══ ADMIN PANEL ═══ */
.admin-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.admin-overlay.active { opacity: 1; pointer-events: all; }
.admin-panel {
  width: 100%; max-width: 700px; max-height: 85vh; overflow: auto;
  background: var(--bg2); border-radius: 24px; border: 1px solid var(--border); padding: 36px;
}
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-header h2 { font-family: var(--hf); font-size: 1.5rem; font-weight: 500; }
.admin-close { background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; }
.admin-input { width: 100%; padding: 10px 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-family: var(--bf); font-size: 0.9rem; outline: none; margin-bottom: 12px; }
.admin-input:focus { border-color: var(--rose); }
.admin-textarea { min-height: 80px; resize: vertical; }
.admin-btn { padding: 10px 24px; border-radius: 12px; border: none; cursor: pointer; font-family: var(--bf); font-weight: 600; font-size: 0.85rem; transition: all 0.3s; }
.admin-btn-primary { background: var(--rose); color: #fff; }
.admin-btn-primary:hover { opacity: 0.9; }
.admin-btn-danger { background: #e05050; color: #fff; }
.admin-error { color: #e05050; font-size: 0.8rem; margin-top: 8px; }
.admin-msg { padding: 10px 16px; border-radius: 12px; margin-bottom: 16px; font-size: 0.85rem; background: rgba(160,224,200,0.15); border: 1px solid rgba(160,224,200,0.3); color: var(--mint); }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 28px; }
.admin-tab { padding: 10px 20px; border-radius: 12px; border: 1px solid var(--border); background: var(--card-bg); color: var(--muted); font-family: var(--bf); font-weight: 500; font-size: 0.85rem; cursor: pointer; transition: all 0.3s; }
.admin-tab.active { background: var(--rose); color: #fff; border-color: var(--rose); }
.admin-tab-content h3 { font-family: var(--hf); font-size: 1.1rem; font-weight: 500; margin-bottom: 16px; }
.admin-upload-area { padding: 20px; border: 2px dashed var(--border); border-radius: 16px; margin-bottom: 20px; text-align: center; }
.admin-upload-area p { color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; }
.admin-file-input { display: none; }
.admin-file-label { display: inline-block; padding: 10px 24px; border-radius: 12px; background: var(--card-bg); border: 1px solid var(--border); color: var(--rose); cursor: pointer; font-size: 0.9rem; font-weight: 500; transition: all 0.3s; }
.admin-file-label:hover { background: var(--rose); color: #fff; }
.upload-progress { margin-top: 12px; }
.upload-bar { height: 4px; border-radius: 2px; background: var(--border); overflow: hidden; }
.upload-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--rose), var(--lavender)); width: 0%; transition: width 0.3s; }
.admin-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.admin-gallery-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3/2; border: 1px solid var(--border); }
.admin-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.admin-gallery-item .del-btn { position: absolute; top: 6px; right: 6px; width: 24px; height: 24px; border-radius: 50%; background: rgba(0,0,0,0.7); color: #fff; border: none; cursor: pointer; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; }
.admin-gallery-item .img-name { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); padding: 4px 8px; font-size: 0.6rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.text-field { margin-bottom: 18px; }
.text-field label { display: block; font-size: 0.72rem; letter-spacing: 1px; color: var(--dim); text-transform: uppercase; margin-bottom: 6px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  .hero-title { font-size: 2.4rem !important; }
  .section-title { font-size: 1.9rem !important; }
  .grid-2, .grid-3, .steps-grid { grid-template-columns: 1fr; }
  .grid-2 { gap: 40px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas > * { text-align: center; justify-content: center; }
  .hero-stats { gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-desc { max-width: 100%; }
  .footer-logo { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .earn-badges { gap: 8px; }
  .earn-badge { font-size: 0.75rem; padding: 8px 14px; }
  .mini-stats { gap: 24px; }
  .cta-sm { display: none; }
  .nav-logo-img { height: 36px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem !important; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { gap: 24px; }
  .stat-num { font-size: 2.2rem; }
}
