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

:root {
  --navy: #0f1f3d;
  --navy-light: #1e3a5f;
  --navy-soft: #e8eef7;
  --amber: #f59e0b;
  --amber-light: #fff7ed;
  --amber-dark: #d97706;
  --teal: #0d9488;
  --brand: #0d9488;
  --brand-light: #f0fdfa;
  --text: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --success: #10b981;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 31, 61, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 31, 61, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 31, 61, 0.12);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', system-ui, sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.3;
  text-wrap: balance;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--amber-light);
  color: var(--amber-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 55ch;
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
}

.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--navy-light);
  background: var(--navy-soft);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy-light);
  color: var(--navy-light);
}

.btn-outline:hover {
  background: var(--navy-light);
  color: white;
}

.btn-block {
  width: 100%;
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--amber);
  font-weight: 700;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 0;
}

.nav-inner {
  width: min(1180px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--amber);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--amber-dark);
  color: white;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}

.nav-dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--navy);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--navy);
  background: var(--gray-50);
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0.5rem 0.75rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 7rem 0 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 31, 61, 0.82) 0%, rgba(15, 31, 61, 0.68) 50%, rgba(15, 31, 61, 0.55) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.trust-badge i {
  color: var(--amber);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  display: block;
  color: var(--amber);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  max-width: 50ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-guarantees {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.guarantee i {
  color: var(--success);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
  z-index: 3;
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-light);
  color: var(--amber-dark);
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.2;
}

.floating-card span {
  color: var(--text-light);
  font-size: 0.75rem;
}

.card-1 { top: 2%; right: 0; animation-delay: 0s; }
.card-2 { top: 22%; left: -5%; animation-delay: 0.8s; }
.card-3 { top: 46%; right: 5%; animation-delay: 1.6s; }
.card-4 { bottom: 18%; left: 0; animation-delay: 2.4s; }
.card-5 { bottom: 0; right: 15%; animation-delay: 3.2s; }

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

/* Trust strip */
.trust-strip {
  padding: 2.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

.trust-item i {
  color: var(--navy-light);
  font-size: 1.25rem;
}

/* Shift */
.shift {
  padding: 5rem 0;
  background: var(--gray-50);
}

.shift-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 950px;
  margin-inline: auto;
}

.shift-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.shift-card.worry {
  border-top: 4px solid #ef4444;
}

.shift-card.solution {
  border-top: 4px solid var(--teal);
}

.shift-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.shift-card.worry .shift-icon {
  background: #fef2f2;
  color: #ef4444;
}

.shift-card.solution .shift-icon {
  background: #f0fdfa;
  color: var(--teal);
}

.shift-card h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.shift-card ul {
  list-style: none;
}

.shift-card li {
  color: var(--text-light);
  padding: 0.5rem 0;
  padding-right: 1.25rem;
  position: relative;
}

.shift-card li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--amber);
  font-weight: 700;
}

.shift-arrow {
  color: var(--amber);
  font-size: 2rem;
}

/* Tracks */
.tracks {
  padding: 5rem 0;
  background: var(--white);
}

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

.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}

.course-image {
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
  text-decoration: none;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--navy);
  color: white;
}

.course-badge.popular {
  background: var(--amber);
  color: var(--navy);
}

.course-badge.beginner {
  background: var(--teal);
  color: white;
}

.course-badge.creative {
  background: #ec4899;
  color: white;
}

.course-badge.fun {
  background: var(--success);
  color: white;
}

.course-badge.basic {
  background: var(--text-light);
  color: white;
}

.course-content {
  padding: 1.5rem;
}

.course-content h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.course-content h3 a:hover {
  color: var(--brand);
}

.course-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.course-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-lighter);
  font-size: 0.85rem;
  font-weight: 600;
}

.course-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap var(--transition);
}

.course-link:hover {
  gap: 0.7rem;
}

/* Steps */
.steps {
  padding: 5rem 0;
  background: var(--navy-soft);
}

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

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
}

.step h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Reviews */
.reviews {
  padding: 5rem 0;
  background: var(--white);
}

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

.review-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.review-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--amber);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-card p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.review-author strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
}

.review-author span {
  color: var(--text-lighter);
  font-size: 0.85rem;
}

/* Pricing */
.pricing {
  padding: 5rem 0;
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal), var(--shadow-md);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.best-value {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  padding: 0.35rem 1rem;
  background: var(--teal);
  color: white;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin: 1.25rem 0 0.75rem;
}

.price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.price-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.price-card ul {
  list-style: none;
  text-align: right;
  margin-bottom: 1.75rem;
}

.price-card li {
  color: var(--text-light);
  padding: 0.5rem 0;
  padding-right: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.price-card li i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.pricing-note i {
  color: var(--amber);
}

.pricing-note a {
  color: var(--teal);
  font-weight: 700;
}

/* Booking */
.booking {
  padding: 5rem 0;
  background: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h2 {
  color: var(--navy);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.booking-info > p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.booking-contacts {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.contact-item i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-soft);
  color: var(--navy-light);
  border-radius: 50%;
  font-size: 1.1rem;
}

.contact-item span {
  display: block;
  color: var(--text-lighter);
  font-size: 0.85rem;
}

.contact-item a {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
}

.booking-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-note {
  text-align: center;
  color: var(--text-lighter);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
}

/* About / Trust */
.about {
  padding: 5rem 0;
  background: var(--surface);
}

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

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.about-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.about-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-statement {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-statement h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-statement p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

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

/* Limited Seats */
.limited-seats {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
}

.limited-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.limited-content .section-tag {
  background: rgba(245, 158, 11, 0.2);
  color: var(--amber);
}

.limited-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  color: white;
}

.limited-content > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.limited-points {
  display: grid;
  gap: 1.25rem;
}

.limited-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.limited-point i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.limited-point strong {
  display: block;
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.limited-point span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.limited-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.limited-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-light);
  color: var(--amber-dark);
  border-radius: 50%;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.limited-card h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.limited-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.limited-card .btn {
  width: 100%;
  margin-bottom: 1rem;
}

.limited-card small {
  display: block;
  color: var(--text-lighter);
  font-size: 0.8rem;
}

.course-detail {
  padding: 4rem 0;
  background: var(--surface);
}

.course-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: start;
}

.course-detail-main .lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.detail-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.detail-box h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-box h3 i {
  color: var(--brand);
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-light);
  line-height: 1.6;
}

.detail-list li:last-child {
  border-bottom: none;
}

.detail-list.check li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.detail-list.check li i {
  color: var(--success);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.detail-list ol {
  list-style: arabic-indic;
  padding-right: 1.25rem;
}

.course-detail-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-light);
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-item:last-of-type {
  border-bottom: none;
}

.sidebar-item i {
  color: var(--brand);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.sidebar-item span {
  display: block;
  color: var(--text-lighter);
  font-size: 0.8rem;
}

.sidebar-item strong {
  color: var(--text);
  font-size: 0.95rem;
}

.sidebar-price {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin: 1rem 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.price-row span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.price-row strong {
  color: var(--navy);
  font-size: 1rem;
}

.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-list li {
  margin-bottom: 0.75rem;
}

.related-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.related-list a:hover {
  background: var(--brand-light);
  color: var(--brand);
}

.related-list i {
  color: var(--brand);
  width: 20px;
}

.blog-post-content {
  line-height: 1.9;
  color: var(--text);
}

.blog-post-content h2 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-post-content p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.blog-post-content ul,
.blog-post-content ol {
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.blog-post-content strong {
  color: var(--navy);
}

@media (max-width: 1024px) {
  .course-detail-grid {
    grid-template-columns: 1fr;
  }

  .course-detail-sidebar {
    position: static;
    max-width: 500px;
    margin-inline: auto;
  }
}

/* Footer */
.site-footer {
  padding: 4rem 0 1.5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 1rem;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-brand p {
  max-width: 35ch;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--amber);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Reveal animations */
.reveal-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-animate:not(.is-visible) {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
    max-width: 600px;
    margin-inline: auto;
  }

  .tracks-grid,
  .reviews-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .limited-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .limited-cta {
    max-width: 450px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    margin-left: 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 1002;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a,
  .nav-dropdown-toggle {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
    text-align: right;
    justify-content: space-between;
  }

  .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    border-radius: 0;
    padding: 0;
    margin: 0 -1.5rem;
    min-width: auto;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-dropdown-divider {
    display: none;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-guarantees {
    flex-direction: column;
    gap: 0.75rem;
  }

  .trust-items {
    gap: 1.5rem;
  }

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

  .shift-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .tracks-grid,
  .reviews-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
