/* ==========================================================================
   Design System & Core Variables
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  /* Colors */
  --primary: #FF9F43;     /* Playful Orange */
  --secondary: #1DD1A1;   /* Mint Green */
  --tertiary: #54A0FF;    /* Baby Blue */
  --accent: #FF6B6B;      /* Soft Red */
  --yellow: #FEEAA1;
  --purple: #9B59B6;
  
  --text-dark: #2D3436;
  --text-primary: #1e272e;
  --text-light: #636E72;
  --bg-light: #F8F9FA;
  --bg-soft: #fff9f0;
  --white: #FFFFFF;
  --border-color: #e0e0e0;
  
  /* Layout */
  --card-shadow: 0 15px 35px rgba(0,0,0,0.05);
  --hover-shadow: 0 20px 40px rgba(0,0,0,0.08);
  --border-radius-sm: 8px;
  --border-radius: 16px;
  --border-radius-lg: 30px;
  --border-radius-pill: 50px;
  
  /* Typography */
  --font-en: 'Nunito', sans-serif;
  --font-ar: 'Tajawal', sans-serif;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-en);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

html[dir="rtl"] body {
  font-family: var(--font-ar);
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.2;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-primary);
}
html[dir="rtl"] .section-title {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background-color: var(--primary);
  border-radius: var(--border-radius-pill);
}
html[dir="rtl"] .section-title::after {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

section {
  padding: 5rem 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-soft { background-color: var(--bg-soft); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius-pill);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(255, 159, 67, 0.3);
}

.btn-primary:hover {
  background-color: #e68a30;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 159, 67, 0.4);
}

.btn-secondary {
  background-color: var(--tertiary);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(84, 160, 255, 0.3);
}

.btn-secondary:hover {
  background-color: #408bea;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(84, 160, 255, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  transition: var(--transition);
}

.top-bar {
  background-color: var(--tertiary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

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

.top-contact {
  display: flex;
  gap: 20px;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-contact a:hover {
  color: var(--yellow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

html[dir="rtl"] .nav-links a::after {
  right: 0;
  left: auto;
}

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

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

.lang-switch {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 5px 10px;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.lang-switch:hover {
  background-color: #e2e2e2;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #fff9f0 0%, #e6f7ff 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 6px 15px;
  background-color: var(--yellow);
  color: #d39e00;
  font-weight: 700;
  border-radius: var(--border-radius-pill);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.1;
}

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

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 40px 10px 40px 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border: 8px solid white;
}

/* Floating Elements */
.shape {
  position: absolute;
  z-index: 1;
  opacity: 0.6;
}

.shape-1 {
  top: 15%;
  left: 5%;
  width: 80px;
  height: 80px;
  background-color: var(--secondary);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  bottom: 10%;
  right: 10%;
  width: 120px;
  height: 120px;
  background-color: var(--primary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  top: 20%;
  right: 40%;
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  transform: rotate(45deg);
  animation: float 7s ease-in-out infinite;
}

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

/* ==========================================================================
   Programs Section
   ========================================================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.program-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  top: 0;
  border: 1px solid var(--border-color);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.program-img {
  height: 220px;
  overflow: hidden;
}

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

.program-card:hover .program-img img {
  transform: scale(1.1);
}

.program-content {
  padding: 25px;
}

.program-age {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--bg-soft);
  color: var(--primary);
  font-weight: 700;
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.program-card:nth-child(2) .program-age {
  color: var(--secondary);
  background-color: #e0f8f1;
}

.program-card:nth-child(3) .program-age {
  color: var(--text-dark);
  background-color: var(--yellow);
}

.program-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.program-desc {
  color: var(--text-light);
  margin-bottom: 20px;
}

.program-features {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-bottom: 20px;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.program-features li i {
  color: var(--secondary);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--primary);
}

.service-card:nth-child(2):hover { border-bottom-color: var(--secondary); }
.service-card:nth-child(3):hover { border-bottom-color: var(--tertiary); }
.service-card:nth-child(4):hover { border-bottom-color: var(--accent); }

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff4ea;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:nth-child(2) .service-icon { background-color: #e0f8f1; color: var(--secondary); }
.service-card:nth-child(3) .service-icon { background-color: #ebf4ff; color: var(--tertiary); }
.service-card:nth-child(4) .service-icon { background-color: #ffeaea; color: var(--accent); }

.service-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

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

/* ==========================================================================
   Admission Section
   ========================================================================== */
.admission {
  background-color: var(--tertiary);
  color: var(--white);
  position: relative;
}

.admission .section-title {
  color: var(--white);
}

.admission .section-title::after {
  background-color: var(--yellow);
}

.admission .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.admission-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.admission-image {
  flex: 1;
}

.admission-image img {
  border-radius: var(--border-radius);
  border: 5px solid rgba(255, 255, 255, 0.3);
}

.admission-steps {
  flex: 1;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--yellow);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-info h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.step-info p {
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Fees / Pricing
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 159, 67, 0.15);
}

html[dir="rtl"] .pricing-card.popular {
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--primary);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: 700;
  font-size: 0.85rem;
}
html[dir="rtl"] .popular-badge {
  right: auto;
  left: -35px;
  transform: rotate(-45deg);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-title {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

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

.pricing-features {
  text-align: left;
  margin-bottom: 30px;
}
html[dir="rtl"] .pricing-features {
  text-align: right;
}

.pricing-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.pricing-features li i {
  color: var(--secondary);
}

.pricing-features li.disabled {
  color: var(--text-light);
  text-decoration: line-through;
}

.pricing-features li.disabled i {
  color: #dcdde1;
}

/* ==========================================================================
   Reviews & Ratings
   ========================================================================== */
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  border-radius: var(--border-radius);
  background-color: var(--white);
  padding: 40px;
  box-shadow: var(--card-shadow);
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-title {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-5px);
}

.review-rating {
  color: #f1c40f;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-text {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.author-info h5 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================================================
   Contact Forms & Booking
   ========================================================================== */
.contact-section {
  background-color: var(--bg-soft);
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info-block {
  flex: 1;
  min-width: 300px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 159, 67, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-light);
}

.contact-form-block {
  flex: 1.5;
  min-width: 350px;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.1);
}

.error-message {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.has-error .form-control {
  border-color: var(--accent);
}

.form-group.has-error .error-message {
  display: block;
}

/* Custom Captcha */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background-color: var(--bg-light);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  border: 1px dashed var(--border-color);
}

.captcha-question {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--primary);
  background-color: rgba(255, 159, 67, 0.1);
  padding: 8px 15px;
  border-radius: 4px;
  user-select: none;
}

.captcha-refresh {
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.captcha-refresh:hover {
  color: var(--tertiary);
  transform: rotate(180deg);
}

.btn-submit {
  width: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #2D3436;
  color: #ecf0f1;
  padding: 80px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}
html[dir="rtl"] .footer-col h3::after {
  right: 0;
  left: auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-col p {
  color: #b2bec3;
  margin-bottom: 20px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b2bec3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary);
}
html[dir="rtl"] .footer-links a::before {
  content: '\f104';
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}
html[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: #b2bec3;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b2bec3;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Cookies Policy Popup
   ========================================================================== */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 10000;
  padding: 20px 0;
  transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 15px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
  }
  html[dir="rtl"] .nav-links {
    left: auto;
    right: -100%;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }
  
  .nav-links.active { left: 0; }
  html[dir="rtl"] .nav-links.active { right: 0; left: auto; }
  
  .mobile-menu-btn { display: block; }
  
  .hero .container { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { justify-content: center; }
  
  .contact-container { flex-direction: column; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero { padding-top: 120px; }
  .section-title { font-size: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .admission-content { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 15px; }
}

/* Language Visibility */
html[lang='en'] .ar-only { display: none !important; }
html[lang='ar'] .en-only { display: none !important; }
