/* ============================================================
   DAR AL-QURAN — Professional Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Core Colors */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #064e3b; /* Emerald 900 */
  --bg-darker: #022c22; /* Emerald 950 */
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #f8fafc;
  --text-dim: #94a3b8;

  /* Accent Colors */
  --emerald-50:  #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;

  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--emerald-500) 0%, var(--teal-600) 100%);
  --gradient-gold: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 100%);
  --gradient-dark: linear-gradient(135deg, var(--emerald-800) 0%, var(--bg-darker) 100%);
  
  /* Layout & System */
  --max-w: 1280px;
  --nav-h: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-emerald: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
  --shadow-amber: 0 10px 25px -5px rgba(251, 191, 36, 0.3);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- CSS Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select { font-family: inherit; border: none; outline: none; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.arabic-text { font-family: 'Amiri', serif; }
.font-display { font-family: 'Outfit', sans-serif; }

/* ---------- Reveal Animations ---------- */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: all 0.8s var(--ease);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.9); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ---------- Typography ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(4px);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title.light { color: #fff; }
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-desc.light { color: var(--emerald-100); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--emerald-50);
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  height: 70px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--emerald-800);
  line-height: 1.1;
}
.logo-sub {
  font-family: 'Amiri', serif;
  font-size: 0.85rem;
  color: var(--emerald-600);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--emerald-500);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gradient-primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-emerald);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.4);
  color: #fff;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--emerald-800);
  margin-bottom: 5px;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s var(--ease);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-800);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: overlay;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 78, 59, 0.95) 0%, rgba(6, 78, 59, 0.7) 100%);
  z-index: 1;
}
.pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.4) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-text h1 span {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--emerald-100);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: var(--bg-darker);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: var(--shadow-amber);
  transition: all 0.3s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(251, 191, 36, 0.5);
  color: var(--bg-darker);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.05rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}
.hero-visual {
  position: relative;
}
.hero-visual-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.hero-arabic {
  font-family: 'Amiri', serif;
  font-size: 2.5rem;
  color: var(--amber-300);
  line-height: 1.5;
  margin-bottom: 24px;
}
.hero-visual-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.hero-badge {
  background: rgba(255,255,255,0.15);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-badge i { font-size: 1.5rem; }
.hero-badge span { color: #fff; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }

/* ---------- Stats Section ---------- */
.stats-section {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  padding-bottom: 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--emerald-50);
  transition: transform 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-8px); }
.stat-icon {
  width: 56px; height: 56px;
  background: var(--emerald-50);
  color: var(--emerald-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--emerald-800);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ---------- Director Section ---------- */
.director-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.director-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.director-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.director-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  z-index: 1;
}
.director-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.director-img:hover img { transform: scale(1.05); }
.director-content blockquote {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.director-content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px; left: -20px;
  font-size: 4rem;
  color: var(--emerald-100);
  font-family: serif;
  z-index: -1;
}
.director-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--emerald-800);
}
.director-role {
  color: var(--emerald-600);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ---------- Programs ---------- */
.programs-section { padding: 100px 0; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.program-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--emerald-50);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.program-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: var(--gradient-primary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: transform 0.4s var(--ease);
}
.program-card:hover::after { transform: scale(1.5) translate(10%, -10%); }
.prog-icon {
  width: 64px; height: 64px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-emerald);
}
.program-card.color-blue .prog-icon { background: linear-gradient(135deg, #3b82f6, #06b6d4); box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3); }
.program-card.color-amber .prog-icon { background: var(--gradient-gold); box-shadow: var(--shadow-amber); }
.program-card.color-purple .prog-icon { background: linear-gradient(135deg, #a855f7, #ec4899); box-shadow: 0 10px 25px -5px rgba(168, 85, 247, 0.3); }

.program-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.program-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.prog-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.prog-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}
.prog-feat i { color: var(--emerald-500); }

/* ---------- Schedule ---------- */
.schedule-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.schedule-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.sched-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.sched-icon {
  width: 56px; height: 56px;
  background: rgba(251, 191, 36, 0.2);
  color: var(--amber-300);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.sched-title h3 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.sched-title p { color: var(--emerald-200); font-size: 0.9rem; }
.sched-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sched-block {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}
.sched-block-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.sched-time {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.sched-badge {
  background: rgba(251, 191, 36, 0.2);
  color: var(--amber-300);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}
.sched-list li {
  color: var(--emerald-100);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.sched-list li i { color: var(--emerald-400); }

/* ---------- Spaces ---------- */
.spaces-section { padding: 100px 0; background: var(--bg-alt); }
.spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.space-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
}
.space-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.space-card:hover img { transform: scale(1.05); }
.space-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.space-info h3 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.space-info p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.space-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Team ---------- */
.team-section { padding: 80px 0; }
.team-wrapper {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.team-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.team-content {
  padding: 64px;
}
.team-content h2 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.team-content p {
  color: var(--emerald-100);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.team-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-feat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
}
.team-feat i {
  color: var(--amber-400);
  font-size: 1.5rem;
}
.team-feat span { color: #fff; font-weight: 600; }

/* ---------- Colonie ---------- */
.camp-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--amber-50) 0%, #fff7ed 100%);
}
.camp-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--amber-100);
}
.camp-header {
  background: var(--gradient-gold);
  padding: 40px;
  color: var(--bg-darker);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.camp-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.camp-header p { font-weight: 500; opacity: 0.9; }
.camp-hours {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.camp-hours strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.camp-hours span { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
.camp-body {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.camp-block {
  background: var(--amber-50);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--amber-100);
}
.camp-block .time {
  color: var(--amber-600);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: block;
}
.camp-block h4 {
  font-weight: 700;
  margin-bottom: 16px;
}

/* ---------- Registration & Location ---------- */
.register-section { padding: 100px 0; background: #fff; }
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--emerald-50);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-input {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--emerald-50);
  background: var(--bg-alt);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}
.form-input:focus {
  border-color: var(--emerald-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-emerald);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.4);
}
.location-info {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #fff;
  margin-bottom: 32px;
}
.location-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.loc-item i {
  color: var(--amber-400);
  font-size: 1.2rem;
  margin-top: 4px;
}
.loc-item span {
  font-size: 1.05rem;
  color: var(--emerald-50);
  line-height: 1.5;
}
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--emerald-100);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-darker);
  color: #fff;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand {
  max-width: 400px;
}
.footer-brand .logo-title { color: #fff; }
.footer-brand .logo-sub { color: var(--emerald-200); }
.footer-brand p {
  color: var(--emerald-100);
  margin-top: 24px;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--amber-400);
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--emerald-100);
  transition: color 0.3s var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--emerald-200);
  font-size: 0.9rem;
}
.footer-arabic {
  display: block;
  font-family: 'Amiri', serif;
  color: var(--amber-400);
  font-size: 1.2rem;
  margin-top: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .director-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .spaces-grid { grid-template-columns: 1fr; }
  .team-wrapper { grid-template-columns: 1fr; }
  .team-img img { min-height: 300px; }
  .camp-body { grid-template-columns: 1fr; }
  .register-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .hamburger { display: block; }
  .hero-text h1 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; padding-bottom: 100px; }
  .stats-section { margin-top: 0; padding-top: 40px; }
}

/* ---------- Language Toggle & RTL Adjustments ---------- */
.lang-toggle {
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  color: var(--emerald-800);
  margin-right: 16px;
  transition: all 0.3s var(--ease);
}
.lang-toggle:hover { background: var(--emerald-100); }
.lang-active { color: var(--emerald-800); }
.lang-inactive { color: var(--text-dim); }

.nav-actions { display: flex; align-items: center; }

/* Language Hiding/Showing logic */
html[lang="fr"] .lang-ar { display: none !important; }
html[lang="fr"] .lang-fr { display: inline-block; }
html[lang="ar"] .lang-fr { display: none !important; }
html[lang="ar"] .lang-ar { display: inline-block; font-family: 'Cairo', 'Amiri', serif; }

html[lang="fr"] h1 .lang-fr, html[lang="fr"] p .lang-fr, html[lang="fr"] h2 .lang-fr, html[lang="fr"] h3 .lang-fr, html[lang="fr"] h4 .lang-fr, html[lang="fr"] div .lang-fr, html[lang="fr"] span.lang-fr { display: inline; }
html[lang="ar"] h1 .lang-ar, html[lang="ar"] p .lang-ar, html[lang="ar"] h2 .lang-ar, html[lang="ar"] h3 .lang-ar, html[lang="ar"] h4 .lang-ar, html[lang="ar"] div .lang-ar, html[lang="ar"] span.lang-ar { display: inline; font-family: 'Cairo', 'Amiri', serif; }

/* RTL Overrides for Arabic */
html[lang="ar"] { text-align: right; direction: rtl; }
html[lang="ar"] .rtl-mirror { transform: scaleX(-1); }
html[lang="ar"] .nav-links a::after { right: 0; left: auto; }
html[lang="ar"] .hero-text, html[lang="ar"] .hero-visual-card p, html[lang="ar"] .director-content { text-align: right; }
html[lang="ar"] .prog-feat i, html[lang="ar"] .sched-list li i, html[lang="ar"] .loc-item i, html[lang="ar"] .team-feat i { margin-left: 12px; margin-right: 0; }
html[lang="ar"] .director-content blockquote::before { right: -20px; left: auto; transform: scaleX(-1); }
html[lang="ar"] .space-badge { left: 24px; right: auto; }
html[lang="ar"] .stat-num { font-family: 'Cairo', sans-serif; }
