@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --dark-bg: #2c1810;
  --dark-bg2: #3d2218;
  --dark-card: #3d2218;
  --light-bg: #faf6f0;
  --light-bg2: #f5ede3;
  --gold: #c9a84b;
  --gold-light: #e8d48a;
  --gold-dark: #a8882e;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #e8e0d8;
  --text-gold: #e8d48a;
  --rose: #d49595;
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-light: 0 10px 40px rgba(0,0,0,0.06);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* ====== SECTIONS ====== */
.section { padding: 80px 0; position: relative; overflow: hidden; }

.sec-dark {
  background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-bg2) 100%);
  color: var(--text-light);
}

.sec-light {
  background: linear-gradient(160deg, var(--light-bg) 0%, var(--light-bg2) 100%);
  color: var(--text-dark);
}

.text-center { text-align: center; }
.text-start { text-align: left; }

/* ====== REVEAL ON SCROLL ====== */
[class*="fade-"] { opacity: 0; }
[class*="fade-"].revealed { animation-play-state: running; }

.fade-in.revealed { animation: fadeIn 1s ease forwards; }
.fade-up.revealed { animation: fadeUp 0.8s ease forwards; }
.fade-right.revealed { animation: fadeRight 0.8s ease forwards; }
.fade-left.revealed { animation: fadeLeft 0.8s ease forwards; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ====== GOLD BUTTON ====== */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--dark-bg);
  padding: 16px 42px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
  box-shadow: 0 8px 30px rgba(201, 168, 75, 0.35);
  animation: goldShift 3s ease infinite;
  cursor: pointer;
  border: none;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold), #fff8e0, var(--gold));
  background-size: 400% 400%;
  border-radius: 62px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
  animation: goldShift 2s ease infinite;
}

.btn-gold:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 12px 50px rgba(201, 168, 75, 0.5);
}

.btn-gold:hover::before { opacity: 1; }

.btn-gold:active { transform: scale(0.97); }

.btn-lg { padding: 20px 56px; font-size: 20px; }

@keyframes goldShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pulse-glow {
  animation: goldShift 3s ease infinite, pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 30px rgba(201, 168, 75, 0.35); }
  50% { box-shadow: 0 8px 50px rgba(201, 168, 75, 0.6); }
}

/* ====== HERO ====== */
.hero-sec { padding-top: 40px; }

.hero-logo-frame {
  background: #1a0f0a;
  border: 2px solid rgba(201, 168, 75, 0.25);
  border-radius: 20px;
  padding: 30px 40px;
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto 35px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(201, 168, 75, 0.15);
}

.hero-video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  direction: rtl;
}

.gold-master {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff8d0, var(--gold));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite;
}

.hero-highlight {
  display: block;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-shadow:
    0 0 10px rgba(201, 168, 75, 0.3),
    0 2px 4px rgba(0,0,0,0.5),
    0 0 30px rgba(201, 168, 75, 0.1);
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.gold-master {
  filter: drop-shadow(0 0 4px rgba(201,168,75,0.2));
  animation: goldShimmer 3s ease-in-out infinite, goldGlow 2s ease-in-out infinite;
}

@keyframes goldGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(201,168,75,0.2)); }
  50% { filter: drop-shadow(0 0 8px rgba(201,168,75,0.35)); }
}

.cta-warning {
  margin-top: 18px;
  font-size: 14px;
  color: var(--rose);
  font-weight: 600;
  direction: rtl;
  text-align: center;
}

/* ====== SEP ====== */
.sep-gold {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 50px auto;
  max-width: 300px;
  opacity: 0.4;
}

.sep-gold-light {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,75,0.3), transparent);
  margin: 40px auto;
  max-width: 400px;
}

/* ====== SECTION 2 — WHO BLOCK ====== */
.who-block {
  text-align: center;
  direction: rtl;
}

.who-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ornament-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament-diamond {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.6;
}

.who-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.who-list {
  list-style: none;
  margin-bottom: 20px;
}

.who-item {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  padding: 2px 0;
  color: var(--dark-bg);
  opacity: 0;
  transform: translateY(20px);
}

.who-item.revealed {
  animation: itemReveal 0.6s ease forwards;
}

.who-item-2.revealed { animation-delay: 0.3s; }
.who-item-3.revealed { animation-delay: 0.6s; }

@keyframes itemReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.who-result {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.4;
  margin-bottom: 25px;
}

.who-extended {
  background: rgba(201,168,75,0.08);
  border: 1px solid rgba(201,168,75,0.2);
  border-radius: var(--radius);
  padding: 25px 30px;
  max-width: 580px;
  margin: 0 auto;
}

.who-extended p {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-dark);
}

.who-extended strong {
  font-size: clamp(19px, 2.5vw, 24px);
}

.who-extended-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto;
  opacity: 0.4;
}

/* ====== PROGRAM INTRO ====== */
.program-intro { text-align: center; margin-top: 10px; }

.what-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--gold-dark);
  direction: rtl;
  margin-bottom: 5px;
}

.what-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

@keyframes titleGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.what-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.what-underline span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
}

.what-underline span:nth-child(1) { width: 30px; opacity: 0.3; }
.what-underline span:nth-child(2) { width: 60px; opacity: 0.7; }
.what-underline span:nth-child(3) { width: 30px; opacity: 0.3; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-bg);
}

/* ====== PROGRAM CARDS (DARK) ====== */
.program-sec { padding-bottom: 60px; }

.prog-card-wide { padding: 0; overflow: hidden; }

.prog-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.prog-image-col {
  overflow: hidden;
  min-height: 300px;
}

.prog-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px 0 0 20px;
  transition: transform 0.6s ease;
}

.prog-card-wide:hover .prog-side-img {
  transform: scale(1.05);
}

.prog-text-col {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.prog-card-enhanced {
  position: relative;
  padding-top: 0;
}

.prog-card-accent {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 20px 20px 0 0;
  margin-bottom: 30px;
}

.prog-sub {
  font-size: 15px;
  color: var(--text-gold);
  opacity: 0.7;
  margin-bottom: 20px;
  margin-top: -10px;
  font-style: italic;
}

/* ====== DETAIL BOXES (DARK) ====== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.detail-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,75,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
  direction: rtl;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, box-shadow 0.3s, background 0.3s;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.detail-box.revealed {
  animation: boxPop 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.1s);
}

.detail-box:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
  background: rgba(201,168,75,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.detail-box-highlight {
  border-color: rgba(201,168,75,0.35);
  background: rgba(201,168,75,0.1);
}

.detail-box-highlight:hover {
  background: rgba(201,168,75,0.18);
}

@keyframes boxPop {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ====== DETAIL BOXES (LIGHT) ====== */
.detail-grid-light {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.detail-box-light {
  background: rgba(201,168,75,0.06);
  border: 1px solid rgba(201,168,75,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
  direction: rtl;
  color: var(--text-dark);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, box-shadow 0.3s, background 0.3s;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.detail-box-light.revealed {
  animation: boxPop 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.1s);
}

.detail-box-light:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
  background: rgba(201,168,75,0.12);
  box-shadow: 0 10px 30px rgba(201,168,75,0.12);
}

.prog-card-light-enhanced {
  position: relative;
  padding-top: 0;
}

.prog-card-accent-light {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 20px 20px 0 0;
  margin-bottom: 30px;
}

.prog-sub-light {
  font-size: 15px;
  color: var(--gold-dark);
  opacity: 0.6;
  margin-bottom: 20px;
  margin-top: -10px;
  font-style: italic;
}

.prog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,75,0.12);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  direction: rtl;
  backdrop-filter: blur(10px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s, box-shadow 0.4s;
}

.prog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,75,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.prog-num {
  display: inline-flex;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-bg);
  font-size: 24px;
  font-weight: 900;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 5px 20px rgba(201,168,75,0.3);
}

.prog-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.gold-text {
  color: var(--gold-light);
  font-weight: 700;
}

/* ====== PROGRAM CARDS (LIGHT) ====== */
.prog-card-light {
  background: var(--white);
  border: 1px solid rgba(201,168,75,0.2);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  direction: rtl;
  box-shadow: 0 5px 25px rgba(0,0,0,0.04);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s, box-shadow 0.4s;
}

.prog-card-light:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(201,168,75,0.12);
}

.gold-badge-light .prog-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-bg);
}

.prog-title-light {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 20px;
}

/* ====== TESTIMONIAL VIDEOS ====== */
.avis-sec { padding-bottom: 70px; }

.avis-header { text-align: center; margin-bottom: 40px; }

.avis-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.avis-ornament .ornament-line {
  width: 80px;
  height: 2px;
}

.avis-ornament .ornament-diamond {
  font-size: 18px;
  color: var(--gold-light);
  animation: spinDiamond 6s linear infinite;
}

@keyframes spinDiamond {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.avis-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff8e0, var(--gold));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  direction: rtl;
  animation: titleShine 4s ease-in-out infinite;
}

@keyframes titleShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.avis-arrow {
  display: inline-block;
  animation: bounceArrow 1.2s ease infinite;
  -webkit-text-fill-color: initial;
  color: var(--gold-light);
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.avis-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  aspect-ratio: 9/16;
  border: 1px solid rgba(201,168,75,0.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s, box-shadow 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.avis-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.avis-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avis-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(201,168,75,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--dark-bg);
  pointer-events: none;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.avis-card:hover .avis-play {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--gold);
}

.avis-card.playing .avis-play { opacity: 0; }

/* ====== RESULTS DIVIDER ====== */
.results-sec { padding: 50px 0; }

.results-block { text-align: center; }

.results-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff8d0, var(--gold));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite, goldGlow 2s ease-in-out infinite;
  margin-bottom: 10px;
  letter-spacing: 4px;
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.results-bar span {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: var(--gold);
}

.results-bar span:nth-child(1) { width: 40px; opacity: 0.3; animation: barPulse 1.5s ease infinite 0s; }
.results-bar span:nth-child(2) { width: 80px; opacity: 0.7; animation: barPulse 1.5s ease infinite 0.3s; }
.results-bar span:nth-child(3) { width: 40px; opacity: 0.3; animation: barPulse 1.5s ease infinite 0.6s; }

@keyframes barPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.5); }
}

.results-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ====== PRICING BOX ====== */
.price-box {
  max-width: 520px;
  margin: 50px auto 0;
}

.price-box-inner {
  background: #1a0f0a;
  border: 2px solid rgba(201,168,75,0.2);
  border-radius: 24px;
  padding: 40px 35px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,168,75,0.1);
  transition: transform 0.4s, box-shadow 0.4s;
}

.price-box-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(201,168,75,0.15);
  border-color: rgba(201,168,75,0.35);
}

.price-tag {
  margin-bottom: 5px;
}

.price-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 64px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.price-meta {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.price-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,75,0.3), transparent);
  margin: 25px auto;
  max-width: 250px;
}

.price-features-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-align: center;
}

.price-features {
  list-style: none;
  text-align: right;
  direction: rtl;
  max-width: 380px;
  margin: 0 auto 5px;
}

.price-features li {
  padding: 7px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.pf-check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--dark-bg);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.pf-sub {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.price-box .btn-lg {
  margin-top: 10px;
}

/* ====== GALLERY (DARK) ====== */
.gallery-sec { padding-bottom: 60px; }

.gallery-video-center {
  max-width: 320px;
  margin: 0 auto 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 35px 0;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.gallery-video-item {
  position: relative;
  cursor: pointer;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.gallery-video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(201,168,75,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dark-bg);
  transition: transform 0.3s, background 0.3s;
  pointer-events: none;
}

.gallery-video-item:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--gold);
}

/* ====== CREDS (LIGHT) ====== */
.creds-sub { font-size: 17px; color: var(--gold-dark); font-weight: 600; margin-bottom: 20px; }

.creds-list {
  list-style: none;
  direction: rtl;
}

.creds-list li {
  font-size: 16px;
  padding: 7px 0;
  line-height: 1.5;
}

.check { margin-left: 8px; }

.creds-footer {
  direction: rtl;
  margin-top: 25px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.6;
}

.highlight-gold-dark {
  color: var(--gold-dark);
  font-size: clamp(20px, 2.8vw, 28px);
}

/* ====== LOCATION (DARK) ====== */
.loc-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.loc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  direction: rtl;
  margin-bottom: 35px;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 35px 0 25px;
}

.loc-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,75,0.15);
  border-radius: var(--radius);
  padding: 30px 20px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s, box-shadow 0.4s;
}

.loc-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.loc-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,75,0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.loc-card:hover .loc-card-glow { opacity: 1; }

.loc-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.loc-card h4 { font-size: 17px; color: var(--gold); margin-bottom: 8px; font-weight: 700; }
.loc-card-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.location-note {
  direction: rtl;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gold);
  max-width: 650px;
  margin: 0 auto 30px;
  background: rgba(201,168,75,0.06);
  border: 1px solid rgba(201,168,75,0.15);
  border-radius: 12px;
  padding: 16px 20px;
}

.location-note strong { color: var(--gold-light); }

.loc-img-wrapper {
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(201,168,75,0.1);
}

.location-img-main {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.loc-img-wrapper:hover .location-img-main {
  transform: scale(1.05);
}

.sep-gold-light {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,75,0.3), transparent);
  margin: 40px auto;
  max-width: 400px;
}

.details-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 10px auto 0;
  display: inline-block;
}

/* ====== DETAILS GRID ====== */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.detail-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  direction: rtl;
  backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s, box-shadow 0.4s;
}

.detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,75,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.detail-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-bg);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.detail-card h4 { font-size: 16px; color: var(--gold); margin-bottom: 10px; line-height: 1.4; }
.detail-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.details-footer-text {
  font-size: 18px;
  color: var(--gold);
  direction: rtl;
  line-height: 1.8;
  margin-top: 35px;
}

/* ====== FAQ (LIGHT) ====== */
.faq-sec { padding-bottom: 60px; }

.faq-list { max-width: 680px; margin: 30px auto 0; }

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}

.faq-item:hover {
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.faq-q {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  position: relative;
}

.faq-q::after {
  content: '+';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.4s;
}

.faq-item.active .faq-q::after { transform: translateY(-50%) rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
  padding: 0 50px 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  background: #fdfcfb;
}

.faq-item.active .faq-a {
  max-height: 300px;
  padding: 0 50px 20px 20px;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 30px 0;
  font-size: 13px;
}

.footer-back {
  margin-top: 8px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-back:hover { color: var(--gold); }

/* ====== MODAL ====== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.open { display: flex; }

.modal-card {
  background: var(--dark-bg);
  border: 1px solid rgba(201,168,75,0.25);
  border-radius: 24px;
  padding: 40px 35px 35px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: modalSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlide {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 15px; left: 15px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 22px;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, background 0.3s;
}

.modal-close:hover { color: var(--gold); background: rgba(201,168,75,0.1); }

.modal-header { text-align: center; margin-bottom: 25px; }
.modal-header h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold-light); margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: rgba(255,255,255,0.5); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; color: var(--text-gold); margin-bottom: 6px; font-weight: 600; text-align: right; direction: rtl; }
.form-group input, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(201,168,75,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 15px;
  direction: rtl;
  text-align: right;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Inter', sans-serif;
}

.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,75,0.15); }
.form-group select option { background: var(--dark-bg2); color: var(--white); }

.modal-form .btn-gold { margin-top: 5px; }

/* ====== SUCCESS MODAL ====== */
.success-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-overlay.open { display: flex; }

.success-card {
  background: linear-gradient(160deg, #1c1008, #2c1810);
  border: 1px solid rgba(201,168,75,0.3);
  border-radius: 28px;
  padding: 50px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

@keyframes successPop {
  0% { opacity: 0; transform: scale(0.7) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(201,168,75,0.3);
  animation: iconBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.success-icon {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark-bg);
}

@keyframes iconBounce {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
  animation: fadeUp 0.6s ease 0.5s both;
}

.success-msg {
  font-size: 17px;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 8px;
  animation: fadeUp 0.6s ease 0.6s both;
}

.success-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 30px;
  animation: fadeUp 0.6s ease 0.7s both;
}

.success-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-bg);
  border: none;
  padding: 14px 48px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeUp 0.6s ease 0.8s both;
}

.success-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(201,168,75,0.4);
}

/* ====== SKIP NAV ANIM ====== */

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .avis-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 50px 0; }
  .location-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .btn-lg { padding: 16px 36px; font-size: 17px; }
  .hero-logo-frame { padding: 20px 16px; }
  .prog-card, .prog-card-light { padding: 25px 18px; }
  .who-extended { padding: 20px 16px; }
  .detail-grid, .detail-grid-light { grid-template-columns: 1fr; }
  .prog-row { grid-template-columns: 1fr; }
  .prog-image-col { min-height: 200px; }
  .prog-side-img { border-radius: 20px 20px 0 0; }
}

@media (max-width: 480px) {
  .avis-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-gold { padding: 14px 28px; font-size: 16px; }
  .detail-box, .detail-box-light { font-size: 13px; padding: 12px 14px; }
}
