:root {
  --midnight: #000000;
  --forest: #0B1E13;
  --emerald-deep: #1A4A30;
  --emerald: #2E7D5A;
  --emerald-light: #4CAF50;
  --gold: #FFD700;
  --gold-rich: #FFA000;
  --gold-deep: #FF8F00;
  --platinum: #E5E4E2;
  --pearl: #FFFFFF;
  --crystal: #F8F9FA;
  --shadow: #1C1C1C;
  --border-gold: rgba(255,215,0,0.3);
  --glow-gold: rgba(255,215,0,0.4);
  --glow-emerald: rgba(76,175,80,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--forest) 100%);
  color: var(--crystal);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,215,0,0.25);
  box-shadow: 0 1px 20px rgba(255,215,0,0.08);
  transition: background 0.4s ease;
}
.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1400px; margin: 0 auto; padding: 16px 40px; gap: 20px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold); box-shadow: 0 0 20px var(--glow-gold);
  font-family: 'Tajawal', serif; font-size: 24px; color: var(--gold); font-weight: 700;
}
.nav-title-wrap { display: flex; flex-direction: column; }
.nav-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--pearl); line-height: 1;
}
.nav-dot-my { color: var(--gold); }
.nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--pearl);
}
.nav-title span { color: var(--gold); }
.nav-logo-svg { filter: drop-shadow(0 0 12px rgba(255,215,0,0.5)); transition: filter 0.3s; }
.nav-logo-svg:hover { filter: drop-shadow(0 0 20px rgba(255,215,0,0.8)); }

.nav-menu {
  display: flex; gap: 28px; list-style: none;
  flex: 1; justify-content: center;
}
.nav-menu a {
  color: var(--platinum); text-decoration: none; font-weight: 500;
  font-size: 13px; transition: all 0.3s; position: relative;
  text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--midnight); padding: 11px 22px; border-radius: 8px;
  font-weight: 700; text-decoration: none; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 20px var(--glow-gold); transition: all 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow-gold); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--forest) 0%, var(--midnight) 70%);
  padding: 120px 0 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,215,0,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46,125,90,0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(255,160,0,0.04) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent 0px, transparent 40px, rgba(255,215,0,0.015) 40px, rgba(255,215,0,0.015) 41px);
}
.hero-container {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: center; width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.1); border: 1px solid var(--border-gold);
  border-radius: 50px; padding: 8px 20px; margin-bottom: 24px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px;
  animation: fade-slide-up 1s 0.2s forwards; opacity: 0;
}
.hero-crown-svg { flex-shrink: 0; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 72px); font-weight: 700;
  line-height: 1.1; color: var(--pearl); margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: fade-slide-up 1s 0.4s forwards; opacity: 0;
}
.hero-title .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-rich));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 18px; color: var(--platinum); font-weight: 300;
  line-height: 1.7; margin-bottom: 16px;
  animation: fade-slide-up 1s 0.6s forwards; opacity: 0;
}
.hero-description {
  font-size: 15px; color: #B0B0B0; line-height: 1.8;
  margin-bottom: 36px; max-width: 520px;
  animation: fade-slide-up 1s 0.8s forwards; opacity: 0;
}
.hero-cta-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fade-slide-up 1s 1s forwards; opacity: 0;
}
.btn-primary-hero {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: var(--pearl); padding: 15px 32px; border-radius: 8px;
  font-weight: 700; text-decoration: none; font-size: 14px;
  box-shadow: 0 8px 25px var(--glow-emerald); transition: all 0.4s;
  border: 1px solid var(--emerald-light);
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 15px 40px var(--glow-emerald); }
.btn-secondary-hero {
  background: transparent; color: var(--crystal);
  border: 2px solid rgba(248,249,250,0.2); padding: 15px 32px;
  border-radius: 8px; font-weight: 600; text-decoration: none;
  font-size: 14px; transition: all 0.4s; position: relative; overflow: hidden;
}
.btn-secondary-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  transform: translateX(-100%); transition: transform 0.4s; z-index: -1;
}
.btn-secondary-hero:hover { border-color: var(--gold); color: var(--midnight); transform: translateY(-3px); }
.btn-secondary-hero:hover::before { transform: translateX(0); }

/* ══════════════════════════════════════
   PREMIUM FORM
══════════════════════════════════════ */
.form-premium-container {
  background: linear-gradient(160deg, rgba(26,74,48,0.3) 0%, rgba(0,0,0,0.6) 100%);
  border: 2px solid var(--border-gold); border-radius: 24px;
  padding: 48px 40px; backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative; overflow: hidden;
  animation: fade-slide-up 1s 1.2s forwards; opacity: 0;
}
.form-premium-container::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--gold-rich), var(--gold), var(--emerald));
  background-size: 200% 100%; animation: shimmer-sweep 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255,215,0,0.4);
}
.form-header { text-align: center; margin-bottom: 32px; }
.form-crown { margin-bottom: 16px; display: flex; justify-content: center; }
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--pearl); margin-bottom: 12px;
}
.form-subtitle { color: #C0C0C0; font-size: 13px; line-height: 1.6; }
.form-premium { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input-group { position: relative; }
.input-label {
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block;
}
.input-premium {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 13px 16px; color: var(--crystal); font-size: 14px;
  transition: all 0.3s; outline: none; font-family: 'Inter', sans-serif;
}
.input-premium:focus {
  border-color: var(--gold); background: rgba(255,215,0,0.05);
  box-shadow: 0 0 20px rgba(255,215,0,0.1);
}
.input-premium::placeholder { color: #666; }
.upload-area {
  border: 2px dashed rgba(255,215,0,0.3); border-radius: 12px;
  padding: 28px 20px; text-align: center; cursor: pointer;
  background: rgba(255,215,0,0.02); transition: all 0.3s; position: relative;
}
.upload-area:hover { border-color: var(--gold); background: rgba(255,215,0,0.05); }
.upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.upload-text { color: #B0B0B0; font-size: 13px; line-height: 1.5; }
.upload-text strong { color: var(--gold); }
.checkbox-premium { display: flex; align-items: flex-start; gap: 12px; margin: 8px 0 12px; }
.checkbox-premium input { margin-top: 3px; accent-color: var(--emerald); transform: scale(1.2); flex-shrink: 0; }
.checkbox-premium label { color: #B0B0B0; font-size: 12px; line-height: 1.6; }
.checkbox-premium a { color: var(--gold); text-decoration: none; }
.btn-submit-premium {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: var(--pearl); padding: 15px; border-radius: 8px;
  font-weight: 700; font-size: 14px; border: none; cursor: pointer;
  transition: all 0.4s; box-shadow: 0 8px 25px var(--glow-emerald);
  text-transform: uppercase; letter-spacing: 0.5px; width: 100%;
}
.btn-submit-premium:hover { transform: translateY(-3px); box-shadow: 0 15px 40px var(--glow-emerald); }
.btn-submit-premium:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* SUCCESS STATE */
.success-state { display: none; text-align: center; padding: 48px 0; }
.success-icon {
  width: 80px; height: 80px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--gold); box-shadow: 0 12px 30px var(--glow-emerald);
}
.success-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--pearl); margin-bottom: 16px; }
.success-message {
  color: #C0C0C0; font-size: 15px; line-height: 1.7;
  margin-bottom: 24px; max-width: 380px; margin-left: auto; margin-right: auto;
}
.success-id {
  background: rgba(255,215,0,0.1); border: 2px solid var(--border-gold);
  border-radius: 8px; padding: 12px 24px; display: inline-block;
  font-family: 'Playfair Display', serif; font-size: 18px;
  color: var(--gold); letter-spacing: 1px; word-break: break-all;
}

/* ══════════════════════════════════════
   GOLD SHIMMER LINE
══════════════════════════════════════ */
.gold-shimmer-line {
  height: 2px; width: 100%; overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.8), transparent);
  background-size: 300% 100%; animation: shimmer-sweep 3s ease-in-out infinite;
}

/* ══════════════════════════════════════
   SHARED SECTION LABELS & TITLES
══════════════════════════════════════ */
.section-label {
  font-size: 12px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; display: block;
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
}
.section-title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 54px); font-weight: 700;
  color: var(--pearl); line-height: 1.2; margin-bottom: 20px;
}
.section-title-main .gold { color: var(--gold); }
.section-desc-main {
  font-size: 17px; color: var(--platinum); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}
.slider-header { text-align: center; margin-bottom: 56px; }

/* ══════════════════════════════════════
   IMAGE SLIDER
══════════════════════════════════════ */
.slider-section { padding: 100px 0; background: var(--midnight); overflow: hidden; }
.slider-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.image-slider { position: relative; overflow: hidden; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.slider-track { display: flex; animation: auto-slide 30s infinite linear; }
.slide { min-width: 100%; height: 260px; position: relative; flex-shrink: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.55), transparent);
  display: flex; align-items: flex-end; padding: 28px 36px;
}
.slide-content { color: var(--pearl); text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
.slide-title { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 6px; }
.slide-desc { font-size: 14px; opacity: 0.9; }

@keyframes auto-slide {
  0%   { transform: translateX(0); }
  10%  { transform: translateX(-10%); }
  20%  { transform: translateX(-20%); }
  30%  { transform: translateX(-30%); }
  40%  { transform: translateX(-40%); }
  50%  { transform: translateX(-50%); }
  60%  { transform: translateX(-60%); }
  70%  { transform: translateX(-70%); }
  80%  { transform: translateX(-80%); }
  90%  { transform: translateX(-90%); }
  100% { transform: translateX(0); }
}

/* ══════════════════════════════════════
   SHARED ICON WRAPPERS
══════════════════════════════════════ */
.pillar-image,
.usp-image,
.flow-image {
  display: flex; align-items: center; justify-content: center;
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,215,0,0.08);
  border: 1.5px solid rgba(255,215,0,0.25);
  margin: 0 auto 20px;
}
.flow-image { width: 110px; height: 110px; }
.dimension-icon {
  width: 68px; height: 68px; margin: 0 auto 20px;
  background: rgba(255,215,0,0.08); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border-gold);
}

/* ══════════════════════════════════════
   PILLARS
══════════════════════════════════════ */
.pillars-section {
  padding: 120px 0; background: var(--forest);
  border-top: 1px solid rgba(255,215,0,0.1); border-bottom: 1px solid rgba(255,215,0,0.1);
}
.pillars-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
.pillar-card {
  background: linear-gradient(160deg, rgba(26,74,48,0.2) 0%, rgba(0,0,0,0.6) 100%);
  border: 1px solid var(--border-gold); border-radius: 20px;
  padding: 36px 24px; text-align: center; transition: all 0.4s;
  position: relative; overflow: hidden; backdrop-filter: blur(10px);
}
.pillar-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), transparent);
  background-size: 200% 100%; animation: shimmer-sweep 4s ease-in-out infinite;
  opacity: 0; transition: opacity 0.3s;
}
.pillar-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
.pillar-card:hover::after { opacity: 1; }
.pillar-number { font-size: 11px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pillar-title { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--pearl); margin-bottom: 14px; }
.pillar-desc { color: #B0B0B0; font-size: 14px; line-height: 1.7; }

/* ══════════════════════════════════════
   USP
══════════════════════════════════════ */
.usp-section { padding: 120px 0; background: var(--midnight); }
.usp-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
.usp-card {
  background: linear-gradient(160deg, rgba(0,0,0,0.4) 0%, rgba(26,74,48,0.2) 100%);
  border: 1px solid rgba(255,215,0,0.2); border-radius: 20px;
  padding: 36px 24px; text-align: center; transition: all 0.4s;
  position: relative; backdrop-filter: blur(10px);
}
.usp-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), transparent);
  background-size: 200% 100%; animation: shimmer-sweep 4s ease-in-out infinite;
  opacity: 0; transition: opacity 0.3s;
}
.usp-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 40px rgba(255,215,0,0.1); }
.usp-card:hover::after { opacity: 1; }
.usp-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); margin-bottom: 14px; }
.usp-desc { color: #B0B0B0; font-size: 14px; line-height: 1.8; }

/* ══════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════ */
.comparison-section { padding: 120px 0; background: var(--forest); }
.comparison-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.comparison-highlight {
  background: linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(26,74,48,0.1) 100%);
  border: 2px solid var(--gold); border-radius: 24px; padding: 48px; margin-top: 60px;
  box-shadow: 0 0 40px var(--glow-gold); position: relative; overflow: hidden;
}
.comparison-highlight::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-rich), var(--gold), transparent);
  background-size: 200% 100%; animation: shimmer-sweep 4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255,215,0,0.5);
}
.comparison-title {
  text-align: center; font-family: 'Playfair Display', serif;
  font-size: 30px; color: var(--pearl); margin-bottom: 36px;
}
.comparison-title .highlight { color: var(--gold); }
.comparison-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%; border-collapse: collapse; background: rgba(0,0,0,0.3);
  border-radius: 16px; overflow: hidden; min-width: 560px;
}
.comparison-table th {
  background: rgba(26,74,48,0.3); padding: 18px 16px; font-weight: 700;
  font-size: 13px; color: var(--platinum); text-align: center;
  border-bottom: 2px solid var(--border-gold);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.jodohku { background: linear-gradient(135deg, var(--emerald), var(--emerald-light)); color: var(--gold); font-weight: 800; }
.comparison-table td { padding: 15px 16px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: var(--platinum); }
.comparison-table td.feature { text-align: left; font-weight: 600; color: var(--crystal); }
.comparison-table td.jodohku { background: rgba(76,175,80,0.1); color: var(--emerald-light); font-weight: 700; }
.comparison-table .check { color: var(--emerald-light); font-size: 18px; }
.comparison-table .cross { color: #888; opacity: 0.6; }

/* ══════════════════════════════════════
   115 QUESTIONS
══════════════════════════════════════ */
.questions-section { padding: 120px 0; background: var(--midnight); }
.questions-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.questions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.dimension-card {
  background: linear-gradient(160deg, rgba(0,0,0,0.6) 0%, rgba(26,74,48,0.2) 100%);
  border: 1px solid var(--border-gold); border-radius: 20px;
  padding: 32px 24px; transition: all 0.4s; position: relative;
  backdrop-filter: blur(10px); text-align: center;
}
.dimension-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 40px rgba(255,215,0,0.1); }
.dimension-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--pearl); margin-bottom: 8px; }
.dimension-count { font-size: 12px; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.dimension-desc { color: #B0B0B0; font-size: 14px; line-height: 1.7; }

/* ══════════════════════════════════════
   TA'ARUF FLOW
══════════════════════════════════════ */
.taaruf-section {
  padding: 120px 0; background: var(--forest);
  border-top: 1px solid rgba(255,215,0,0.1); border-bottom: 1px solid rgba(255,215,0,0.1);
}
.taaruf-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.taaruf-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 56px; }
.flow-step {
  text-align: center; position: relative;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-gold);
  border-radius: 24px; padding: 48px 28px 36px; transition: all 0.4s;
}
.flow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,215,0,0.4);
  border-color: rgba(255,215,0,0.6);
}
.flow-number {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; background: var(--gold); color: var(--midnight);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.flow-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--pearl); margin-bottom: 14px; }
.flow-desc { color: #B0B0B0; font-size: 14px; line-height: 1.8; }

/* ══════════════════════════════════════
   WEDDING ECOSYSTEM
══════════════════════════════════════ */
.wedding-section { padding: 120px 0; background: var(--midnight); }
.wedding-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.wedding-preview {
  background: linear-gradient(160deg, rgba(26,74,48,0.2) 0%, rgba(0,0,0,0.6) 100%);
  border: 2px solid var(--border-gold); border-radius: 24px;
  padding: 60px 48px; text-align: center; margin-top: 60px; position: relative; overflow: hidden;
}
.wedding-preview::before {
  content: 'AKAN DATANG'; position: absolute; top: 28px; right: -46px;
  background: var(--gold); color: var(--midnight);
  padding: 8px 60px; font-weight: 800; font-size: 11px;
  letter-spacing: 1px; transform: rotate(45deg);
}
.wedding-mockup { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0; }
.wedding-card {
  background: rgba(255,255,255,0.05); border-radius: 16px;
  padding: 24px 16px; filter: blur(3px); opacity: 0.6; transition: all 0.3s;
}
.wedding-card:hover { filter: blur(2px); opacity: 0.8; }
.wedding-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.wedding-name { font-size: 14px; color: var(--pearl); margin-bottom: 8px; }
.wedding-price { font-size: 15px; color: var(--gold); font-weight: 700; }
.wedding-explanation { max-width: 640px; margin: 32px auto 0; color: #B0B0B0; font-size: 15px; line-height: 1.8; }

/* ══════════════════════════════════════
   DAFTAR BUTTON
══════════════════════════════════════ */
.btn-daftar-section {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-rich));
  background-size: 200% 100%;
  color: var(--midnight); padding: 14px 48px; border-radius: 8px;
  font-weight: 800; font-size: 13px; text-decoration: none;
  text-transform: uppercase; letter-spacing: 1.5px;
  box-shadow: 0 6px 24px rgba(255,215,0,0.35), 0 0 0 1px rgba(255,215,0,0.2);
  transition: all 0.4s ease; position: relative; overflow: hidden;
  animation: shimmer-sweep 3s ease-in-out infinite;
}
.btn-daftar-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-daftar-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,215,0,0.5), 0 0 0 2px rgba(255,215,0,0.4);
}
.btn-daftar-section:hover::before { transform: translateX(100%); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: #000; border-top: 1px solid rgba(255,215,0,0.2);
  padding: 80px 0 0; position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, #FFA000, #FFD700, transparent);
  animation: shimmer-sweep 4s ease-in-out infinite;
}
.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.footer-brand-desc { color: #888; font-size: 14px; line-height: 1.8; max-width: 300px; margin-bottom: 24px; }
.footer-tagline { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.footer-col-title {
  font-family: 'Playfair Display', serif; font-size: 16px; color: var(--pearl);
  margin-bottom: 24px; position: relative; padding-bottom: 12px;
}
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #888; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { color: #888; font-size: 14px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copyright { color: #555; font-size: 13px; line-height: 1.6; }
.footer-copyright strong { color: #888; }
.footer-parent { color: #555; font-size: 12px; }
.footer-parent span { color: var(--gold); font-weight: 700; }
.footer-legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal-links a { color: #555; font-size: 12px; text-decoration: none; transition: color 0.3s; }
.footer-legal-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   MODALS
══════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: linear-gradient(160deg, #0B1E13 0%, #000000 100%);
  border: 1px solid rgba(255,215,0,0.3); border-radius: 20px;
  max-width: 820px; width: 100%; max-height: 88vh; overflow-y: auto;
}
.modal-box::before {
  content: ''; position: sticky; top: 0; left: 0; right: 0; height: 3px; display: block;
  background: linear-gradient(90deg, transparent, #FFD700, #FFA000, #FFD700, transparent);
  animation: shimmer-sweep 4s ease-in-out infinite;
}
.modal-header {
  padding: 36px 48px 24px; position: sticky; top: 3px;
  background: linear-gradient(160deg, #0B1E13 0%, #000000 100%);
  border-bottom: 1px solid rgba(255,215,0,0.15); z-index: 10;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.modal-title { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--pearl); }
.modal-close {
  background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold); width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  cursor: pointer; font-size: 18px; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(255,215,0,0.2); transform: rotate(90deg); }
.modal-body { padding: 28px 48px 48px; }
.modal-section { margin-bottom: 28px; }
.modal-section h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--gold); margin-bottom: 10px; }
.modal-section p, .modal-section li { color: #B0B0B0; font-size: 14px; line-height: 1.8; margin-bottom: 8px; }
.modal-section ol, .modal-section ul { padding-left: 20px; }
.modal-meta {
  background: rgba(255,215,0,0.05); border: 1px solid rgba(255,215,0,0.2);
  border-radius: 8px; padding: 14px 18px; margin-bottom: 24px; color: #888; font-size: 12px;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fade-slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer-sweep {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE — 1200px
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-cta-buttons { justify-content: center; }

  .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
  .usp-grid       { grid-template-columns: repeat(2, 1fr); }
  .questions-grid { grid-template-columns: repeat(2, 1fr); }
  .taaruf-flow    { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .wedding-mockup { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-menu       { gap: 20px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 960px (tablet)
══════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-menu { display: none; }
  .nav-container { padding: 14px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 768px (mobile)
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* NAV */
  .nav-menu { display: none; }
  .nav-container { padding: 12px 20px; }
  .nav-cta { padding: 9px 14px; font-size: 11px; }
  .nav-logo { width: 40px; height: 40px; font-size: 20px; border-radius: 10px; }
  .nav-title-main, .nav-title { font-size: 17px; }

  /* SECTION PADDING */
  .hero-section { padding: 100px 0 60px; }
  .slider-section,
  .pillars-section,
  .usp-section,
  .comparison-section,
  .questions-section,
  .taaruf-section,
  .wedding-section { padding: 64px 0; }

  /* ALL CONTAINERS */
  .hero-container,
  .slider-container,
  .pillars-container,
  .usp-container,
  .comparison-container,
  .questions-container,
  .taaruf-container,
  .wedding-container,
  .footer-container { padding: 0 20px; }

  /* HERO */
  .hero-container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-title { font-size: clamp(28px, 8vw, 44px); }
  .hero-subtitle { font-size: 15px; }
  .hero-description { font-size: 14px; max-width: 100%; }
  .hero-badge { font-size: 10px; padding: 7px 14px; letter-spacing: 1px; }
  .hero-cta-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary-hero,
  .btn-secondary-hero { text-align: center; padding: 14px 20px; font-size: 14px; }

  /* FORM */
  .form-premium-container { padding: 28px 20px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .form-title { font-size: 20px; }
  .upload-area { padding: 22px 16px; }

  /* GRIDS → 1 column */
  .pillars-grid,
  .usp-grid,
  .questions-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }

  /* CARDS */
  .pillar-card, .usp-card, .dimension-card { padding: 26px 18px; }
  .flow-step { padding: 44px 20px 28px; }

  /* SLIDER */
  .slide { height: 200px; }
  .slide-overlay { padding: 20px; }
  .slide-title { font-size: 15px; }
  .slide-desc { font-size: 12px; }
  .slider-header { margin-bottom: 32px; }

  /* COMPARISON — scrollable */
  .comparison-highlight { padding: 20px 12px; border-radius: 16px; }
  .comparison-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; cursor: grab; }
  .comparison-table { min-width: 520px; font-size: 12px; }
  .comparison-table th,
  .comparison-table td { padding: 11px 10px; }
  .comparison-title { font-size: 20px; margin-bottom: 20px; }

  /* TA'ARUF */
  .taaruf-flow { grid-template-columns: 1fr; gap: 36px; margin-top: 36px; max-width: 100%; }

  /* WEDDING */
  .wedding-preview { padding: 36px 20px; }
  .wedding-preview h3 { font-size: 19px; }
  .wedding-preview::before { display: none; }
  .wedding-mockup { grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }

  /* SECTION TITLES */
  .section-title-main { font-size: clamp(22px, 6vw, 36px); }
  .section-desc-main { font-size: 15px; }
  .slider-header { margin-bottom: 32px; }

  /* MODALS */
  .modal-overlay { padding: 16px; }
  .modal-box { border-radius: 14px; max-height: 92vh; }
  .modal-header { padding: 20px 20px 16px; }
  .modal-body { padding: 20px 20px 36px; }
  .modal-title { font-size: 20px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; gap: 12px; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .footer-parent { text-align: center; }

  /* DAFTAR BUTTON */
  .btn-daftar-section { padding: 13px 28px; font-size: 12px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 480px (small phones)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .nav-logo { width: 36px; height: 36px; font-size: 17px; border-radius: 8px; }
  .nav-title-main, .nav-title { font-size: 15px; }
  .nav-cta { display: none; }

  .hero-title { font-size: clamp(24px, 8vw, 34px); }
  .hero-badge { font-size: 9px; padding: 6px 12px; }

  .form-premium-container { padding: 22px 16px; border-radius: 14px; }
  .form-title { font-size: 19px; }
  .btn-submit-premium { font-size: 13px; }

  .pillar-card, .usp-card, .dimension-card { padding: 22px 16px; }
  .flow-step { padding: 40px 16px 24px; }

  .pillar-image, .usp-image { width: 74px; height: 74px; }
  .flow-image { width: 86px; height: 86px; }
  .dimension-icon { width: 56px; height: 56px; }

  .slide { height: 175px; }

  .comparison-table { min-width: 460px; font-size: 11px; }
  .comparison-table th,
  .comparison-table td { padding: 9px 8px; }

  .wedding-mockup { grid-template-columns: 1fr; gap: 12px; }
  .wedding-preview { padding: 28px 16px; }
  .wedding-explanation { font-size: 14px; }

  .success-title { font-size: 22px; }
  .success-id { font-size: 14px; padding: 10px 16px; }

  .modal-header { padding: 18px 16px 14px; }
  .modal-body { padding: 16px 16px 32px; }
  .modal-title { font-size: 18px; }

  .btn-daftar-section { padding: 12px 20px; font-size: 12px; width: 100%; text-align: center; display: block; }

  .footer-grid { gap: 28px; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { gap: 10px; }
}
