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

:root {
  /* Brand Guidelines & Colors */
  --gm-dark: #071014;
  --gm-dark-2: #0D171D;
  --gm-gold: #D7AF36;
  --gm-gold-2: #F0D16A;
  --gm-cream: #FBF7EF;
  --gm-beige: #F2E8DD;
  --gm-soft: #EAD9CD;
  --gm-text: #F9F4E8;
  --gm-muted: #AEB7BB;
  --gm-card: #101B22;
  --gm-border: rgba(215, 175, 54, 0.25);

  /* Legacy theme mapping for seamless transition */
  --primary-dark: var(--gm-dark);
  --secondary-dark: var(--gm-dark-2);
  --card-dark: var(--gm-card);
  --gold-primary: var(--gm-gold);
  --gold-light: var(--gm-gold-2);
  --gold-dark: var(--gm-gold);
  --beige-light: var(--gm-cream);
  --rose-soft: var(--gm-beige);
  --text-light: var(--gm-text);
  --text-muted: var(--gm-muted);
  --text-dark: var(--gm-dark);
  --text-dark-muted: #54626A;

  --accent-red: #D9534F;
  --accent-green: #D7AF36;
  --accent-orange: #FF9F1C;
  --font-family: 'Cairo', sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 28px;
  
  --shadow-premium: 0 10px 40px rgba(7, 16, 20, 0.5);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  scroll-behavior: smooth;
}

body {
  background-color: var(--beige-light);
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Customizations */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
}

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

/* Header & Navigation */
header {
  background-color: rgba(7, 11, 14, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 1px;
}

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

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 10px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-primary);
}

.btn-header-cta {
  background-color: var(--gold-primary);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gold-primary);
  font-size: 14px;
}

.btn-header-cta:hover {
  background-color: transparent;
  color: var(--gold-primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  color: var(--text-light);
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-primary);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero h1 {
  color: var(--text-light);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--gold-primary);
}

.hero p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary {
  background-color: var(--gold-primary);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--text-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge-item i {
  color: var(--gold-primary);
}

/* Next session hero card */
.hero-session-card {
  background-color: var(--card-dark);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  position: relative;
}

.hero-session-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--gold-primary);
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
}

.hero-session-card h3 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.session-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.session-info-row .label {
  color: var(--text-muted);
}

.session-info-row .val {
  color: var(--text-light);
  font-weight: 600;
}

.session-seats-indicator {
  margin: 20px 0;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  border-right: 4px solid var(--gold-primary);
}

.session-seats-indicator .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-primary);
  display: block;
}

.session-seats-indicator .lbl {
  font-size: 12px;
  color: var(--text-muted);
}

/* Section Common Styles */
section {
  padding: 80px 20px;
}

.section-bg-dark {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.section-bg-dark h2 {
  color: var(--text-light);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.section-title h2 span {
  color: var(--gold-primary);
}

.section-title p {
  color: var(--text-dark-muted);
  font-size: 15px;
}

.section-bg-dark .section-title p {
  color: var(--text-muted);
}

/* Grid Layouts */
.grid-3 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Problem Section */
.problem-card {
  background-color: #FFF;
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-right: 4px solid var(--accent-red);
}

.problem-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.problem-card p {
  font-size: 14px;
  color: var(--text-dark-muted);
}

/* Solution / Outcomes Cards */
.outcome-card {
  background-color: #FFF;
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.outcome-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.outcome-icon {
  width: 50px;
  height: 50px;
  background-color: var(--rose-soft);
  color: var(--gold-dark);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.outcome-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.outcome-card p {
  font-size: 14px;
  color: var(--text-dark-muted);
}

/* Course Details Cards */
.detail-card {
  background-color: var(--secondary-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--border-radius-md);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-card h3 {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 5px;
}

.detail-card-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.detail-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-list li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-list li i {
  color: var(--gold-primary);
}

/* Accordion (Curriculum & FAQ) */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.accordion-header {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background-color: #FFF;
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  background-color: var(--rose-soft);
}

.accordion-header i {
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--beige-light);
  border-top: 0 solid rgba(0,0,0,0.05);
}

.accordion-body {
  padding: 20px;
  font-size: 14px;
  color: var(--text-dark-muted);
}

.accordion-item.active .accordion-header {
  background-color: var(--rose-soft);
  color: var(--gold-dark);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  border-top-width: 1px;
}

/* Testimonial Cards */
.testimonial-card {
  background-color: #FFF;
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-dark-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 15px;
}

.testimonial-user-info h4 {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-user-info span {
  font-size: 12px;
  color: var(--text-dark-muted);
}

/* Available Dates Section */
.sessions-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.session-card {
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: var(--gold-primary);
}

.session-card-status {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.status-open {
  background-color: rgba(92, 184, 92, 0.15);
  color: var(--accent-green);
}

.status-full {
  background-color: rgba(217, 83, 79, 0.15);
  color: var(--accent-red);
}

.session-card-date {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.session-card-day {
  font-size: 14px;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}

.session-card-details {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 15px 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark-muted);
}

.session-card-details i {
  color: var(--gold-primary);
  width: 18px;
}

.session-card-seats {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.session-card-seats span {
  color: var(--gold-dark);
}

/* Booking Flow Stepper Wizard */
.booking-section {
  background-color: var(--rose-soft);
}

.booking-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Stepper progress */
.stepper {
  display: flex;
  background-color: var(--primary-dark);
  padding: 20px 10px;
  border-bottom: 3px solid var(--gold-primary);
}

.step {
  flex: 1;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  position: relative;
  opacity: 0.6;
}

.step-num {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}

.step.active {
  opacity: 1;
  color: var(--gold-primary);
}

.step.active .step-num {
  background-color: var(--gold-primary);
  color: var(--primary-dark);
  border-color: var(--gold-primary);
}

.step.completed {
  opacity: 1;
  color: var(--text-light);
}

.step.completed .step-num {
  background-color: var(--accent-green);
  color: var(--text-light);
  border-color: var(--accent-green);
}

/* Step screens */
.step-screen {
  display: none;
  padding: 40px 30px;
}

.step-screen.active {
  display: block;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 14px;
  background-color: #FFF;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Payment Instructions Styling */
.payment-details-box {
  background-color: var(--beige-light);
  border: 1px dashed var(--gold-primary);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}

.payment-details-box h4 {
  font-size: 16px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.payment-method-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.payment-method-option {
  border: 1px solid rgba(0,0,0,0.15);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.payment-method-option i {
  font-size: 24px;
  color: var(--text-dark-muted);
  margin-bottom: 8px;
  display: block;
}

.payment-method-option.selected {
  border-color: var(--gold-primary);
  background-color: rgba(212, 175, 55, 0.05);
  color: var(--gold-dark);
  font-weight: 700;
}

.payment-method-option.selected i {
  color: var(--gold-primary);
}

/* File upload container */
.file-upload-container {
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.file-upload-container:hover {
  border-color: var(--gold-primary);
  background-color: var(--beige-light);
}

.file-upload-container input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-placeholder i {
  font-size: 40px;
  color: var(--text-dark-muted);
  margin-bottom: 10px;
}

.file-upload-placeholder p {
  font-size: 13px;
  color: var(--text-dark-muted);
}

.file-preview {
  display: none;
  margin-top: 15px;
  text-align: center;
}

.file-preview img {
  max-width: 100%;
  max-height: 200px;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.file-preview .file-name {
  font-size: 12px;
  color: var(--text-dark-muted);
  margin-top: 8px;
}

/* Navigation buttons inside flow */
.flow-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 20px;
}

.flow-navigation button {
  cursor: pointer;
}

/* Error message validation CSS style */
.validation-error {
  color: var(--accent-red);
  font-size: 12px;
  margin-top: 5px;
  font-weight: 600;
}

/* Sticky Bottom CTA for Mobile */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  border-top: 2px solid var(--gold-primary);
  padding: 10px 15px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  justify-content: space-between;
  align-items: center;
}

.sticky-mobile-cta .btn-cta {
  background-color: var(--gold-primary);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  flex: 1;
  text-align: center;
  margin-left: 10px;
}

.sticky-mobile-cta .btn-whatsapp-mobile {
  background-color: #25D366;
  color: #FFF;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Status Page & Success styles */
.status-card {
  max-width: 600px;
  margin: 60px auto;
  background-color: #FFF;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.status-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  color: var(--text-light);
  padding: 40px;
  text-align: center;
  border-bottom: 3px solid var(--gold-primary);
}

.status-header i {
  font-size: 50px;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.status-header h2 {
  color: var(--text-light);
  font-size: 24px;
}

.status-body {
  padding: 40px;
}

.status-info-box {
  background-color: var(--beige-light);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 25px;
}

.status-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
}

.badge-pending {
  background-color: rgba(240, 173, 78, 0.15);
  color: var(--accent-orange);
}

.badge-confirmed {
  background-color: rgba(92, 184, 92, 0.15);
  color: var(--accent-green);
}

.badge-rejected {
  background-color: rgba(217, 83, 79, 0.15);
  color: var(--accent-red);
}

.badge-waitlist {
  background-color: rgba(160, 176, 192, 0.15);
  color: var(--text-dark-muted);
}

/* Footer style */
footer {
  background-color: var(--primary-dark);
  color: var(--text-muted);
  padding: 50px 20px;
  border-top: 3px solid var(--gold-primary);
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-column p {
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.footer-links a:hover {
  color: var(--gold-primary);
}

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

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background-color: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.social-links a:hover {
  background-color: var(--gold-primary);
  color: var(--primary-dark);
}

.copyright {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 12px;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Customizations */
@media(max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-ctas {
    justify-content: center;
  }
  .trust-badges {
    justify-content: center;
  }
  .grid-3, .sessions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  .grid-3, .sessions-grid, .grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none; /* Hide main links on mobile */
  }
  .btn-header-cta {
    display: none;
  }
  .sticky-mobile-cta {
    display: flex;
  }
  body {
    padding-bottom: 70px; /* Make space for sticky footer */
  }
  .step-screen {
    padding: 30px 15px;
  }
  .payment-method-selector {
    grid-template-columns: 1fr;
  }
}

/* Dark Theme Accordion Overrides for Curriculum */
#curriculum {
  background-color: var(--secondary-dark) !important;
  margin: 0;
  border: none;
  position: relative;
  z-index: 1;
  display: block;
}

#curriculum-accordion {
  margin-bottom: 0;
}

.section-bg-dark .accordion-item {
  background-color: #131A26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-bg-dark .accordion-header {
  background-color: #131A26;
  color: var(--text-light, #FFF);
}

.section-bg-dark .accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.section-bg-dark .accordion-content {
  background-color: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(255, 255, 255, 0.05);
}

.section-bg-dark .accordion-body {
  color: var(--text-muted, #B0B5C1);
}

.section-bg-dark .accordion-item.active .accordion-header {
  background-color: rgba(212, 175, 55, 0.05);
  color: var(--gold-primary);
}

/* Packages Selector in Booking Wizard */
.packages-selection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .packages-selection-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.package-radio-card {
  background-color: #FFF;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-md);
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-radio-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.package-radio-card.selected {
  border-color: var(--gold-primary);
  background-color: rgba(212, 175, 55, 0.02);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.08);
}

.package-radio-card .card-header-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.package-radio-card .pkg-title-area {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.package-radio-card .pkg-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--primary-dark);
}

.package-radio-card .pkg-badge {
  background-color: var(--gold-primary);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.package-radio-card .pkg-price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  background-color: var(--beige-light);
  padding: 10px 12px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  font-size: 12px;
}

@media (min-width: 480px) {
  .package-radio-card .pkg-price-row {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
}

.package-radio-card .pkg-price-row .price-item {
  display: flex;
  flex-direction: column;
}

.package-radio-card .pkg-price-row .price-item .lbl {
  color: var(--text-dark-muted);
  font-size: 11px;
}

.package-radio-card .pkg-price-row .price-item .val {
  font-weight: 700;
  color: var(--primary-dark);
}

.package-radio-card .pkg-price-row .price-item .val.highlight {
  color: var(--gold-dark);
}

.package-radio-card .pkg-description {
  font-size: 12px;
  color: var(--text-dark-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.package-radio-card .pkg-contents-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.package-radio-card .pkg-contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  color: var(--text-dark-muted);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.package-radio-card .pkg-contents-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-radio-card .pkg-contents-list li i {
  color: var(--accent-green);
  font-size: 10px;
}

/* Success page home button styling */
.btn-success-home {
  background-color: var(--primary-dark);
  color: var(--gold-primary);
  border: 1px solid var(--primary-dark);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  transition: var(--transition-smooth);
}

.btn-success-home:hover {
  background-color: var(--gold-primary);
  color: var(--primary-dark);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
