/* ============================================
   GEEK STORES — Main Stylesheet
   Colors: Purple & White
   ============================================ */

:root {
  --purple-50: #faf5ff;
  --purple-100: #ede9fe;
  --purple-200: #ddd6fe;
  --purple-300: #c4b5fd;
  --purple-400: #a78bfa;
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --purple-800: #5b21b6;
  --purple-900: #4c1d95;
  --purple-950: #2e1065;

  --white: #ffffff;
  --gray-50: #f9f8ff;
  --gray-100: #f3f0ff;
  --gray-200: #e9e4ff;
  --gray-300: #d4c9ff;
  --gray-800: #1e1b4b;
  --gray-900: #13102f;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(124,58,237,0.08);
  --shadow-md: 0 8px 32px rgba(124,58,237,0.12);
  --shadow-lg: 0 20px 60px rgba(124,58,237,0.18);
  --shadow-xl: 0 32px 80px rgba(124,58,237,0.25);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }

em { font-style: italic; color: var(--purple-600); }

p { color: #4a4570; }

a { text-decoration: none; color: inherit; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header p {
  margin-top: 12px;
  font-size: 1.1rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-600);
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple-600);
  color: white;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}

.btn-primary:hover {
  background: var(--purple-700);
  box-shadow: 0 8px 30px rgba(124,58,237,0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-700);
  border: 2px solid var(--purple-200);
}

.btn-ghost:hover {
  background: var(--purple-50);
  border-color: var(--purple-400);
}

.btn-outline {
  background: transparent;
  color: var(--purple-700);
  border: 2px solid var(--purple-300);
}

.btn-outline:hover {
  background: var(--purple-50);
  border-color: var(--purple-500);
}

.btn-white {
  background: white;
  color: var(--purple-700);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-nav {
  background: var(--purple-600);
  color: white;
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-nav:hover {
  background: var(--purple-700);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--purple-100);
  box-shadow: 0 4px 20px rgba(124,58,237,0.08);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--purple-900);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--purple-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5a5280;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple-700);
  background: var(--purple-50);
}

.nav-admin {
  color: var(--purple-400) !important;
  font-size: 0.8rem !important;
  border: 1px dashed var(--purple-300) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 0 20px;
  border-top: 1px solid var(--purple-100);
  gap: 4px;
}

.mobile-menu a {
  padding: 12px 4px;
  font-weight: 500;
  color: #5a5280;
  border-bottom: 1px solid var(--purple-50);
}

.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 120px 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c4b5fd, #7c3aed);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ddd6fe, #a78bfa);
  bottom: 0px;
  left: -150px;
  animation-delay: -3s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ede9fe, #8b5cf6);
  top: 50%;
  left: 40%;
  animation-delay: -5s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--purple-700);
  background: white;
  border: 1px solid var(--purple-200);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.2s both;
  color: var(--gray-900);
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.6s ease 0.5s both;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--purple-700);
}

.stat-label {
  font-size: 0.75rem;
  color: #8b7db0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--purple-200);
}

/* PHONE MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s ease 0.4s both;
}

.phone-mockup {
  position: relative;
  width: 280px;
}

.phone-screen {
  width: 280px;
  height: 500px;
  background: linear-gradient(145deg, var(--purple-50), white);
  border-radius: 36px;
  border: 3px solid var(--purple-200);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: var(--purple-200);
  border-radius: 3px;
}

.pkg-preview {
  margin-top: 20px;
  text-align: center;
}

.pkg-confetti {
  font-size: 2rem;
  margin-bottom: 8px;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.pkg-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 4px;
}

.pkg-from {
  font-size: 0.8rem;
  color: var(--purple-400);
  margin-bottom: 20px;
}

.pkg-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.pkg-photo {
  height: 70px;
  border-radius: 10px;
  background: var(--purple-100);
}

.p1 { background: linear-gradient(135deg, #c4b5fd, #8b5cf6); }
.p2 { background: linear-gradient(135deg, #ddd6fe, #a78bfa); }
.p3 { background: linear-gradient(135deg, #ede9fe, #c4b5fd); }

.pkg-play-btn {
  background: var(--purple-600);
  color: white;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.pkg-play-btn:hover {
  background: var(--purple-700);
  transform: scale(1.02);
}

.phone-qr {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--purple-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.phone-qr span {
  font-size: 0.6rem;
  font-family: var(--font-mono);
  color: var(--purple-500);
  white-space: nowrap;
}

/* ---- HOW IT WORKS ---- */
.steps {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  background: white;
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-300);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple-400);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step h3 {
  color: var(--purple-900);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--purple-300);
  flex-shrink: 0;
  margin-top: -20px;
}

.cta-center {
  text-align: center;
}

/* ---- ABOUT ---- */
.about-section {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-card-stack {
  position: relative;
  height: 400px;
}

.about-card {
  position: absolute;
  background: white;
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.about-card:hover { transform: scale(1.03); }

.ac-icon { font-size: 1.5rem; }

.ac-text {
  font-weight: 600;
  color: var(--purple-900);
  font-family: var(--font-display);
}

.ac1 { top: 30px; left: 20px; }
.ac2 { top: 110px; right: 10px; }
.ac3 { top: 200px; left: 40px; }
.ac4 { top: 290px; right: 30px; }

.about-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-600);
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}

.about-content .section-tag { margin-bottom: 16px; }

.about-content h2 {
  margin-bottom: 24px;
  color: var(--purple-950);
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.val {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--purple-800);
}

.val-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-500);
  flex-shrink: 0;
}

/* ---- OFFERINGS ---- */
.offerings-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.offering-card {
  background: white;
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offering-featured {
  background: linear-gradient(160deg, var(--purple-50), white);
  border-color: var(--purple-300);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.offering-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.offering-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--purple-600);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.offering-card h3 {
  color: var(--purple-950);
  margin-bottom: 12px;
}

.offering-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.offering-list {
  list-style: none;
  margin-bottom: 28px;
}

.offering-list li {
  font-size: 0.9rem;
  color: var(--purple-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--purple-50);
  display: flex;
  align-items: center;
  gap: 8px;
}

.offering-list li::before {
  content: '✦';
  color: var(--purple-400);
  font-size: 0.7rem;
}

/* ---- OCCASIONS ---- */
.occasions-section {
  background: var(--gray-50);
}

.occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.occasion {
  background: white;
  border: 1px solid var(--purple-200);
  border-radius: 100px;
  padding: 14px 28px;
  font-weight: 600;
  color: var(--purple-800);
  font-size: 1rem;
  transition: all var(--transition);
  cursor: default;
}

.occasion:hover {
  background: var(--purple-600);
  color: white;
  border-color: var(--purple-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.cta-band h2 {
  color: white;
  margin-bottom: 8px;
}

.cta-band p {
  color: var(--purple-200);
  font-size: 1.05rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--purple-950);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-name { color: white !important; }
.footer-tagline {
  color: var(--purple-300);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links ul { list-style: none; }

.footer-links li + li { margin-top: 10px; }

.footer-links a {
  color: var(--purple-300);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--purple-400);
  font-size: 0.82rem;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- FORMS (shared) ---- */
.form-section {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: var(--gray-50);
}

.form-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.form-card {
  background: white;
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple-900);
  margin-bottom: 8px;
}

.form-subtitle {
  color: #7b6f9e;
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group label span {
  color: var(--purple-400);
  font-weight: 400;
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--purple-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: white;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.upload-area {
  border: 2px dashed var(--purple-300);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--purple-50);
}

.upload-area:hover {
  border-color: var(--purple-500);
  background: var(--purple-100);
}

.upload-icon { font-size: 2.5rem; margin-bottom: 12px; }

.upload-area p {
  color: var(--purple-600);
  font-weight: 600;
}

.upload-area p small {
  color: #9e93c0;
  font-weight: 400;
  font-size: 0.85rem;
  display: block;
  margin-top: 4px;
}

.upload-input { display: none; }

.writeup-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.audio-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px;
  border: 1.5px solid var(--purple-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  background: white;
  font-size: 0.75rem;
  color: var(--purple-500);
  min-width: 80px;
}

.audio-toggle:hover,
.audio-toggle.active {
  border-color: var(--purple-500);
  background: var(--purple-50);
  color: var(--purple-700);
}

.audio-toggle.active {
  background: var(--purple-100);
}

.form-divider {
  border: none;
  border-top: 1px solid var(--purple-100);
  margin: 36px 0;
}

.form-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/* ---- PREVIEW CARDS ---- */
.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.photo-preview-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--purple-100);
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- PACKAGE VIEW PAGE ---- */
.package-view {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--purple-50) 0%, white 50%, var(--gray-50) 100%);
}

.package-hero {
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.package-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.1) 0%, transparent 70%);
}

.package-confetti-row {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: 0.3em;
}

.package-recipient {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--purple-900);
  margin-bottom: 8px;
}

.package-from {
  color: var(--purple-400);
  font-size: 1rem;
  margin-bottom: 32px;
}

.package-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.pkg-section {
  background: white;
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.pkg-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.pkg-gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--purple-100);
  cursor: pointer;
  transition: all var(--transition);
}

.pkg-gallery-item:hover { transform: scale(1.02); }

.pkg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-message-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4570;
  white-space: pre-wrap;
}

.audio-player {
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.audio-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-600);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}

.audio-play-btn:hover {
  background: var(--purple-700);
  transform: scale(1.05);
}

.audio-info { flex: 1; }

.audio-title {
  font-weight: 600;
  color: var(--purple-900);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.audio-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}

.wave-bar {
  width: 3px;
  background: var(--purple-300);
  border-radius: 2px;
  animation: waveAnim 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.2s; }
.wave-bar:nth-child(6) { animation-delay: 0.1s; }
.wave-bar:nth-child(7) { animation-delay: 0.25s; }
.wave-bar:nth-child(8) { animation-delay: 0.15s; }

@keyframes waveAnim {
  0%, 100% { height: 4px; }
  50% { height: 20px; }
}

/* ---- ADMIN PANEL ---- */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--purple-950);
  padding: 28px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-logo {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-nav-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-400);
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 24px;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: var(--radius-md);
  color: var(--purple-200);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
}

.admin-nav-item:hover {
  background: rgba(255,255,255,0.06);
  color: white;
}

.admin-nav-item.active {
  background: var(--purple-700);
  color: white;
}

.admin-main {
  background: var(--gray-50);
  padding: 40px;
  overflow-y: auto;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.admin-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--purple-950);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.admin-stat-card {
  background: white;
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.admin-stat-label {
  font-size: 0.82rem;
  color: #8b7db0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 600;
}

.admin-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--purple-800);
}

.submissions-table-wrapper {
  background: white;
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--purple-100);
}

.table-header h3 {
  color: var(--purple-900);
  font-size: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-400);
  background: var(--purple-50);
  border-bottom: 1px solid var(--purple-100);
}

td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--purple-50);
  font-size: 0.9rem;
  color: #5a5280;
}

tr:last-child td { border-bottom: none; }

tr:hover td { background: var(--purple-50); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-pending {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.status-review {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.status-published {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.action-btn {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--purple-300);
  background: white;
  color: var(--purple-700);
  margin-right: 6px;
}

.action-btn:hover {
  background: var(--purple-600);
  color: white;
  border-color: var(--purple-600);
}

.action-btn.danger {
  border-color: #fca5a5;
  color: #dc2626;
}

.action-btn.danger:hover {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,10,40,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform var(--transition);
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #9e93c0;
  line-height: 1;
  transition: color var(--transition);
}

.modal-close:hover { color: var(--purple-700); }

/* SUCCESS PAGE */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--purple-50), white);
  padding: 80px 24px;
}

.success-card {
  background: white;
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  max-width: 540px;
  box-shadow: var(--shadow-xl);
}

.success-icon { font-size: 4rem; margin-bottom: 20px; }

.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple-900);
  margin-bottom: 12px;
}

.success-desc {
  color: #7b6f9e;
  margin-bottom: 32px;
  line-height: 1.7;
}

.qr-display {
  background: var(--purple-50);
  border: 2px solid var(--purple-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 24px auto;
  width: fit-content;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    gap: 48px;
    text-align: center;
  }
  .hero-visual { order: -1; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 280px; order: -1; }
  .offerings-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
  .form-card { padding: 28px 20px; }
  table { font-size: 0.8rem; }
  td, th { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 20px 50px; }
  .section { padding: 64px 0; }
  .admin-main { padding: 20px; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
