/* ==========================================================================
   EMPOWERMENT ON EARTH (التمكين في الأرض) - 2027 ULTRA-MODERN DESIGN SYSTEM
   Inspired by GSAP.com aesthetics, Dark Cosmic Luxury, and Kinetic Motion
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #04060b;
  --bg-surface: #090d18;
  --bg-card: rgba(14, 20, 36, 0.65);
  --bg-card-hover: rgba(22, 32, 54, 0.85);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  /* Vibrant Accent Gradients */
  --gold-primary: #f59e0b;
  --gold-glow: #fbbf24;
  --cyan-primary: #06b6d4;
  --cyan-glow: #38bdf8;
  --emerald-primary: #10b981;
  --emerald-glow: #34d399;
  --purple-primary: #8b5cf6;
  --rose-primary: #f43f5e;

  /* Glassmorphism & Borders */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-glow: rgba(245, 158, 11, 0.35);
  --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65);
  --glass-inner-glow: inset 0 1px 1px rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-heading: 'Alexandria', 'Cairo', sans-serif;
  --font-body: 'Cairo', system-ui, sans-serif;
  --font-accent: 'Outfit', sans-serif;

  /* Transitions */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: auto; /* Handled by Lenis for smooth momentum */
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.25);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 158, 11, 0.5);
}

/* ==========================================================================
   CUSTOM CURSOR & CANVAS
   ========================================================================== */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold-glow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 15px var(--gold-glow), 0 0 30px var(--gold-primary);
}

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover .custom-cursor.hovering {
  width: 22px;
  height: 22px;
  background: var(--cyan-glow);
  box-shadow: 0 0 25px var(--cyan-glow);
}

body:hover .cursor-trail.hovering {
  width: 60px;
  height: 60px;
  border-color: rgba(6, 182, 212, 0.6);
  background: rgba(6, 182, 212, 0.05);
}

@media (pointer: coarse) {
  .custom-cursor, .cursor-trail {
    display: none !important;
  }
}

/* Ambient Dynamic Canvas */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* Global Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-primary), var(--cyan-primary), var(--emerald-primary));
  z-index: 10000;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   GLASSMORPHISM & 3D UTILITIES
   ========================================================================== */

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inner-glow);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.15), var(--glass-inner-glow);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 10%, #fbbf24 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.glass-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1320px;
  z-index: 1000;
  background: rgba(9, 13, 24, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  transition: all 0.4s ease;
}

.glass-header.scrolled {
  top: 0.5rem;
  background: rgba(6, 8, 15, 0.92);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 800;
}

.brand-voe {
  font-size: 1.4rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-divider {
  color: var(--glass-border);
  font-weight: 300;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-glow);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.currency-selector {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  padding: 2px;
}

.currency-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.currency-btn.active {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-primary), #d97706);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  transition: all 0.3s var(--ease-spring);
}

.btn-primary-glow:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.7);
}

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

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

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: pulseGlow 12s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.15) translate(30px, -20px); }
  100% { transform: scale(0.95) translate(-20px, 30px); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
  animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-glow);
}

.badge-pill {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  color: var(--text-primary);
}

.hero-main-title {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.title-sub {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.title-highlight {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-frequency-tagline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cyan-glow);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-quote-box {
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  border-right: 4px solid var(--gold-primary);
  background: rgba(14, 20, 36, 0.5);
}

.quote-icon {
  width: 28px;
  height: 28px;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.hero-statement {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 400;
}

.hero-logistics-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  gap: 1rem;
}

.logistic-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logistic-item i {
  width: 22px;
  height: 22px;
}

.logistic-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.logistic-val {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logistic-divider {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
}

.text-gold { color: var(--gold-glow); }
.text-cyan { color: var(--cyan-glow); }
.text-emerald { color: var(--emerald-glow); }
.text-purple { color: var(--purple-primary); }
.text-rose { color: var(--rose-primary); }

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold-primary), #d97706);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
  transition: all 0.3s var(--ease-spring);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.7);
}

.btn-hero-video {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero-video:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cyan-primary);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.video-play-pulse {
  width: 32px;
  height: 32px;
  background: var(--cyan-primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--cyan-primary);
}

.icon-play {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-right: 2px;
}

/* Countdown */
.countdown-wrapper {
  padding: 1.25rem 1.75rem;
  border-radius: 1.25rem;
}

.countdown-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.count-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 55px;
}

.count-num {
  font-family: var(--font-accent);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-glow);
  line-height: 1;
}

.count-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.count-separator {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--glass-border);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Hero Trainer Card */
.trainer-spotlight-card {
  padding: 1.5rem;
  border-radius: 2rem;
  transform-style: preserve-3d;
}

.trainer-img-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 1.25rem;
}

.trainer-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trainer-spotlight-card:hover .trainer-avatar {
  transform: scale(1.05);
}

.trainer-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 6, 11, 0.85) 100%);
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(9, 13, 24, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.floating-badge.badge-top {
  top: 1rem;
  right: 1rem;
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--gold-glow);
}

.floating-badge.badge-bottom {
  bottom: 1rem;
  left: 1rem;
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-glow);
}

.trainer-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.trainer-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trainer-tags .tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  color: var(--text-secondary);
}

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

.section {
  padding: 6rem 0;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-glow);
  margin-bottom: 1rem;
}

.icon-accent {
  width: 18px;
  height: 18px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

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

/* ==========================================================================
   CORE CONCEPT SECTION
   ========================================================================== */

.concept-glass-card {
  padding: 3.5rem;
  text-align: center;
  max-width: 1050px;
  margin: 0 auto;
}

.concept-ayah-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.ayah-decoration {
  font-size: 2.5rem;
  color: var(--gold-glow);
  opacity: 0.6;
}

.ayah-text {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, var(--gold-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.concept-explanation {
  font-size: 1.25rem;
  line-height: 2;
  color: var(--text-secondary);
  max-width: 850px;
  margin: 0 auto 3rem auto;
}

.concept-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 2.5rem;
}

.concept-mini-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mini-icon {
  width: 50px;
  height: 50px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mini-icon.gold { background: rgba(245, 158, 11, 0.15); color: var(--gold-glow); }
.mini-icon.cyan { background: rgba(6, 182, 212, 0.15); color: var(--cyan-glow); }
.mini-icon.emerald { background: rgba(16, 185, 129, 0.15); color: var(--emerald-glow); }

.concept-mini-pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.concept-mini-pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT INSTRUCTOR SECTION
   ========================================================================== */

.instructor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: 2rem;
  padding: 1rem;
}

.instructor-img {
  width: 100%;
  border-radius: 1.5rem;
  display: block;
}

.experience-chip {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  padding: 1rem 1.5rem;
  border-radius: 1.25rem;
  border-color: rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.exp-number {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-glow);
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 120px;
}

.instructor-lead-bio {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.cred-card {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1.25rem;
}

.cred-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cred-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cred-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   OBJECTIVES SECTION
   ========================================================================== */

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.objective-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.obj-number {
  font-family: var(--font-accent);
  font-size: 2.25rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.25);
  margin-bottom: 1rem;
  line-height: 1;
}

.objective-card:hover .obj-number {
  color: var(--gold-glow);
}

.obj-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.obj-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.highlight-obj {
  background: linear-gradient(135deg, rgba(14, 20, 36, 0.8), rgba(6, 182, 212, 0.15));
  border-color: rgba(6, 182, 212, 0.4);
}

/* ==========================================================================
   12 MASTER PILLARS SECTION
   ========================================================================== */

.pillars-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar-card {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}

.pillar-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pillar-idx {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 800;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-glow);
  padding: 0.35rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(245, 158, 11, 0.25);
  line-height: 1;
}

.pillar-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.pillar-body p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pillar-quote-box {
  background: rgba(255, 255, 255, 0.04);
  border-right: 3px solid var(--gold-glow);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-glow);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.pillar-question-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-glow);
  margin-top: 0.75rem;
}

.pillar-question-badge i {
  width: 16px;
  height: 16px;
}

.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-tag i {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   TRANSFORMATION ROADMAP SECTION
   ========================================================================== */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.roadmap-item {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.25rem;
}

.roadmap-from, .roadmap-to {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.roadmap-from { color: var(--text-muted); }
.roadmap-to { color: var(--text-primary); }

.roadmap-arrow {
  color: var(--gold-glow);
  opacity: 0.7;
}

.manifesto-card {
  padding: 3rem;
  max-width: 950px;
  margin: 0 auto;
  border-right: 6px solid var(--gold-primary);
}

.manifesto-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.question-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-glow);
}

.manifesto-question h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}

.manifesto-paragraphs p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.manifesto-callout {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 1rem;
  padding: 1.25rem 1.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-glow);
  text-align: center;
  margin-bottom: 1.5rem;
}

.manifesto-conclusion {
  font-size: 1.2rem !important;
  color: var(--text-primary) !important;
}

/* ==========================================================================
   PRICING PACKAGES SECTION
   ========================================================================== */

.pricing-currency-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-currency-pill span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pill-options {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  padding: 3px;
}

.pill-opt {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pill-opt.active {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.package-card {
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.75rem;
  position: relative;
}

.package-card.featured-pkg {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(180deg, rgba(20, 28, 50, 0.85) 0%, rgba(14, 20, 36, 0.85) 100%);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -10px rgba(245, 158, 11, 0.25);
}

.featured-ribbon, .platinum-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.featured-ribbon {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

.platinum-ribbon {
  background: linear-gradient(135deg, #a855f7, var(--cyan-primary));
  color: #fff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.package-card.platinum-pkg {
  border-color: rgba(168, 85, 247, 0.4);
  background: linear-gradient(180deg, rgba(24, 18, 48, 0.85) 0%, rgba(14, 20, 36, 0.85) 100%);
}

.pkg-header {
  margin-bottom: 1.5rem;
}

.pkg-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.pkg-badge.gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-glow);
}

.pkg-badge.platinum {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.pkg-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.pkg-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 40px;
}

.pkg-pricing {
  margin-bottom: 1.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}

.pkg-old-price {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.pkg-current-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.cur-sym {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-glow);
}

.price-val {
  font-family: var(--font-accent);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.discount-tag {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-glow);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.pkg-features li.included i {
  width: 18px;
  height: 18px;
  color: var(--emerald-glow);
}

.pkg-features li.excluded {
  color: var(--text-muted);
  opacity: 0.45;
  text-decoration: line-through;
}

.pkg-features li.excluded i {
  width: 18px;
  height: 18px;
  color: var(--rose-primary);
}

.pkg-features li.highlight-feature {
  color: var(--gold-glow);
  font-weight: 700;
}

.pkg-features li.highlight-feature i {
  color: var(--gold-glow);
}

.btn-pkg, .btn-pkg-featured, .btn-pkg-platinum {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  border: none;
}

.btn-pkg {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-pkg:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-pkg-featured {
  background: linear-gradient(135deg, var(--gold-primary), #d97706);
  color: #000;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.btn-pkg-featured:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.7);
}

.btn-pkg-platinum {
  background: linear-gradient(135deg, #a855f7, var(--cyan-primary));
  color: #fff;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.btn-pkg-platinum:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
}

/* ==========================================================================
   EVENT LOGISTICS & LOCATION SECTION
   ========================================================================== */

.logistics-table-card {
  padding: 2rem;
  border-radius: 1.75rem;
}

.table-responsive {
  overflow-x: auto;
}

.luxury-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}

.luxury-table th {
  padding: 1.25rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold-glow);
  border-bottom: 1px solid var(--glass-border);
  font-weight: 700;
}

.luxury-table td {
  padding: 1.5rem 1rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.table-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--cyan-glow);
  margin-top: 0.25rem;
}

.table-presenter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.presenter-mini {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--cyan-glow);
  text-decoration: none;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.location-link:hover {
  text-decoration: underline;
}

.table-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.table-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.lang-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-glow);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.packages-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.packages-chips .chip {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.testi-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.star.filled {
  width: 18px;
  height: 18px;
  color: var(--gold-glow);
  fill: var(--gold-glow);
}

.testi-quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  font-style: italic;
  direction: ltr;
  text-align: left;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  direction: ltr;
  text-align: left;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-glow);
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RELATED COURSES SECTION
   ========================================================================== */

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.related-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.related-category {
  font-size: 0.75rem;
  color: var(--cyan-glow);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.related-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.related-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.related-price strong {
  display: block;
  color: var(--gold-glow);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.btn-related {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-related:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

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

.luxury-footer {
  background: #020307;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1.1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo .logo-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.footer-logo .logo-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}

.footer-about {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.payment-badges span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pay-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.25s ease, padding-right 0.25s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--gold-glow);
  padding-right: 6px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact-list li i {
  width: 20px;
  height: 20px;
  color: var(--gold-glow);
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--text-secondary);
  text-decoration: none;
}

.whatsapp-card {
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-color: rgba(16, 185, 129, 0.3);
}

.whatsapp-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.wa-link {
  color: var(--emerald-glow);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-switch .active {
  color: var(--gold-glow);
  font-weight: 700;
}

.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
}

/* ==========================================================================
   MODALS (VIDEO & BOOKING)
   ========================================================================== */

.video-modal-backdrop, .booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.video-modal-backdrop.active, .booking-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 100%;
  max-width: 900px;
  padding: 1rem;
  border-radius: 1.5rem;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.35s var(--ease-out-expo);
}

.video-modal-backdrop.active .video-modal-content {
  transform: scale(1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-close-btn {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.modal-close-btn:hover {
  background: var(--rose-primary);
  transform: rotate(90deg);
}

/* Booking Modal */
.booking-modal-content {
  width: 100%;
  max-width: 580px;
  padding: 2.5rem;
  border-radius: 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s var(--ease-out-expo);
}

.booking-modal-backdrop.active .booking-modal-content {
  transform: translateY(0);
}

.booking-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.modal-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-glow);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.booking-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}

.booking-modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.booking-summary-box {
  padding: 1.25rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.summary-price {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--gold-glow);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-input:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit-booking {
  margin-top: 0.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold-primary), #d97706);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1.1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
  transition: all 0.3s var(--ease-spring);
}

.btn-submit-booking:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.7);
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 1200px) {
  .pillars-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 868px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-main-title .title-highlight {
    font-size: 2.5rem;
  }

  .hero-frequency-tagline {
    justify-content: center;
  }

  .hero-logistics-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .logistic-divider {
    display: none;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .instructor-grid {
    grid-template-columns: 1fr;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .concept-pillars-grid {
    grid-template-columns: 1fr;
  }

  .concept-glass-card {
    padding: 2rem 1.5rem;
  }

  .ayah-text {
    font-size: 1.6rem;
  }

  .pillars-container {
    grid-template-columns: 1fr;
  }

  .objectives-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured-pkg {
    transform: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .glass-header {
    width: calc(100% - 1.5rem);
    padding: 0.6rem 1rem;
  }

  .brand-subtitle {
    display: none;
  }
}
