/* ============================================
   U COMPOSE IT - Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8941E;
  --deep-purple: #1A0A2E;
  --purple: #2D1B5E;
  --purple-mid: #4A2C8A;
  --purple-light: #7B4FBF;
  --rose: #E8436A;
  --rose-light: #FF6B8A;
  --teal: #00C9B1;
  --teal-light: #4EECD8;
  --white: #FFFFFF;
  --off-white: #FAF8FF;
  --light-gray: #F0EDF8;
  --text-dark: #1A0A2E;
  --text-mid: #4A3F6B;
  --text-light: #8B7DAA;
  --gradient-hero: linear-gradient(135deg, #1A0A2E 0%, #2D1B5E 40%, #4A1A5E 70%, #1A0A2E 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #F0D060, #D4AF37);
  --gradient-card: linear-gradient(145deg, rgba(74,44,138,0.15), rgba(212,175,55,0.08));
  --shadow-glow: 0 0 30px rgba(212,175,55,0.25);
  --shadow-card: 0 8px 32px rgba(26,10,46,0.15);
  --border-gold: 1px solid rgba(212,175,55,0.3);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 10, 46, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 10, 46, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
}

.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--deep-purple) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4) !important;
  background: linear-gradient(135deg, #F0D060, #D4AF37) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

/* Hero Photo Banner — full-width image above hero section */
.hero-photo-banner {
  width: 100%;
  margin-top: 72px; /* offset for fixed navbar */
  overflow: hidden;
  line-height: 0;
  max-height: 520px;
}

.hero-photo-banner img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: auto;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle 8s infinite ease-in-out;
  opacity: 0.15;
}

.particle-1 { width: 300px; height: 300px; background: radial-gradient(circle, var(--gold), transparent); top: -100px; right: -100px; animation-delay: 0s; }
.particle-2 { width: 200px; height: 200px; background: radial-gradient(circle, var(--rose), transparent); bottom: 100px; left: -80px; animation-delay: 2s; }
.particle-3 { width: 150px; height: 150px; background: radial-gradient(circle, var(--teal), transparent); top: 30%; right: 15%; animation-delay: 4s; }
.particle-4 { width: 100px; height: 100px; background: radial-gradient(circle, var(--purple-light), transparent); bottom: 30%; left: 20%; animation-delay: 1s; }

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--deep-purple);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

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

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--deep-purple);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

.btn-xl {
  padding: 22px 52px;
  font-size: 18px;
  font-weight: 700;
}

.btn-rose {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,67,106,0.35);
}

.btn-rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,67,106,0.5);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74,44,138,0.35);
}

.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(74,44,138,0.5);
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */

section {
  padding: 90px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--deep-purple);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark {
  background: var(--gradient-hero);
  color: var(--white);
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

.section-light {
  background: var(--off-white);
}

.section-purple-light {
  background: linear-gradient(135deg, #F8F4FF, #FFF0F8);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  border: var(--border-gold);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,10,46,0.18), var(--shadow-glow);
}

.card-gradient {
  background: var(--gradient-card);
  border: 1px solid rgba(212,175,55,0.2);
}

/* ============================================
   OCCASIONS GRID
   ============================================ */

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.occasion-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.occasion-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(26,10,46,0.15), 0 0 0 1px rgba(212,175,55,0.4);
}

.occasion-icon {
  font-size: 42px;
  margin-bottom: 14px;
  display: block;
}

.occasion-card h3 {
  font-size: 17px;
  color: var(--deep-purple);
  margin-bottom: 8px;
}

.occasion-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,10,46,0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-purple);
}

.author-occasion {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212,175,55,0.2);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-4px);
}

.step-number {
  width: 54px;
  height: 54px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-purple);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

.step-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.step-card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ============================================
   SONG SAMPLES
   ============================================ */

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.sample-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.sample-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26,10,46,0.15);
}

.sample-artwork {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.sample-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sample-body {
  padding: 20px;
}

.sample-genre {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.sample-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 6px;
}

.sample-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 16px;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 8px 16px;
}

.play-btn {
  width: 34px;
  height: 34px;
  background: var(--gradient-gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--deep-purple);
  flex-shrink: 0;
  transition: var(--transition);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(212,175,55,0.4);
}

.audio-wave {
  flex: 1;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 2px;
}

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

.wave-bar:nth-child(odd) { animation-delay: 0.1s; }
.wave-bar:nth-child(3n) { animation-delay: 0.2s; }
.wave-bar:nth-child(4n) { animation-delay: 0.15s; }

@keyframes wave-animate {
  0%, 100% { height: 6px; opacity: 0.3; }
  50% { height: 20px; opacity: 0.8; }
}

.audio-duration {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 600;
  flex-shrink: 0;
}

/* ============================================
   FORMS
   ============================================ */

.form-section {
  background: linear-gradient(135deg, #F8F4FF 0%, #FFF0F8 100%);
  min-height: 100vh;
  padding-top: 100px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(26,10,46,0.12);
  overflow: hidden;
}

.form-header {
  background: var(--gradient-hero);
  padding: 48px 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.form-header h1 {
  color: var(--white);
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 10px;
  position: relative;
}

.form-header p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  position: relative;
}

.form-body {
  padding: 48px;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-label span {
  color: var(--rose);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E8E2F5;
  border-radius: 12px;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(74,44,138,0.12);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A2C8A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-hint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.5;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.choice-option {
  position: relative;
}

.choice-option input[type="radio"],
.choice-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.choice-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border: 2px solid #E8E2F5;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  text-align: center;
  line-height: 1.3;
}

.choice-option input:checked + label {
  border-color: var(--purple-mid);
  background: rgba(74,44,138,0.08);
  color: var(--purple-mid);
}

.choice-option label:hover {
  border-color: var(--purple-light);
  background: rgba(74,44,138,0.05);
  color: var(--purple-mid);
}

.upload-area {
  border: 2px dashed #C8BEE8;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(74,44,138,0.02);
}

.upload-area:hover {
  border-color: var(--purple-mid);
  background: rgba(74,44,138,0.05);
}

.upload-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.upload-text {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 12px;
  color: var(--text-light);
}

.form-divider {
  border: none;
  border-top: 1px solid #EEE8FF;
  margin: 32px 0;
}

.section-title {
  font-size: 20px;
  color: var(--deep-purple);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.faq-item:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 4px 20px rgba(26,10,46,0.08);
}

.faq-question {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--deep-purple);
  user-select: none;
}

.faq-question:hover {
  color: var(--purple-mid);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--deep-purple);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================
   REVIEW / ORDER PAGES
   ============================================ */

.review-container {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(26,10,46,0.12);
  overflow: hidden;
}

.review-section {
  padding: 28px 32px;
  border-bottom: 1px solid #EEE8FF;
}

.review-section:last-child {
  border-bottom: none;
}

.review-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.review-row {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.review-key {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  min-width: 140px;
  flex-shrink: 0;
}

.review-val {
  font-size: 14px;
  color: var(--deep-purple);
  font-weight: 500;
  line-height: 1.5;
}

.review-tag {
  display: inline-block;
  background: rgba(74,44,138,0.08);
  color: var(--purple-mid);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin: 2px 3px;
}

/* ============================================
   ORDER / CHECKOUT PAGE
   ============================================ */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.checkout-main {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.checkout-sidebar {
  position: sticky;
  top: 100px;
}

.order-summary {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: var(--border-gold);
  overflow: hidden;
}

.order-summary-header {
  background: var(--gradient-hero);
  padding: 24px 28px;
  color: var(--white);
}

.order-summary-body {
  padding: 24px 28px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #EEE8FF;
  font-size: 14px;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-name {
  color: var(--text-mid);
  flex: 1;
}

.order-item-price {
  font-weight: 700;
  color: var(--deep-purple);
  flex-shrink: 0;
  margin-left: 12px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 2px solid rgba(212,175,55,0.3);
  margin-top: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-purple);
}

.order-total-price {
  color: var(--gold-dark);
  font-size: 26px;
  font-family: 'Playfair Display', serif;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}

.trust-badge i {
  color: var(--gold);
  font-size: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  color: var(--deep-purple);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--deep-purple);
  color: rgba(255,255,255,0.7);
  padding: 60px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--deep-purple);
  transform: translateY(-2px);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  background: var(--gradient-hero);
  padding: 120px 40px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: 14px;
  position: relative;
}

.page-hero h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* ============================================
   GUARANTEE / FEATURES STRIP
   ============================================ */

.features-strip {
  background: var(--deep-purple);
  padding: 28px 40px;
}

.features-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

.feature-item i {
  color: var(--gold);
  font-size: 20px;
}

/* ============================================
   VIDEO CARDS
   ============================================ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.video-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
  background: var(--white);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,10,46,0.15);
}

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb .emoji-bg {
  font-size: 60px;
  opacity: 0.3;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: var(--transition);
}

.video-thumb:hover .play-overlay {
  background: rgba(0,0,0,0.3);
}

.play-circle {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--deep-purple);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.video-thumb:hover .play-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.video-body {
  padding: 18px 20px;
}

.video-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 6px;
}

.video-sub {
  font-size: 13px;
  color: var(--text-mid);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}

.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }
.animate-fade { animation: fadeIn 0.5s ease forwards; }

.pulse {
  animation: pulse-gold 2.5s infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26,10,46,0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    gap: 4px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
  }
  .hamburger {
    display: flex;
  }
  .hero-photo-banner {
    max-height: 280px;
    margin-top: 64px;
  }
  .hero-photo-banner img {
    height: 280px;
  }
  .hero {
    padding: 50px 20px 60px;
  }
  .hero-stats {
    gap: 24px;
  }
  section {
    padding: 60px 20px;
  }
  .form-body {
    padding: 28px 24px;
  }
  .form-header {
    padding: 36px 24px 28px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features-strip-inner {
    gap: 24px;
  }
  .page-hero {
    padding: 100px 20px 50px;
  }
  .review-section {
    padding: 20px;
  }
  .review-row {
    flex-direction: column;
    gap: 4px;
  }
  .review-key {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }
  .choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   NOTIFICATION / TOAST
   ============================================ */

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--deep-purple);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(26,10,46,0.3);
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PROGRESS BAR (multi-step)
   ============================================ */

.progress-bar-container {
  background: var(--white);
  padding: 20px 40px;
  border-bottom: 1px solid #EEE8FF;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.progress-step::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #E8E2F5;
  z-index: 0;
}

.progress-step:last-child::after {
  display: none;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E8E2F5;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.progress-step.active .step-dot {
  background: var(--purple-mid);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(74,44,138,0.2);
}

.progress-step.done .step-dot {
  background: var(--gold);
  color: var(--deep-purple);
}

.progress-step.done::after {
  background: var(--gold);
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: var(--purple-mid);
}

.progress-step.done .step-label {
  color: var(--gold-dark);
}

/* ============================================
   RIBBON / BADGE
   ============================================ */

.ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: var(--rose);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px 5px 12px;
  letter-spacing: 0.5px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8px 50%);
}

/* ============================================
   PRICING CARD
   ============================================ */
.pricing-card {
  background: var(--white);
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 40px rgba(26,10,46,0.1);
  max-width: 420px;
  margin: 0 auto;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,10,46,0.15), var(--shadow-glow);
  border-color: var(--gold);
}

.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  font-weight: 800;
  color: var(--deep-purple);
  line-height: 1;
}

.price-main sup {
  font-size: 28px;
  vertical-align: super;
  color: var(--purple-mid);
}

.price-period {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 6px;
}

.price-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.price-features li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid #F0EDF8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--gold);
  flex-shrink: 0;
}
