/* ============================================================
   منصة الصقر الجريء — Page Sections
   ============================================================ */

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */

/* ════════════════════════════════════════
   NAVBAR & HEADER (PREMIUM REDESIGN)
════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--nav-height, 80px);
  /* يجب أن يكون أعلى من الـ backdrop (9000) حتى يبقى الهيدر فوقه */
  z-index: 9100;
  background: rgba(5, 13, 26, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] #navbar {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(154, 120, 32, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

#navbar.scrolled {
  height: 68px;
  background: rgba(5, 13, 26, 0.95);
  border-bottom-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] #navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(154, 120, 32, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: var(--container-max, 1280px);
  margin: 0 auto;
  padding: 0 var(--sp-6, 1.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ── Logo ── */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 58px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
  display: block;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 14px rgba(201, 168, 76, 0.65));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.nav-logo-tagline {
  font-size: 0.72rem;
  color: var(--gold-300);
  opacity: 0.85;
  font-weight: 600;
  letter-spacing: 0.02em;
}

[data-theme="light"] .nav-logo-tagline {
  color: var(--gold-600);
}

/* ── Nav Links (Desktop) ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white-70);
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  position: relative;
  text-decoration: none;
}

[data-theme="light"] .nav-links li a {
  color: #334155;
  font-weight: 700;
}

[data-theme="light"] .nav-links li a:hover {
  color: #7A5B0B;
  background: rgba(201, 168, 76, 0.15);
}

[data-theme="light"] .nav-links li a.active {
  color: #0F172A;
  background: rgba(201, 168, 76, 0.22);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(154, 120, 32, 0.35);
}

/* ── Right Controls Group (Theme Toggle + Actions + Hamburger) ── */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* ── Modern Dark/Light Theme Switch ── */
.theme-switch-btn {
  position: relative;
  width: 58px;
  height: 30px;
  background: rgba(15, 32, 68, 0.85);
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(201, 168, 76, 0.15);
}

[data-theme="light"] .theme-switch-btn {
  background: linear-gradient(135deg, #FFE8A3, #FFD566);
  border-color: rgba(154, 120, 32, 0.45);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(201, 168, 76, 0.3);
}

.theme-switch-btn:hover {
  border-color: var(--gold-300);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.35);
  transform: scale(1.04);
}

.theme-icon-slot {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.theme-icon-slot svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-icon-sun svg {
  fill: #F59E0B;
  opacity: 0.4;
}

.theme-icon-moon svg {
  fill: #93C5FD;
  opacity: 0.9;
}

[data-theme="light"] .theme-icon-sun svg {
  opacity: 1;
  transform: rotate(20deg);
}

[data-theme="light"] .theme-icon-moon svg {
  opacity: 0.3;
  transform: scale(0.8);
}

.theme-switch-thumb {
  position: absolute;
  top: 2px;
  right: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

[data-theme="light"] .theme-switch-thumb {
  transform: translateX(-28px);
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ── Nav Actions (Desktop Buttons / User Badge) ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-actions .btn {
  font-size: 0.88rem;
  padding: 0.5rem 1.15rem;
}

.btn-nav-login {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-300);
  border-radius: var(--radius-full);
}

.btn-nav-login:hover {
  background: rgba(201, 168, 76, 0.15);
  color: #FFFFFF;
  border-color: var(--gold-300);
}

.btn-nav-register {
  background: var(--grad-gold);
  color: var(--navy-900);
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-nav-register:hover {
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

/* User logged-in avatar & badge in navbar */
.nav-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0.8rem 0.3rem 0.4rem;
  background: rgba(15, 32, 68, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
}

.nav-user-chip:hover {
  border-color: var(--gold-300);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.25);
}

.nav-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--navy-900);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

.nav-user-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



/* ══════════════════════════════════════
   NAVBAR RESPONSIVE — Tablet & Mobile (≤ 992px)
══════════════════════════════════════ */
@media (max-width: 992px) {

  /* إخفاء روابط التنقل وزر الكورسات على الموبايل */
  .nav-links {
    display: none !important;
  }
  .nav-actions {
    display: none !important;
  }

  /* الـ Theme Toggle يبقى دائماً ظاهراً */
  #theme-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
  }

  /* تضييق مسافة nav-controls على الموبايل */
  .nav-controls {
    gap: 0.5rem;
  }

  /* زر الـ Theme أصغر قليلاً على الموبايل */
  .theme-switch-btn {
    width: 52px;
    height: 28px;
  }

  .theme-switch-thumb {
    width: 20px;
    height: 20px;
    top: 3px;
    right: 3px;
  }

  [data-theme="light"] .theme-switch-thumb {
    transform: translateX(-24px);
  }
}


/* ══════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════ */
.hamburger-btn {
  display: none; /* يظهر فقط على الموبايل/تابلت */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
  background: rgba(15, 32, 68, 0.75);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  cursor: pointer;
  transition: var(--transition-normal);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.hamburger-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: inherit;
}

.hamburger-btn:hover {
  border-color: var(--gold-300);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.3);
  transform: scale(1.05);
}

.hamburger-btn:hover::before {
  opacity: 0.08;
}

.hamburger-btn:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

[data-theme="light"] .hamburger-btn {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(154, 120, 32, 0.35);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-300);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease,
              width 0.3s ease;
  position: relative;
  z-index: 1;
}

[data-theme="light"] .hamburger-line {
  background: var(--gold-500);
}

/* حالة الفتح — تحويل الثلاثة خطوط إلى ✕ */
.hamburger-btn.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .hamburger-btn {
    display: flex;
  }
}


/* ══════════════════════════════════════
   DRAWER OVERLAY
══════════════════════════════════════ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 16, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}


/* ══════════════════════════════════════
   MOBILE DRAWER (من اليمين — RTL)
══════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  background: var(--navy-800);
  border-left: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 168, 76, 0.08);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

[data-theme="light"] .mobile-drawer {
  background: #FFFFFF;
  border-left-color: rgba(154, 120, 32, 0.2);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
}

/* ── Drawer Header ── */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  flex-shrink: 0;
}

.drawer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.drawer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.drawer-brand-tagline {
  font-size: 0.72rem;
  color: var(--gold-300);
  font-weight: 600;
  opacity: 0.85;
}

[data-theme="light"] .drawer-brand-tagline {
  color: var(--gold-600);
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--white-70);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.drawer-close-btn svg {
  width: 16px;
  height: 16px;
}

.drawer-close-btn:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #FCA5A5;
}

[data-theme="light"] .drawer-close-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(154, 120, 32, 0.2);
  color: #334155;
}

/* ── Drawer Divider ── */
.drawer-divider {
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(201, 168, 76, 0.25), transparent);
  flex-shrink: 0;
  margin: 0 1.25rem;
}

[data-theme="light"] .drawer-divider {
  background: linear-gradient(to left, transparent, rgba(154, 120, 32, 0.2), transparent);
}

/* ── Drawer Nav ── */
.drawer-nav {
  flex: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ── Drawer Link (base) ── */
.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-70);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: right;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.drawer-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: inherit;
}

.drawer-link:hover {
  color: var(--white);
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(-3px);
}

[data-theme="light"] .drawer-link {
  color: #334155;
}

[data-theme="light"] .drawer-link:hover {
  color: #0F172A;
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(154, 120, 32, 0.25);
}

/* Primary CTA link (إنشاء حساب) */
.drawer-link--primary {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold-300);
  font-weight: 700;
}

.drawer-link--primary:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold-400);
  color: var(--gold-200);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.2);
}

[data-theme="light"] .drawer-link--primary {
  color: var(--gold-500);
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(154, 120, 32, 0.3);
}

/* Nav link (الكورسات) */
.drawer-link--nav {
  color: var(--white-70);
}

/* Danger link (تسجيل الخروج) */
.drawer-link--danger {
  color: #FCA5A5;
  border-color: rgba(239, 68, 68, 0.15);
}

.drawer-link--danger:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.35);
  color: #F87171;
  transform: translateX(-3px);
}

[data-theme="light"] .drawer-link--danger {
  color: #DC2626;
}

.drawer-link-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.drawer-link span:last-child {
  position: relative;
  z-index: 1;
}

/* ── Drawer Footer ── */
.drawer-footer {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  flex-shrink: 0;
  text-align: center;
}

.drawer-footer-text {
  font-size: 0.75rem;
  color: var(--white-50);
  font-weight: 500;
}

[data-theme="light"] .drawer-footer-text {
  color: #64748B;
}

/* ══════════════════════════════════════
   BODY LOCK — منع التمرير عند فتح الدراور
══════════════════════════════════════ */
body.drawer-open {
  overflow: hidden;
}


/* ════════════════════════════════════════
   HERO BANNER V3 — CLEAN, MINIMAL & LUXURY
════════════════════════════════════════ */

/* ── Hero Background Layer ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(15, 32, 68, 0.9) 0%, transparent 70%),
    linear-gradient(180deg, rgba(5, 13, 26, 0.85) 0%, rgba(5, 13, 26, 0.55) 50%, rgba(5, 13, 26, 0.85) 100%);
  animation: heroBgShift 15s ease infinite;
}

[data-theme="light"] .hero-bg-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 90%, rgba(154, 120, 32, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 252, 240, 0.92) 0%, rgba(255, 252, 240, 0.75) 50%, rgba(255, 252, 240, 0.92) 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 30%, transparent 80%);
}

[data-theme="light"] .hero-bg-grid {
  background-image:
    linear-gradient(rgba(154, 120, 32, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 120, 32, 0.07) 1px, transparent 1px);
}

/* Glow orbs (shared helper used in hero & other sections) */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-gold {
  background: radial-gradient(circle, rgba(201, 168, 76, 0.28) 0%, transparent 70%);
}

.glow-orb-blue {
  background: radial-gradient(circle, rgba(56, 100, 220, 0.18) 0%, transparent 70%);
}

.hero-banner-v3 {
  position: relative;
  min-height: auto;
  padding-top: calc(var(--nav-height, 80px) + 2.5rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 1.6rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Welcome Badge & Title ── */
.hero-header-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.hero-welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-full, 999px);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-300);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.18);
  letter-spacing: 0.01em;
}

[data-theme="light"] .hero-welcome-badge {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(154, 120, 32, 0.4);
  color: #7A5B0B;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(154, 120, 32, 0.15);
}

.hero-title-v3 {
  margin: 0;
  line-height: 1.15;
}

.hero-title-brand {
  font-family: var(--font-heading, 'Cairo', sans-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  letter-spacing: -0.01em;
  filter: drop-shadow(0 2px 14px rgba(201, 168, 76, 0.25));
}

[data-theme="light"] .hero-title-brand {
  background: linear-gradient(135deg, #5C4100 0%, #A8821F 45%, #7A5B0B 75%, #473200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(154, 120, 32, 0.25));
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white-80, rgba(255, 255, 255, 0.82));
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 500;
}

[data-theme="light"] .hero-subtitle {
  color: #1E293B;
  font-weight: 600;
}

/* ── Teacher Centerpiece ── */
.hero-teacher-centerpiece {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem 0;
  position: relative;
}

.hero-teacher-frame-v3 {
  position: relative;
  width: 270px;
  height: 270px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.95) 0%, rgba(15, 32, 68, 0.95) 50%, rgba(201, 168, 76, 0.6) 100%);
  box-shadow: 0 0 45px rgba(201, 168, 76, 0.4), inset 0 0 25px rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.hero-teacher-frame-v3:hover {
  transform: scale(1.04);
  box-shadow: 0 0 65px rgba(201, 168, 76, 0.65), inset 0 0 35px rgba(201, 168, 76, 0.45);
}

.hero-teacher-img-v3 {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  border-radius: 50% !important;
  border: 2.5px solid var(--gold-300);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: block !important;
}

.hero-teacher-glow-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px dashed rgba(201, 168, 76, 0.4);
  pointer-events: none;
  animation: rotateSlow 25s linear infinite;
}

[data-theme="light"] .hero-teacher-glow-ring {
  border-color: rgba(154, 120, 32, 0.45);
}

.hero-teacher-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(5, 13, 26, 0.88);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-full, 999px);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-300);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .hero-teacher-chip {
  background: #FFFFFF;
  color: #0F172A;
  font-weight: 800;
  border-color: rgba(154, 120, 32, 0.35);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

/* Floating Badges */
.hero-floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: rgba(5, 13, 26, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-full, 999px);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 5;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

[data-theme="light"] .hero-floating-badge {
  background: #FFFFFF;
  color: #0F172A;
  font-weight: 800;
  border-color: rgba(154, 120, 32, 0.35);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.hero-floating-badge-right {
  top: 15%;
  right: -50px;
}

.hero-floating-badge-left {
  bottom: 22%;
  left: -50px;
  animation-delay: 2s;
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  /* Hide floating badges on mobile — they overlap on small screens */
  .hero-floating-badge-right, .hero-floating-badge-left {
    display: none;
  }

  /* Hero section: tighter top padding on mobile */
  .hero-banner-v3 {
    padding-top: calc(var(--nav-height, 80px) + 1.5rem);
    padding-bottom: 2.5rem;
  }

  /* Tighter hero container on mobile */
  .hero-banner-container {
    gap: 1rem;
    padding: 0 1.25rem;
    max-width: 100%;
  }

  /* Header box tighter */
  .hero-header-box {
    gap: 0.6rem;
    width: 100%;
  }

  /* Welcome badge smaller on mobile */
  .hero-welcome-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }

  /* Title scales better */
  .hero-title-v3 {
    width: 100%;
    text-align: center;
  }
  .hero-title-brand {
    font-size: clamp(2.2rem, 10vw, 3rem);
    display: block;
  }

  /* Subtitle more readable on narrow screens */
  .hero-subtitle {
    font-size: 0.93rem;
    line-height: 1.75;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  /* Teacher centerpiece tighter */
  .hero-teacher-centerpiece {
    gap: 0.75rem;
    margin: 0.25rem 0;
    width: 100%;
  }

  /* Smaller teacher image on mobile */
  .hero-teacher-frame-v3 {
    width: 200px !important;
    height: 200px !important;
    max-width: 200px !important;
    max-height: 200px !important;
  }

  /* Teacher chip text size */
  .hero-teacher-chip {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    text-align: center;
    max-width: 90%;
    white-space: normal;
    line-height: 1.4;
  }

  /* Action buttons full width on mobile */
  .hero-action-box {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.7rem;
    padding: 0;
    margin-top: 0.25rem;
  }

  .btn-hero-cta,
  .hero-action-box .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-full) !important;
  }
}

@media (max-width: 480px) {
  .hero-banner-v3 {
    padding-top: calc(var(--nav-height, 80px) + 1rem);
    padding-bottom: 2rem;
  }

  .hero-banner-container {
    gap: 0.85rem;
    padding: 0 1rem;
  }

  .hero-teacher-frame-v3 {
    width: 175px !important;
    height: 175px !important;
    max-width: 175px !important;
    max-height: 175px !important;
  }

  .hero-title-brand {
    font-size: clamp(1.9rem, 11vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .hero-welcome-badge {
    font-size: 0.78rem;
    padding: 0.38rem 0.8rem;
  }

  .hero-teacher-chip {
    font-size: 0.78rem;
    padding: 0.38rem 0.8rem;
  }

  .btn-hero-cta,
  .hero-action-box .btn {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
}

/* ── Hero Main Action Button ── */
.hero-action-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn-hero-cta {
  font-size: 1.05rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full, 999px);
  font-weight: 800;
  background: var(--grad-gold);
  color: var(--navy-900);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.45);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.65);
}

.btn-hero-cta .btn-icon {
  transition: transform 0.3s ease;
}

.btn-hero-cta:hover .btn-icon {
  transform: translateX(-4px);
}

/* ── Direct Transition to Courses Section ── */
.section-courses-v3 {
  padding-top: 2.5rem;
  padding-bottom: var(--sp-20, 5rem);
  position: relative;
}

/* ════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════ */

#features {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
  position: relative;
}

#features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74,144,226,0.04) 0%, transparent 50%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

/* ════════════════════════════════════════
   COURSES SECTION
════════════════════════════════════════ */

#courses {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

#courses::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 60%);
  border-radius: 50%;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}

.courses-grid .course-card:last-child {
  display: none;
}

.courses-grid[data-filter="all"] .course-card { display: block; }
.courses-grid[data-filter="all"] .course-card:last-child { display: block; }

.courses-view-all {
  text-align: center;
  margin-top: var(--sp-10);
}

/* ════════════════════════════════════════
   STATS SECTION
════════════════════════════════════════ */

#stats {
  position: relative;
  overflow: hidden;
  padding: var(--sp-24) 0;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050D1A 0%, #0F2044 50%, #050D1A 100%);
  background-size: 400% 400%;
  animation: heroBgShift 15s ease infinite;
}

.stats-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(74,144,226,0.06) 0%, transparent 50%);
}

.stats-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  backdrop-filter: var(--glass-blur-sm);
}

.stat-box {
  border-left: 1px solid rgba(201,168,76,0.08);
}

.stat-box:last-child { border-right: none; }
.stat-box:first-child { border-left: none; }

/* ════════════════════════════════════════
   TESTIMONIALS SECTION
════════════════════════════════════════ */

#testimonials {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
}

#testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════════════════════════════════════════
   INSTRUCTORS SECTION
════════════════════════════════════════ */

#instructors {
  background: var(--navy-900);
  position: relative;
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

/* ════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════ */

#faq {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */

#cta {
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F2044, #152A58, #0A1628);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(74,144,226,0.08) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--fw-black);
  color: var(--white);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-tight);
}

.cta-subtitle {
  font-size: var(--text-lg);
  color: var(--white-70);
  margin-bottom: var(--sp-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.cta-note {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--white-50);
}

.cta-note span { color: var(--gold-400); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */

#footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding-top: var(--sp-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .nav-logo {
  margin-bottom: var(--sp-4);
  display: inline-flex;
}

.footer-description {
  font-size: var(--text-sm);
  color: var(--white-50);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-50);
  font-size: var(--text-base);
  transition: var(--transition-normal);
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--gold-glow-sm);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--sp-5);
  position: relative;
  padding-bottom: var(--sp-3);
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--white-50);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-links a::before {
  content: '›';
  color: var(--gold-400);
  font-size: var(--text-lg);
  opacity: 0;
  transform: translateX(4px);
  transition: var(--transition-normal);
}

.footer-links a:hover {
  color: var(--gold-300);
  padding-right: var(--sp-2);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: var(--text-sm);
  color: var(--white-50);
  line-height: var(--lh-normal);
}

.footer-contact-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--gold-400);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

/* Newsletter */
.footer-newsletter {
  margin-top: var(--sp-5);
  display: flex;
  gap: var(--sp-2);
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem var(--sp-4);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  direction: rtl;
  transition: var(--transition-normal);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(201,168,76,0.05);
}

.footer-newsletter input::placeholder { color: var(--white-30); }

.footer-newsletter .btn {
  padding: 0.75rem var(--sp-5);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--white-40, rgba(255,255,255,0.4));
}

.footer-copyright a {
  color: var(--gold-400);
  font-weight: var(--fw-medium);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}

.footer-bottom-links a {
  font-size: var(--text-sm);
  color: var(--white-40, rgba(255,255,255,0.4));
  transition: var(--transition-normal);
}

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

/* ════════════════════════════════════════
   RESPONSIVE — Sections
════════════════════════════════════════ */

@media (max-width: 1200px) {
  .hero-content { grid-template-columns: 1.2fr 1fr; gap: var(--sp-10); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid .course-card:last-child { display: none; }
  .instructors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-left: 1px solid rgba(201,168,76,0.08); }
  .stat-box:nth-child(3) { border-left: none; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .hero-falcon-wrapper { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--sp-12) var(--sp-4) var(--sp-8);
    gap: var(--sp-8);
  }
  .hero-visual {
    display: flex;
    justify-content: center;
    margin: var(--sp-4) 0;
  }
  .hero-teacher-frame {
    width: 240px;
    height: 240px;
  }
  .hero-falcon-wrapper {
    width: 260px;
    height: 260px;
  }
  .hero-description { margin: 0 auto var(--sp-6); }
  .hero-cta { justify-content: center; }
  .hero-full-stats {
    padding: var(--sp-4) var(--sp-4);
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-description { max-width: 100%; }
  .footer-newsletter { flex-direction: column; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-full-stats { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .filter-tabs { gap: 0.4rem; }
  .filter-tab { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }
  .footer-social { flex-wrap: wrap; }
}

/* ── Back to Top Button ── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--navy-900);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 500;
}
#back-to-top:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 30px rgba(201,168,76,0.6);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
  margin: 0;
}

/* ============================================================
   الوضع النهاري — COMPREHENSIVE LIGHT MODE OVERRIDES
   ============================================================ */

[data-theme="light"] .filter-tab {
  background: #FFFFFF;
  border: 1.5px solid rgba(154, 120, 32, 0.3);
  color: #334155;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .filter-tab:hover,
[data-theme="light"] .filter-tab.active {
  background: linear-gradient(135deg, #C9A84C, #9A7820);
  color: #FFFFFF;
  border-color: #8C6B16;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(154, 120, 32, 0.35);
}

[data-theme="light"] .section-title {
  color: #0F172A;
}

[data-theme="light"] .section-title .text-gold {
  background: linear-gradient(135deg, #5C4100 0%, #A8821F 45%, #7A5B0B 75%, #473200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .section-subtitle {
  color: #334155;
  font-weight: 600;
}

[data-theme="light"] .section-label {
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(154, 120, 32, 0.35);
  color: #7A5B0B;
  font-weight: 800;
}

[data-theme="light"] #features,
[data-theme="light"] #courses,
[data-theme="light"] #testimonials,
[data-theme="light"] #instructors,
[data-theme="light"] #faq {
  background: var(--navy-900);
}

[data-theme="light"] .stats-bg {
  background: linear-gradient(135deg, #FAF8F3 0%, #F4EFE6 50%, #FAF8F3 100%);
}

[data-theme="light"] .stats-grid {
  background: #FFFFFF;
  border-color: rgba(154, 120, 32, 0.25);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .stat-box {
  border-left-color: rgba(154, 120, 32, 0.15);
}

[data-theme="light"] .hero-stat-num,
[data-theme="light"] .stat-number {
  color: #7A5B0B;
}

[data-theme="light"] .hero-stat-lbl,
[data-theme="light"] .stat-label {
  color: #334155;
}

[data-theme="light"] .cta-bg {
  background: linear-gradient(135deg, #FAF8F3, #F4EFE6, #FAF8F3);
  border-top: 1px solid rgba(154, 120, 32, 0.2);
  border-bottom: 1px solid rgba(154, 120, 32, 0.2);
}

[data-theme="light"] .cta-title {
  color: #0F172A;
}

[data-theme="light"] .cta-subtitle {
  color: #334155;
  font-weight: 600;
}

[data-theme="light"] .cta-note {
  color: #64748B;
}

[data-theme="light"] #footer {
  background: #F4EFE6;
  border-top: 1px solid rgba(154, 120, 32, 0.25);
}

[data-theme="light"] .footer-title {
  color: #0F172A;
}

[data-theme="light"] .footer-description,
[data-theme="light"] .footer-links a,
[data-theme="light"] .footer-copyright {
  color: #334155;
}

[data-theme="light"] .footer-links a:hover {
  color: #7A5B0B;
}

[data-theme="light"] .footer-newsletter input {
  background: #FFFFFF;
  border-color: rgba(154, 120, 32, 0.3);
  color: #0F172A;
}

[data-theme="light"] .footer-newsletter input::placeholder {
  color: #94A3B8;
}
