:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --gold: #FFD700;
  --gold-dim: #b8960a;
  --text: #f2f2f2;
  --text-dim: #a8a8a8;
  --card: #161616;
  --border: #2a2a2a;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Tajawal', 'Poppins', sans-serif;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }

.gold-text { color: var(--gold); }
.strike { color: var(--text-dim); text-decoration: line-through; text-decoration-color: var(--gold-dim); }

.eyebrow {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1.3;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700, #FFC300);
  color: #0a0a0a;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

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

.btn-outline-gold:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-3px);
}

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

.btn-outline-dark:hover {
  background: #1e1e1e;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}

section { position: relative; padding: 100px 0; }

/* ---------- Dot Nav ---------- */
.dot-nav {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid transparent;
  position: relative;
  transition: all 0.3s ease;
}

.dot.active, .dot:hover {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

.dot::after {
  content: attr(data-label);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--text-dim);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.dot:hover::after { opacity: 1; }

@media (max-width: 768px) {
  .dot-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(60%) brightness(0.35);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 60%, #0a0a0a 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-dim);
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.hero-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-img-card {
  position: relative;
  width: 160px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.tag {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.tag-before { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(4px); }
.tag-after { background: var(--gold); color: #0a0a0a; }

.hero-cta { font-size: 1.15rem; }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

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

/* ---------- Story ---------- */
.story { background: var(--bg-alt); text-align: center; }
.story .container { text-align: center; }

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: start;
  margin-top: 20px;
}

.story-text p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.story-medal img {
  border-radius: 20px;
  border: 2px solid var(--gold-dim);
  box-shadow: 0 20px 60px rgba(255,215,0,0.15);
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; text-align: center; }
  .story-text { order: 2; }
  .story-medal { order: 1; }
}

/* ---------- Training ---------- */
.training { text-align: center; }

.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.training-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.training-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
}

.training-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.training-caption {
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

@media (max-width: 768px) {
  .training-grid { grid-template-columns: 1fr; }
}

/* ---------- Results ---------- */
.results { text-align: center; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
}

.view-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.view-btn {
  flex: 1;
  padding: 8px 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text-dim);
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.view-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.result-photos {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.result-photos[hidden] { display: none; }

.photo-box {
  position: relative;
  flex: 1;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e1e;
}

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

.result-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; font-family: 'Poppins', sans-serif; }

.result-stat {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
}

.result-stat span {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 500;
  font-family: 'Tajawal', sans-serif;
  margin-inline-start: 6px;
}

@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ---------- Included ---------- */
.included { text-align: center; overflow: hidden; }

.included-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(80%) brightness(0.25);
  z-index: 0;
}

.included-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a0a0a 0%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

.included .container { position: relative; z-index: 2; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.included-card {
  background: rgba(22,22,22,0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.included-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.included-icon { font-size: 2.2rem; margin-bottom: 16px; }
.included-card p { font-size: 1.05rem; font-weight: 500; line-height: 1.6; }

@media (max-width: 900px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Pricing ---------- */
.pricing { text-align: center; background: var(--bg-alt); }

.pricing-card {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  background: var(--card);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 56px 40px 40px;
  box-shadow: 0 20px 60px rgba(255,215,0,0.15);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0a;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.price {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--gold);
}

.price span { font-size: 1.2rem; color: var(--text-dim); }

.price-period { font-size: 1.2rem; font-weight: 700; margin-top: 4px; }
.price-note { color: var(--text-dim); margin-bottom: 28px; font-size: 0.95rem; }

.pricing-list {
  list-style: none;
  margin-bottom: 36px;
  text-align: start;
}

.pricing-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}

.pricing-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  margin-inline-end: 10px;
}

.pricing-cta { width: 100%; }

.payment-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bank-transfer-box {
  background: rgba(255, 215, 0, 0.06);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 24px;
  text-align: start;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}

.bank-row {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}

.bank-label {
  color: var(--gold);
  font-weight: 700;
  margin-inline-end: 6px;
}

.bank-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bank-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }

.faq-list { margin-top: 20px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Tajawal', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: start;
}

.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-inline-start: 16px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 22px; }

.faq-answer p { color: var(--text-dim); line-height: 1.8; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.08) 0%, transparent 70%);
}

.final-cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.final-cta-sub {
  color: var(--text-dim);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.final-cta-btn { font-size: 1.15rem; }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 30px 0;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .hero-images { flex-direction: column; }
  .hero-arrow { transform: rotate(-90deg); }
}

@media (max-width: 600px) {
  section { padding: 70px 0; }
  .hero { padding-top: 120px; }
}
