/* ==========================================================================
   DR. OMAR HASHEM • THE ONE PERCENT ACADEMY
   Official Landing Page Stylesheet
   Modern, Dark Premium Aesthetic • Arabic RTL Layout
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #0B1120;        /* Deep Obsidian Navy */
  --bg-secondary: #111827;      /* Slate Card Background */
  --bg-surface: #1E293B;        /* Elevated Card Surface */
  --bg-surface-hover: #26354D;  /* Hover state for cards */

  /* Accents */
  --accent-teal: #14B8A6;       /* Primary Cosmetics/Medical Teal */
  --accent-teal-hover: #0D9488; 
  --accent-teal-glow: rgba(20, 184, 166, 0.35);

  --accent-sky: #38BDF8;        /* Electric Sky Blue */
  --accent-sky-glow: rgba(56, 189, 248, 0.3);

  --accent-gold: #F59E0B;       /* The One Percent VIP Gold */
  --accent-gold-hover: #D97706;
  --accent-gold-glow: rgba(245, 158, 11, 0.4);

  --accent-whatsapp: #25D366;   /* Official WhatsApp Green */
  --accent-whatsapp-hover: #20BA56;
  --accent-whatsapp-glow: rgba(37, 211, 102, 0.35);

  /* Typography Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-inverse: #0B1120;

  /* Glassmorphism & Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-teal: rgba(20, 184, 166, 0.25);
  --border-gold: rgba(245, 158, 11, 0.3);
  --glass-card: rgba(17, 24, 39, 0.72);
  --glass-header: rgba(11, 17, 32, 0.85);

  /* Typography Fonts */
  --font-arabic: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-brand: 'Outfit', 'Cairo', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 96px 0;
  --section-padding-mobile: 64px 0;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow-teal: 0 0 30px rgba(20, 184, 166, 0.25);
  --shadow-glow-gold: 0 0 35px rgba(245, 158, 11, 0.25);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-teal { color: var(--accent-teal); }
.text-sky { color: var(--accent-sky); }
.text-gold { color: var(--accent-gold); }

.text-gradient {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-sky) 50%, #A5F3FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FDE68A 0%, var(--accent-gold) 60%, #B45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Section Header Structure */
.section-header {
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-teal);
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-inline: auto;
}

/* Ambient Glow Blobs in Background */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow-1 {
  top: 5%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.45) 0%, rgba(20, 184, 166, 0) 70%);
  animation: pulseGlow 10s ease-in-out infinite alternate;
}

.glow-2 {
  top: 30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, rgba(56, 189, 248, 0) 70%);
  animation: pulseGlow 12s ease-in-out infinite alternate-reverse;
}

.glow-3 {
  bottom: 15%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0) 70%);
  animation: pulseGlow 14s ease-in-out infinite alternate;
}

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

/* --------------------------------------------------------------------------
   3. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 12px 26px;
  font-size: 0.98rem;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.18rem;
}

.w-100 {
  width: 100%;
}

/* Primary Button (Teal / Cyan) */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal) 0%, #0284C7 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(20, 184, 166, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.5);
  color: #FFFFFF;
}

/* Primary Glow Button (Header CTA) */
.btn-primary-glow {
  background: linear-gradient(135deg, var(--accent-teal) 0%, #0EA5E9 100%);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(20, 184, 166, 0.6);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: var(--accent-whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--accent-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.btn-whatsapp-glow {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.65);
}

/* Gold Button */
.btn-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0B1120;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

/* Outline Buttons */
.btn-outline-teal {
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
}

.btn-outline-teal:hover {
  background: var(--accent-teal);
  color: #0B1120;
  transform: translateY(-2px);
}

.btn-ghost-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ADE80;
}

.btn-ghost-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 6px 14px;
}

.badge-teal {
  background: rgba(20, 184, 166, 0.12);
  color: var(--accent-teal);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: 72px;
  background: var(--glass-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(56, 189, 248, 0.2) 100%);
  border: 1px solid rgba(20, 184, 166, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.25);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-symbol {
  transform: rotate(-6deg) scale(1.05);
}

.logo-num {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.logo-sub {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--accent-teal);
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to left, var(--accent-teal), var(--accent-sky));
  transition: width var(--transition-normal);
  border-radius: 2px;
}

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

.nav-accent {
  color: var(--accent-gold);
  font-weight: 800;
  font-family: var(--font-brand);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  cursor: pointer;
  z-index: 1010;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-primary);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #0D1527;
  border-left: 1px solid var(--border-medium);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right var(--transition-normal);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.drawer-close {
  color: var(--text-secondary);
  font-size: 1.4rem;
  padding: 6px;
  transition: color var(--transition-fast);
}

.drawer-close:hover {
  color: var(--text-primary);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav-link i {
  width: 24px;
  color: var(--accent-teal);
  font-size: 1.1rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(20, 184, 166, 0.12);
  color: var(--text-primary);
}

.mobile-drawer-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}

/* Topic Micro Pills */
.hero-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--border-subtle);
  color: #CBD5E1;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.topic-chip i {
  color: var(--accent-teal);
  font-size: 0.75rem;
}

/* Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 0.85rem;
  margin-left: -8px;
}

.avatar-circle:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust-text strong {
  color: var(--text-primary);
}

/* Doctor Visual in Hero */
.hero-visual {
  display: flex;
  justify-content: center;
}

.doctor-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.12;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-aura {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35) 0%, rgba(56, 189, 248, 0.2) 45%, transparent 70%);
  filter: blur(35px);
  border-radius: 50%;
  z-index: 0;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(20, 184, 166, 0.3);
  pointer-events: none;
}

.orbit-1 {
  inset: -20px;
  animation: spinSlow 30s linear infinite;
}

.orbit-2 {
  inset: 10px;
  border-color: rgba(245, 158, 11, 0.25);
  animation: spinSlow 40s linear infinite reverse;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.doctor-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #111827;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform var(--transition-slow);
}

.doctor-card-wrapper:hover .doctor-img {
  transform: scale(1.03);
}

.doctor-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.85) 0%, rgba(11, 17, 32, 0) 40%);
  pointer-events: none;
}

/* Floating Badges on Doctor Card */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2;
  transition: transform var(--transition-normal);
}

.floating-badge:hover {
  transform: translateY(-4px);
}

.badge-top-right {
  top: 15px;
  right: -15px;
}

.badge-bottom-left {
  bottom: 20px;
  left: -15px;
}

@media (max-width: 576px) {
  .badge-top-right {
    top: 10px;
    right: 5px;
  }
  .badge-bottom-left {
    bottom: 10px;
    left: 5px;
  }
}

.badge-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(20, 184, 166, 0.2);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.gold-icon {
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold);
}

.badge-details {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.badge-subtitle {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.floating-chip {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.9), rgba(14, 165, 233, 0.9));
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   6. THE ONE PERCENT ACADEMY BRAND SECTION
   -------------------------------------------------------------------------- */
.one-percent-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0F172A 50%, var(--bg-primary) 100%);
}

.section-bg-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-brand);
  font-size: clamp(12rem, 30vw, 24rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.018);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.one-percent-box {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(30, 41, 59, 0.7) 0%, rgba(17, 24, 39, 0.9) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 6vw, 64px) clamp(20px, 4vw, 48px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(245, 158, 11, 0.06);
  z-index: 1;
}

.brand-crest {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.crest-num {
  font-family: var(--font-brand);
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FDE68A 0%, var(--accent-gold) 60%, #B45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.crest-label {
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

.brand-headings {
  margin-bottom: 20px;
}

.brand-english-title {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.brand-arabic-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #FFFFFF;
}

.brand-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  margin: 16px auto;
  border-radius: 2px;
}

.brand-manifesto {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 700;
  color: #F1F5F9;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 28px;
}

.brand-manifesto strong {
  color: var(--accent-gold);
}

.brand-statement-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-bottom: 48px;
}

.statement-en {
  font-family: var(--font-brand);
  color: #FDE68A;
  font-size: 0.95rem;
}

.statement-sep {
  color: var(--accent-gold);
}

.statement-ar {
  color: #FFFFFF;
  font-size: 0.95rem;
}

/* Feature Grid in One Percent Box */
.brand-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 44px;
  text-align: right;
}

@media (min-width: 768px) {
  .brand-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.brand-feature-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all var(--transition-normal);
}

.brand-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.featured-gold-card {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.04);
}

.featured-gold-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.2);
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.15);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.gold-icon-box {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.brand-action-area {
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
  }
}

.about-image-col {
  display: flex;
  justify-content: center;
}

.about-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1.15;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-medium);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: rgba(17, 24, 39, 0.88);
  border: 1px solid rgba(20, 184, 166, 0.3);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.exp-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(20, 184, 166, 0.2);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.exp-text {
  display: flex;
  flex-direction: column;
}

.exp-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

.exp-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* About Content */
.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-text-block .lead-text {
  font-size: 1.15rem;
  color: #E2E8F0;
  font-weight: 600;
  line-height: 1.8;
}

.about-text-block .sub-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0 16px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border-subtle);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.pillar-item:hover {
  border-color: rgba(20, 184, 166, 0.4);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(20, 184, 166, 0.15);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.pillar-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pillar-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. SPECIALTIES SECTION
   -------------------------------------------------------------------------- */
.specialties-section {
  padding: var(--section-padding);
  background: #0D1424;
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .specialties-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .specialty-card.featured-span {
    grid-column: span 4;
  }
}

.specialty-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-brand);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.teal-glow {
  background: rgba(20, 184, 166, 0.15);
  color: var(--accent-teal);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
}

.sky-glow {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-sky);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.gold-glow {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.emerald-glow {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.card-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.card-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #CBD5E1;
}

.card-bullets li i {
  color: var(--accent-teal);
  font-size: 0.75rem;
}

.inline-bullets {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   9. COURSES SECTION
   -------------------------------------------------------------------------- */
.courses-section {
  padding: var(--section-padding);
}

/* Featured Course (Hair & Skin Diploma) */
.featured-course-card {
  position: relative;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 1.5px solid rgba(20, 184, 166, 0.4);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(20, 184, 166, 0.15);
  margin-bottom: 56px;
}

.featured-course-badge {
  background: linear-gradient(to right, #D97706, #F59E0B);
  color: #0B1120;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.featured-course-body {
  padding: clamp(28px, 5vw, 48px);
}

.academy-tag {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-teal);
  margin-bottom: 8px;
}

.featured-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.featured-tagline {
  font-size: 1.12rem;
  color: #E2E8F0;
  max-width: 820px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.course-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: #A5F3FC;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.meta-pill i {
  color: var(--accent-teal);
}

.curriculum-highlights {
  background: rgba(11, 17, 32, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}

.curriculum-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.curriculum-title i {
  color: var(--accent-teal);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.curriculum-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #CBD5E1;
}

.curriculum-item i {
  color: var(--accent-sky);
  font-size: 0.65rem;
}

.featured-cta-area {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Upcoming Courses Grid */
.upcoming-header {
  margin-bottom: 28px;
}

.upcoming-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.upcoming-title i {
  color: var(--accent-sky);
}

.upcoming-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.upcoming-courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .upcoming-courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.course-status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-sky);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.course-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.course-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.course-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

/* --------------------------------------------------------------------------
   10. WHY JOIN SECTION
   -------------------------------------------------------------------------- */
.why-us-section {
  padding: var(--section-padding);
  background: #0E1626;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: right;
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.15);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.why-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   11. STATISTICS SECTION (ANIMATED COUNTER)
   -------------------------------------------------------------------------- */
.stats-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0E1626 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.35);
  background: rgba(30, 41, 59, 0.6);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--accent-teal);
  margin-bottom: 14px;
}

.stat-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-prefix {
  color: var(--accent-teal);
  margin-left: 4px;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--section-padding);
}

.testimonials-slider-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.testimonials-slider {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 48px);
  box-shadow: var(--shadow-md);
  position: relative;
  text-align: right;
}

.quote-icon {
  font-size: 2.2rem;
  color: rgba(20, 184, 166, 0.25);
  margin-bottom: 14px;
}

.star-rating {
  display: flex;
  gap: 4px;
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #F1F5F9;
  line-height: 1.8;
  margin-bottom: 28px;
}

.student-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.student-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0B1120;
  font-size: 1.1rem;
}

.student-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.student-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--accent-teal);
  color: #0B1120;
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--accent-teal);
}

/* --------------------------------------------------------------------------
   13. SOCIAL MEDIA SECTION
   -------------------------------------------------------------------------- */
.social-section {
  padding: var(--section-padding);
  background: #0D1525;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .social-cards-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.social-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.social-card:hover {
  transform: translateY(-8px);
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  transition: transform var(--transition-fast);
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.social-handle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  direction: ltr;
}

.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: gap var(--transition-fast);
}

.social-card:hover .social-link-btn {
  gap: 12px;
}

/* Specific Social Brand Themes */
.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.04);
}
.whatsapp-card .social-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}
.whatsapp-card .social-link-btn { color: #25D366; }
.whatsapp-card:hover {
  border-color: #25D366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.social-badge {
  position: absolute;
  top: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(37, 211, 102, 0.2);
  color: #4ADE80;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.youtube-card .social-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}
.youtube-card .social-link-btn { color: #EF4444; }
.youtube-card:hover {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.25);
}

.instagram-card .social-icon {
  background: rgba(236, 72, 153, 0.15);
  color: #EC4899;
}
.instagram-card .social-link-btn { color: #EC4899; }
.instagram-card:hover {
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.25);
}

.tiktok-card .social-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}
.tiktok-card .social-link-btn { color: #38BDF8; }
.tiktok-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
}

.facebook-card .social-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #3B82F6;
}
.facebook-card .social-link-btn { color: #3B82F6; }
.facebook-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}

/* --------------------------------------------------------------------------
   14. CONTACT / CTA SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  padding: var(--section-padding);
}

.contact-card {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1.5px solid rgba(20, 184, 166, 0.35);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 4vw, 40px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.12);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.contact-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.contact-text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 36px;
}

.contact-btn-wrapper {
  margin-bottom: 28px;
}

.contact-guarantee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 0.9rem;
  color: #94A3B8;
}

.contact-guarantee span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-guarantee i {
  color: var(--accent-teal);
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #070B14;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-about {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-academy-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast), padding-right var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-teal);
  padding-right: 6px;
}

.footer-contact-info {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  direction: ltr;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-contact-info i {
  color: #25D366;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-icons a:hover {
  background: var(--accent-teal);
  color: #0B1120;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: right;
  }
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   16. FLOATING QUICK ACTIONS & BACK TO TOP
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all var(--transition-normal);
  animation: pulseWhatsApp 3s infinite;
}

@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: #111827;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.floating-whatsapp-btn:hover .floating-tooltip {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-teal);
  color: #0B1120;
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   17. SCROLL ANIMATIONS (INTERSECTION OBSERVER)
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE MEDIA QUERIES (MOBILE-FIRST POLISH)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --section-padding: 64px 0;
  }

  .hide-mobile {
    display: none;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }

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

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

  .featured-cta-area {
    flex-direction: column;
  }

  .featured-cta-area .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .floating-whatsapp-btn {
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
