/* ═══════════════════════════════════════════
   EFK Summer Camp 2026 — Main Stylesheet
   Mobile-first · RTL-ready · Camp-branded
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --red:        #C41230;
  --green:      #2E7D32;
  --green-lite: #4CAF50;
  --yellow:     #FFD53D;
  --sky:        #00B4D8;
  --navy:       #0A1628;
  --white:      #FFFFFF;
  --off-white:  #F7FFF7;
  --grey-bg:    #F4F6F9;
  --grey-text:  #6B7280;
  --border:     #E5E7EB;

  /* camp colours */
  --seeds-clr:       #1565C0;
  --seeds-lite:      #E3F2FD;
  --juniors-clr:     #E65100;
  --juniors-lite:    #FFF3E0;
  --apprentice-clr:  #1B5E20;
  --apprentice-lite: #E8F5E9;
  --masters-clr:     #6A1B9A;
  --masters-lite:    #F3E5F5;

  --radius:   16px;
  --radius-sm: 8px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:0 8px 40px rgba(0,0,0,.16);
  --transition: .25s ease;

  --font-en: 'Poppins', sans-serif;
  --font-ar: 'Cairo', sans-serif;
  --font-display: 'Fredoka One', cursive;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   { font-family: var(--font-en); color: var(--navy); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul     { list-style: none; }

/* ── RTL ── */
[dir="rtl"] body  { font-family: var(--font-ar); }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-text  { text-align: right; }
[dir="rtl"] .hiw-arrow  { transform: scaleX(-1); }
[dir="rtl"] .faq-icon   { margin-left: 0; margin-right: auto; }
[dir="rtl"] .modal-nav  { flex-direction: row-reverse; }
[dir="rtl"] .form-grid  { direction: rtl; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Section commons ── */
.section-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--grey-text);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 24px; max-width: 1200px; margin: 0 auto;
}
.nav-logo img { height: 48px; object-fit: contain; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem; font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.lang-toggle:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.lang-en-label, .lang-ar-label { display: none; }
[lang="en"] .lang-en-label { display: inline; }
[lang="ar"] .lang-ar-label { display: inline; }

.btn-book-nav {
  background: var(--red);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 24px;
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-book-nav:hover { background: #a50e27; transform: translateY(-1px); }

.hamburger { display: none; font-size: 1.5rem; color: var(--white); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;        /* CTA bar sticks to bottom */
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center; /* desktop: show full landscape */
}
.hero-overlay {
  position: absolute; inset: 0;
  /* bottom-up dark fade — gives button contrast without killing the image */
  background: linear-gradient(
    to top,
    rgba(5,12,24,.92) 0%,
    rgba(5,12,24,.45) 22%,
    transparent 50%
  );
}

/* Hidden h1 for SEO — image carries the visual text */
.hero-seo-title {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* CTA bar — pinned to bottom-center of hero */
.hero-cta-bar {
  position: absolute;
  bottom: 64px;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 0 40px;
  animation: fadeDown .6s ease .3s both;
}

.btn-hero {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: .02em;
  box-shadow: 0 6px 28px rgba(255,213,61,.5);
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(255,213,61,.65); }

.hero-promo {
  color: rgba(255,255,255,.88);
  font-size: .92rem;
}
.hero-promo strong { color: var(--yellow); }

/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0;
  padding: 0;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--yellow);
  line-height: 1;
}
.stat span:last-child { font-size: .8rem; opacity: .75; margin-top: 2px; }

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.section-about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.about-text p {
  color: var(--grey-text);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-text em {
  display: block;
  border-left: 4px solid var(--yellow);
  padding-left: 16px;
  color: var(--navy);
  font-style: italic;
  margin: 24px 0;
}
[dir="rtl"] .about-text em { border-left: none; border-right: 4px solid var(--yellow); padding-left: 0; padding-right: 16px; }
.about-accreditations { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge-accred {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
}
.about-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-stat-card {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.about-stat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.asc-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-card div:last-child { font-size: .85rem; color: var(--grey-text); font-weight: 500; }

/* ════════════════════════════════
   BENEFITS
════════════════════════════════ */
.section-benefits { padding: 100px 0; background: var(--grey-bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-bottom-color: var(--yellow);
}
.benefit-icon { font-size: 2.4rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.benefit-card p  { font-size: .875rem; color: var(--grey-text); line-height: 1.6; }

/* ════════════════════════════════
   CAMPS
════════════════════════════════ */
.section-camps { padding: 100px 0; background: var(--white); }
.camps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.camp-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.camp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.camp-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.camp-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.camp-card:hover .camp-img-wrap img { transform: scale(1.04); }
.camp-age-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(10,22,40,.8);
  color: var(--white);
  font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
}
.camp-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.camp-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 3px 12px; border-radius: 20px;
}
.seeds-tag       { background: var(--seeds-lite);       color: var(--seeds-clr); }
.juniors-tag     { background: var(--juniors-lite);     color: var(--juniors-clr); }
.apprentice-tag  { background: var(--apprentice-lite);  color: var(--apprentice-clr); }
.masters-tag     { background: var(--masters-lite);     color: var(--masters-clr); }

.camp-name { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); }
.camp-desc { font-size: .9rem; color: var(--grey-text); line-height: 1.65; flex: 1; }
.camp-highlights {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.camp-highlights span {
  background: var(--grey-bg);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .78rem;
  font-weight: 500;
}
.btn-details {
  background: none;
  border: 2px solid var(--border);
  color: var(--grey-text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}
.btn-details:hover, .btn-details.open { border-color: var(--navy); color: var(--navy); }

.camp-details {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.camp-details.open { max-height: 900px; }

.week-block { margin-bottom: 16px; padding: 16px; background: var(--grey-bg); border-radius: var(--radius-sm); }
.week-title { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.week-block p { font-size: .85rem; color: var(--grey-text); margin-bottom: 8px; }
.workshop-list { font-size: .78rem; font-weight: 600; color: var(--grey-text); }

.session-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.session-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .85rem;
}
.session-num {
  background: var(--navy);
  color: var(--white);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
  flex-shrink: 0;
}
.final-outcome {
  margin-top: 14px; padding: 12px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  font-size: .85rem;
}

.btn-book-camp {
  background: var(--navy);
  color: var(--white);
  padding: 12px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  transition: var(--transition);
  width: 100%;
  margin-top: auto;
}
.camp-card[data-camp="seeds"]       .btn-book-camp { background: var(--seeds-clr); }
.camp-card[data-camp="juniors"]     .btn-book-camp { background: var(--juniors-clr); }
.camp-card[data-camp="apprentice"]  .btn-book-camp { background: var(--apprentice-clr); }
.camp-card[data-camp="masters"]     .btn-book-camp { background: var(--masters-clr); }
.btn-book-camp:hover { opacity: .88; transform: translateY(-2px); }

/* ════════════════════════════════
   HOW IT WORKS
════════════════════════════════ */
.section-hiw { padding: 100px 0; background: var(--navy); color: var(--white); }
.section-hiw .section-label { background: var(--yellow); }
.section-hiw .section-title { color: var(--white); }
.hiw-steps {
  display: flex; align-items: flex-start; justify-content: center;
  flex-wrap: wrap; gap: 0;
  margin: 48px 0 40px;
}
.hiw-step {
  text-align: center; max-width: 180px; padding: 0 12px;
}
.hiw-icon { font-size: 2.8rem; margin-bottom: 12px; }
.hiw-step h3 { font-size: 1rem; font-weight: 700; color: var(--yellow); margin-bottom: 6px; }
.hiw-step p  { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.55; }
.hiw-arrow { font-size: 1.8rem; color: rgba(255,255,255,.3); align-self: center; padding: 0 4px; }

.hiw-details {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-bottom: 28px;
}
.hiw-detail {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  min-width: 110px;
}
.hiw-d-num {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--yellow);
  line-height: 1; margin-bottom: 4px;
}
.hiw-detail div:last-child { font-size: .8rem; color: rgba(255,255,255,.7); }
.hiw-time { text-align: center; color: rgba(255,255,255,.6); font-size: .9rem; }

/* ════════════════════════════════
   GALLERY
════════════════════════════════ */
.section-gallery { padding: 100px 0; background: var(--grey-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin: 40px 0 32px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1/1; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gi-large { grid-column: span 1; grid-row: span 2; aspect-ratio: auto; }
.gi-wide  { grid-column: span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.5);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 700; font-size: .95rem; }
.gallery-add-photos {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--border); gap: 12px; aspect-ratio: 1/1;
  border-radius: var(--radius);
}
.gallery-add-photos span { font-size: 2.4rem; }
.gallery-add-photos p { font-size: .85rem; color: var(--grey-text); text-align: center; padding: 0 16px; }
.btn-gallery-more {
  display: block; margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 700;
  transition: var(--transition);
  width: fit-content;
}
.btn-gallery-more:hover { background: var(--red); }

/* ════════════════════════════════
   LOCATIONS
════════════════════════════════ */
.section-locations { padding: 100px 0; background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.location-card {
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 28px 24px 120px; /* bottom space reserved for pinned buttons */
  text-align: center;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  transition: var(--transition);
}
.location-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-4px); }
.location-city-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  align-self: center;
}
.alex-badge  { background: #E3F2FD; color: #1565C0; }
.cairo-badge { background: #FFF3E0; color: #E65100; }
.giza-badge  { background: var(--grey-bg); color: var(--grey-text); }
.location-icon { font-size: 2.4rem; }
.location-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.location-area { font-size: .85rem; color: var(--grey-text); }
.location-start { font-size: .85rem; color: var(--grey-text); }
.location-days { font-size: .85rem; font-weight: 600; color: var(--navy); }
.location-price { font-size: .9rem; color: var(--grey-text); }
.price-highlight { color: var(--red); font-size: 1.1rem; }
.btn-map {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-map:hover { border-color: var(--sky); color: var(--sky); }
.btn-book-loc {
  background: var(--green-lite);
  color: var(--white);
  padding: 10px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
  width: 100%;
}
.btn-book-loc:hover { background: var(--green); }
.loc-actions {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location-soon { opacity: .65; }
.location-soon:hover { border-color: var(--border); transform: none; box-shadow: none; }
.soon-label {
  background: var(--grey-bg);
  color: var(--grey-text);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: .82rem; font-weight: 700;
  align-self: center;
}
.btn-notify {
  background: var(--navy);
  color: var(--white);
  padding: 10px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
  width: 100%;
}
.btn-notify:hover { background: var(--sky); }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.section-faq { padding: 100px 0; background: var(--grey-bg); }
.faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  font-size: .95rem; font-weight: 600; color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
[dir="rtl"] .faq-q { text-align: right; }
.faq-q:hover { background: var(--grey-bg); }
.faq-icon { font-size: 1.3rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-q.open .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 22px;
}
.faq-a.open { max-height: 300px; padding: 0 22px 18px; }
.faq-a p { font-size: .9rem; color: var(--grey-text); line-height: 1.7; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--navy); color: var(--white); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 52px; margin-bottom: 14px; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.65; max-width: 240px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--navy); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: var(--yellow); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.6); text-decoration: underline; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--yellow); }

/* ════════════════════════════════
   MODAL BASE
════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,22,40,.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%; max-width: 600px;
  max-height: 92vh; overflow-y: auto;
  padding: 32px 28px;
  position: relative;
  transform: translateY(30px);
  transition: transform .3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-box-sm { max-width: 420px; }
.modal-box-terms { max-width: 700px; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grey-bg);
  color: var(--navy);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
[dir="rtl"] .modal-close { right: auto; left: 14px; }
.modal-close:hover { background: var(--red); color: var(--white); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-right: 32px;
}

/* Modal Steps */
.modal-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 28px;
}
.mstep {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.mstep span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grey-bg);
  color: var(--grey-text);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  transition: var(--transition);
}
.mstep.active span, .mstep.done span { background: var(--navy); color: var(--white); }
.mstep.done span { background: var(--green-lite); }
.mstep small { font-size: .68rem; color: var(--grey-text); }
.mstep-line { flex: 1; height: 2px; background: var(--border); margin: 0 6px; min-width: 24px; }

/* Form */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--navy);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--navy); }
.form-group select:disabled { background: var(--grey-bg); cursor: not-allowed; }
.form-group-full { grid-column: 1 / -1; }
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--navy);
  transition: border-color var(--transition);
  background: var(--white);
  resize: vertical;
  min-height: 60px;
}
.form-group textarea:focus { outline: none; border-color: var(--navy); }

.camp-detected {
  background: var(--yellow);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 16px;
}
.detected-label { font-size: .8rem; font-weight: 600; opacity: .7; margin-bottom: 4px; }
.detected-camp  { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); }
.detected-ages  { font-size: .85rem; color: var(--navy); opacity: .7; }

/* Batch selection */
.batches-container { margin: 16px 0; }
.batches-container > label { font-size: .85rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 10px; }
.batches-list { display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; }
.batch-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: space-between;
}
.batch-card:hover:not(.full) { border-color: var(--navy); }
.batch-card.selected { border-color: var(--navy); background: #f0f4ff; }
.batch-card.full { opacity: .5; cursor: not-allowed; }
/* .not-open styles are in the "Batch lock styles" section below */
.batch-info { display: flex; flex-direction: column; gap: 3px; }
.batch-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.batch-dates { font-size: .8rem; color: var(--grey-text); }
.batch-days  { font-size: .8rem; color: var(--grey-text); }
.batch-status {
  font-size: .72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
}
.status-available { background: #E8F5E9; color: var(--green); }
.status-full      { background: #FFEBEE; color: var(--red); }
.status-soon      { background: var(--grey-bg); color: var(--grey-text); }

/* Promo */
.promo-section { margin-bottom: 20px; }
.promo-section label { font-size: .85rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 8px; }
.promo-input-row { display: flex; gap: 10px; }
.promo-input-row input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .9rem; }
.btn-apply-promo {
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-apply-promo:hover { background: var(--green); }
.promo-msg { font-size: .82rem; margin-top: 6px; }
.promo-msg.success { color: var(--green); }
.promo-msg.error   { color: var(--red); }

/* Booking/Price summary */
.booking-summary {
  background: var(--grey-bg);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: .875rem;
  line-height: 1.8;
}
.price-summary {
  border-top: 2px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
}
.price-row { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: 6px; }
.price-row.discount { color: var(--green); }
.price-row.total { font-weight: 800; font-size: 1.1rem; color: var(--navy); border-top: 1px solid var(--border); padding-top: 8px; margin-top: 4px; }

.payment-summary {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f5e 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.payment-note p { font-size: .85rem; color: var(--grey-text); margin-bottom: 8px; line-height: 1.55; }

/* Form buttons */
.btn-next, .btn-proceed, .btn-pay {
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 700;
  transition: var(--transition);
  width: 100%;
}
.btn-next:hover  { background: #1a2f5e; }
.btn-proceed     { background: var(--green); }
.btn-proceed:hover { background: var(--green-lite); }
.btn-pay         { background: var(--red); font-size: 1.05rem; padding: 15px; }
.btn-pay:hover   { background: #a50e27; }

.btn-back {
  background: var(--grey-bg);
  color: var(--navy);
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-back:hover { background: var(--border); }

.modal-nav { display: flex; gap: 12px; margin-top: 8px; }
.modal-nav .btn-next { flex: 2; }
.modal-nav .btn-back { flex: 1; }

.form-error { color: var(--red); font-size: .82rem; margin-bottom: 8px; min-height: 18px; }

/* Spinner */
.loading-spinner {
  text-align: center;
  padding: 20px 0;
}
.spinner {
  width: 40px; height: 40px;
  border: 4px solid var(--border);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 12px;
}
.loading-spinner p { font-size: .9rem; color: var(--grey-text); }
.hidden { display: none !important; }

/* Terms */
.terms-content h3 { font-size: 1rem; color: var(--navy); margin: 20px 0 8px; }
.terms-content p  { font-size: .875rem; color: var(--grey-text); line-height: 1.7; margin-bottom: 8px; }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--navy);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
[dir="rtl"] .scroll-top { right: auto; left: 28px; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red); }

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-large, .gi-wide { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .hamburger { display: block; }

  /* Hero — mobile: portrait image fills full screen */
  .hero { min-height: 100svh; min-height: 100vh; max-height: none; }
  .hero-img { object-fit: cover; object-position: center top; }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(5,12,24,.85) 0%,
      rgba(5,12,24,.15) 30%,
      transparent 55%
    );
  }
  .hero-cta-bar { bottom: 32px; padding: 0 20px; }
  .btn-hero { width: 100%; display: block; }

  .hiw-steps { flex-direction: column; align-items: center; gap: 24px; }
  .hiw-arrow { transform: rotate(90deg) !important; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat { padding: 14px 18px; }
  .stats-bar { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .btn-hero { padding: 15px 20px; font-size: 1rem; }
  .section-title { font-size: 1.6rem; }
  .modal-box { padding: 24px 18px; }
  .camps-grid { grid-template-columns: 1fr; }
  .promo-input-row { flex-direction: column; }

  /* Stats bar — 2 columns on very small screens */
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat:last-child:nth-child(odd) { grid-column: span 2; border-right: none; }
}

/* ──────────────── PHOTO GALLERY ──────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 40px;
}
.photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a2e;
}
.photo-item.photo-tall { grid-row: span 2; }
.photo-item.photo-wide { grid-column: span 2; }
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.photo-item:hover img { transform: scale(1.07); }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .3s;
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: rgba(196,18,48,.85);
  padding: 4px 10px;
  border-radius: 20px;
}
.gallery-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-show-more {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--red);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-show-more:hover { background: var(--red); }

/* ──────────────── LIGHTBOX ──────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lb-img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2001;
  transition: background .2s;
}
.lb-close:hover { background: var(--red); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 48px;
  width: 56px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2001;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-prev:hover, .lb-next:hover { background: var(--red); }
.lb-counter {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 8px; }
  .photo-item.photo-tall { grid-row: span 1; }
}


/* ══════════════════════════════════════════════════════════
   COUNTDOWN STRIP
══════════════════════════════════════════════════════════ */
.countdown-strip {
  background: linear-gradient(135deg, #C41230 0%, #a00e25 100%);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(196,18,48,.4);
}
.countdown-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .92;
}
.countdown-boxes {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cd-box {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 10px;
  min-width: 60px;
  text-align: center;
  padding: 8px 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(4px);
}
.cd-box span {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: .02em;
}
.cd-box small {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .75;
  margin-top: 3px;
  letter-spacing: .08em;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: 28px;
  opacity: .6;
  line-height: 1;
  align-self: flex-start;
  margin-top: 10px;
}
@media (min-width: 600px) {
  .countdown-strip { flex-direction: row; justify-content: center; gap: 20px; }
  .cd-box { min-width: 70px; }
  .cd-box span { font-size: 38px; }
}

/* ══════════════════════════════════════════════════════════
   PAYMENT STRIP (main page between stats & about)
══════════════════════════════════════════════════════════ */
.payment-strip {
  background: #F0FBF4;
  border-top: 2px solid #C8EDD3;
  border-bottom: 2px solid #C8EDD3;
  padding: 16px 0;
}
.payment-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
}
.ps-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.ps-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.ps-item {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  background: #fff;
  border: 1.5px solid #C8EDD3;
  border-radius: 20px;
  padding: 4px 12px;
}
.ps-installment {
  background: var(--yellow);
  border-color: #e5b800;
  color: #4a3500;
}
.ps-sep { color: #aaa; font-size: 18px; }

/* ══════════════════════════════════════════════════════════
   ABOUT EFK — Reorganised
══════════════════════════════════════════════════════════ */
.founder-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #F0F7FF 0%, #E8F5E9 100%);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 36px;
  border: 1px solid #D0E8F0;
}
@media (min-width: 700px) {
  .founder-block { flex-direction: row; }
}
.founder-photo-wrap {
  flex-shrink: 0;
}
.founder-photo-wrap img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--sky);
  box-shadow: 0 6px 20px rgba(0,180,216,.25);
}
.founder-photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border: 4px solid var(--sky);
  box-shadow: 0 6px 20px rgba(0,180,216,.25);
}
.founder-quote {
  flex: 1;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: .6;
  color: var(--sky);
  opacity: .5;
  display: block;
  margin-bottom: 8px;
}
.founder-quote blockquote {
  font-size: 16px;
  font-style: italic;
  color: #2a4060;
  line-height: 1.7;
  margin-bottom: 14px;
}
.founder-name {
  font-weight: 700;
  color: var(--green);
  font-size: 14px;
}
.founder-title {
  font-size: 12px;
  color: var(--grey-text);
  margin-top: 2px;
}

/* About descriptive paragraphs */
.about-who {
  font-size: 16px;
  color: #344054;
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* Stats pills row */
.about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}
.about-stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 40px;
  padding: 10px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-stat-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
}
.asp-icon { font-size: 22px; }
.asp-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green);
  line-height: 1;
}
.asp-label {
  font-size: 12px;
  color: var(--grey-text);
  font-weight: 600;
  line-height: 1.3;
  max-width: 80px;
}

/* Egypt branch paragraph */
.about-egypt {
  background: #FFF8E1;
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 15px;
  color: #4a3800;
  line-height: 1.7;
}
[dir="rtl"] .about-egypt {
  border-left: none;
  border-right: 4px solid var(--yellow);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* Schools grid */
.schools-grid-wrap {
  margin-bottom: 28px;
}
.schools-grid-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}
.schools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.school-pill {
  background: var(--grey-bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #344054;
  white-space: nowrap;
}
.school-pill.more {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* Accreditation badges (reuse existing or add) */
.accreditation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.accred-badge {
  background: #fff;
  border: 2px solid #D1E9DC;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════
   BOOKING STEP 1 — Camp detected image
══════════════════════════════════════════════════════════ */
.camp-detected {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #E8F5E9 0%, #E3F2FD 100%);
  border: 2px solid #A5D6A7;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
  animation: slideDown .35s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.detected-camp-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(255,255,255,.6);
  padding: 4px;
}
.detected-text {
  flex: 1;
}
.detected-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 4px;
}
.detected-camp { /* already exists for the name text */
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
}
.detected-ages {
  font-size: 13px;
  color: var(--grey-text);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   BOOKING STEP 2 — Batch lock styles
══════════════════════════════════════════════════════════ */

/* Override the old generic rule cleanly */
.batch-card.not-open {
  opacity: 1 !important;          /* we control opacity per-element below */
  cursor: not-allowed;
  background: #F7F8FA;
  border-color: #E0E3E8;
  border-style: dashed;
}

/* Dim only the text content, not the whole card */
.batch-card.not-open .batch-info {
  opacity: .55;
}

/* Batch name with lock prefix — already injected via JS as "🔒 Batch 3" */
.batch-card.not-open .batch-name {
  color: #6B7280;
}

.status-soon {
  background: #F3F4F6;
  color: #6B7280;
  border: 1.5px solid #D1D5DB;
  white-space: nowrap;
}

.batch-lock-msg {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 4px;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   BOOKING STEP 3 — Payment methods box
══════════════════════════════════════════════════════════ */
.payment-methods-box {
  background: #F0FBF4;
  border: 2px solid #A5D6A7;
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}
.pm-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  text-align: center;
}
.pm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.pm-badge {
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid transparent;
}
.pm-card     { background: #E8F4FD; color: #1a5276; border-color: #AED6F1; }
.pm-instapay { background: #E8F8F5; color: #117864; border-color: #A2D9CE; }
.pm-voda     { background: #FDEDEC; color: #922b21; border-color: #F1948A; }
.pm-fawry    { background: #FEF9E7; color: #7d6608; border-color: #F9E79F; }
.pm-installment {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFFDE7;
  border: 1.5px solid #F9E79F;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 4px;
}
.pm-install-icon { font-size: 28px; flex-shrink: 0; }
.pm-installment strong { font-size: 14px; color: #4a3500; display: block; margin-bottom: 4px; }
.pm-installment p  { font-size: 12px; color: #7d6608; margin: 0; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS for new sections
══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .cd-box { min-width: 52px; }
  .cd-box span { font-size: 26px; }
  .about-stat-pill { padding: 8px 14px; }
  .asp-num { font-size: 18px; }
  .detected-camp-img { width: 70px; height: 70px; }
  .pm-badges { gap: 6px; }
  .pm-badge { font-size: 12px; padding: 5px 12px; }
}

/* ══════════════════════════════════════════════════════════
   ABOUT — Map + Stats row
══════════════════════════════════════════════════════════ */
.about-map-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .about-map-row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .about-map-img { flex: 1.4; }
  .about-map-stats { flex: 1; }
}
.about-map-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-map-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-map-stats .about-stat-pill {
  width: 100%;
  justify-content: flex-start;
  gap: 14px;
}

/* Founder photo — circular */
.founder-photo-wrap img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--sky);
  box-shadow: 0 6px 24px rgba(0,180,216,.3);
}

/* ══════════════════════════════════════════════════════════
   ABOUT — School logo grid (real images)
══════════════════════════════════════════════════════════ */
.schools-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.school-logo-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 80px;
}
.school-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
}
.school-logo-item img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .schools-logo-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .school-logo-item { min-height: 64px; padding: 8px; }
  .school-logo-item img { max-height: 48px; }
}
@media (max-width: 480px) {
  .schools-logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Accreditation badges */
.about-accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.badge-accred {
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
}

/* ── Schools expandable ── */
.schools-hidden {
  display: none;
}
.schools-expanded .schools-hidden {
  display: flex;
  animation: fadeIn .3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
.schools-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.btn-schools-toggle {
  background: var(--white);
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-en);
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-schools-toggle:hover {
  background: var(--green);
  color: var(--white);
}
