/* ==========================================================
   Impala Kids — Public Website Stylesheet
   Palette: Teal #12b5c9 · Orange #f59a4a · Ink #1c2b3a · Cream #fefcf7
   ========================================================== */

:root {
  --teal: #12b5c9;
  --teal-dark: #0d8fa0;
  --orange: #f59a4a;
  --orange-dark: #e07f2c;
  --ink: #1c2b3a;
  --muted: #5b6b7a;
  --cream: #fefcf7;
  --panel: #ffffff;
  --border: #eef0e9;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 12px 32px rgba(28, 43, 58, 0.08);
  --font-display: 'Cairo', 'Tahoma', sans-serif;
  --font-body: 'Tajawal', 'Tahoma', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 12px;
  line-height: 1.3;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(245,154,74,.35); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 252, 247, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 14.5px; color: var(--muted); }
.nav-links a:hover { color: var(--teal-dark); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 60px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18,181,201,.12);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  color: var(--ink);
}
.hero h1 span { color: var(--orange); }
.hero p.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art .ring {
  position: absolute;
  border: 10px solid var(--teal);
  border-radius: 50%;
  opacity: .18;
}
.hero-art .ring.r1 { width: 340px; height: 340px; border-color: var(--teal); }
.hero-art .ring.r2 { width: 240px; height: 240px; border-color: var(--orange); opacity: .22; }
.hero-art img { position: relative; z-index: 2; max-width: 340px; }

/* ---------------- Stats strip ---------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}
.stats .stat { text-align: center; }
.stats .stat b { display: block; font-family: var(--font-display); font-size: 30px; color: var(--teal-dark); }
.stats .stat span { color: var(--muted); font-size: 13.5px; }

/* ---------------- Sections ---------------- */
.section { padding: 70px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 42px; }
.section-head .eyebrow { margin-inline: auto; }
.section-head p { color: var(--muted); }

/* Programs / Plans cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,181,201,.12); color: var(--teal-dark);
  font-size: 26px; margin-bottom: 18px;
}
.card h3 { font-size: 19px; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }

.card.featured { border: 2px solid var(--orange); position: relative; }
.card.featured .badge {
  position: absolute; top: -14px; right: 26px;
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
}
.card .price { font-family: var(--font-display); font-size: 34px; color: var(--ink); margin: 14px 0; }
.card .price span { font-size: 14px; color: var(--muted); font-weight: 500; }
.card ul { list-style: none; padding: 0; margin: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.card ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.card ul li .ms { color: var(--teal); font-size: 18px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid img { border-radius: var(--radius-md); aspect-ratio: 1; object-fit: cover; }

/* Testimonials */
.testimonial {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
}
.testimonial p { font-size: 15px; color: var(--ink); }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial .who .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--teal);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band p { margin: 0; opacity: .9; }
.cta-band .btn-primary { background: #fff; color: var(--teal-dark); box-shadow: none; }

/* Footer */
.site-footer { background: var(--ink); color: #cfd8e0; padding: 50px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 30px; }
.footer-grid h4 { color: #fff; font-size: 14.5px; }
.footer-grid a { color: #9fb0bd; font-size: 13.5px; display: block; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 30px; padding-top: 20px; text-align: center; font-size: 12.5px; color: #7e8fa0; }

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
