/* Bracken Kidz – matching the uploaded design collages
   Vibrant purples, pinks, oranges + smiling-kids energy */

:root {
  --purple: #7c3aed;
  --purple-deep: #5b21b6;
  --purple-dark: #1e1b4b;
  --pink: #ec4899;
  --pink-hot: #db2777;
  --orange: #f97316;
  --orange-btn: #fb923c;
  --yellow: #fbbf24;
  --green: #22c55e;
  --teal: #14b8a6;
  --blue: #3b82f6;
  --navy: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --bg: #fdf4ff;
  --radius: 18px;
  --font: 'Nunito', system-ui, sans-serif;
  --display: 'Poppins', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16.5px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--pink); }

.container { width: min(1180px, 94%); margin-inline: auto; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--purple-dark);
  color: #e2e8f0;
  font-size: 0.88rem;
  padding: 0.5rem 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.top-left { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.top-left a { color: #e2e8f0; }
.top-left a:hover { color: white; }
.top-social { display: flex; align-items: center; gap: 0.6rem; }
.top-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white; font-size: 0.85rem;
}
.top-social a:hover { background: var(--pink); }

/* ===== HEADER ===== */
.site-header {
  background: white;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0; gap: 1rem;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-mark { display: flex; align-items: baseline; gap: 0.15rem; }
.logo-bracken {
  font-family: var(--display);
  font-weight: 700; font-size: 1.15rem;
  color: var(--purple);
}
.logo-kidz {
  font-family: var(--display);
  font-weight: 800; font-size: 1.55rem;
  background: linear-gradient(90deg, #22c55e, #3b82f6, #ec4899, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sun { font-size: 1.1rem; margin-left: 2px; }
.logo-tag {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; color: var(--muted);
  margin-top: 1px;
}

.main-nav {
  display: flex; align-items: center; gap: 1.15rem;
  font-weight: 700; font-size: 0.92rem;
}
.main-nav a { color: var(--text); }
.main-nav a:hover, .main-nav a.active { color: var(--pink); }
.main-nav a.active { border-bottom: 3px solid var(--orange); padding-bottom: 2px; }

.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--navy);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.65rem 1.35rem; border-radius: 999px;
  font-weight: 800; font-family: var(--font); font-size: 0.92rem;
  border: 2px solid transparent; cursor: pointer; transition: 0.25s;
  text-decoration: none !important;
}
.btn-enrol {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: white !important;
  box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}
.btn-enrol:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(249,115,22,0.5); color: white !important; }
.btn-whatsapp {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white !important;
  box-shadow: 0 4px 14px rgba(236,72,153,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); color: white !important; }
.btn-call {
  background: white;
  border: 2px solid #e2e8f0;
  color: var(--text) !important;
}
.btn-call:hover { border-color: var(--purple); color: var(--purple) !important; }
.btn-green {
  background: #22c55e; color: white !important;
}
.btn-green:hover { background: #16a34a; color: white !important; }
.btn-outline-purple {
  background: transparent; border: 2px solid var(--purple); color: var(--purple) !important;
}
.btn-outline-purple:hover { background: var(--purple); color: white !important; }
.btn-outline-white {
  background: transparent; border: 2px solid white; color: white !important;
}
.btn-outline-white:hover { background: white; color: var(--purple) !important; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1.05rem; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(165deg, #fdf4ff 0%, #fce7f3 40%, #fff7ed 100%);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1rem;
}
.c-green { color: #16a34a; }
.c-pink { color: #db2777; }
.c-purple { color: #7c3aed; }
.hero-sub {
  font-size: 1.12rem; color: var(--muted);
  max-width: 440px; margin-bottom: 1.3rem;
}
.hero-checks {
  list-style: none; margin-bottom: 1.8rem;
}
.hero-checks li {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.28rem 0; font-weight: 700; font-size: 0.98rem;
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  color: white; font-size: 0.75rem; font-weight: 900;
}
.check.pink { background: #ec4899; }
.check.green { background: #22c55e; }
.check.blue { background: #3b82f6; }
.check.orange { background: #f97316; }
.check.purple { background: #7c3aed; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-visual { position: relative; }
.hero-photo-wrap { position: relative; }
.hero-img {
  width: 100%; border-radius: 24px;
  box-shadow: 0 20px 50px rgba(124,58,237,0.18);
  object-fit: cover; aspect-ratio: 4/3;
}
.bubble-purple {
  position: absolute; left: -10px; bottom: 18%;
  background: #5b21b6; color: white;
  padding: 1rem 1.3rem; border-radius: 18px;
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; line-height: 1.3;
  box-shadow: 0 10px 30px rgba(91,33,182,0.4);
  max-width: 160px;
}
.bubble-purple .heart { font-size: 1.3rem; }
.bubble-yellow {
  position: absolute; right: 10px; bottom: 8%;
  background: #fbbf24; color: var(--navy);
  padding: 0.7rem 1.1rem; border-radius: 14px;
  font-weight: 800; font-size: 0.9rem; line-height: 1.3;
  box-shadow: 0 8px 20px rgba(251,191,36,0.4);
  max-width: 180px;
}

/* ===== FEATURES WITH PHOTOS ===== */
.features-strip {
  padding: 0 0 3rem;
  margin-top: -1.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.feat-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  transition: transform 0.25s;
}
.feat-card:hover { transform: translateY(-5px); }
.feat-img { height: 110px; overflow: hidden; }
.feat-img img { width: 100%; height: 100%; object-fit: cover; }
.feat-body { padding: 0.9rem 0.8rem 1.1rem; text-align: center; }
.feat-body h3 {
  font-family: var(--display); font-size: 0.78rem;
  font-weight: 800; letter-spacing: 0.03em;
  margin: 0.3rem 0 0.35rem; color: var(--navy);
}
.feat-body p { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }
.feat-icon { font-size: 1.3rem; }
.pink-bg { background: #fdf2f8; }
.green-bg { background: #f0fdf4; }
.blue-bg { background: #eff6ff; }
.orange-bg { background: #fff7ed; }
.purple-bg { background: #faf5ff; }
.teal-bg { background: #f0fdfa; }

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(180deg, #5b21b6 0%, #7c3aed 100%);
  color: white;
  padding: 4rem 0;
  border-radius: 40px 40px 0 0;
  margin-top: 1rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 1rem;
}
.about-text p {
  opacity: 0.92; font-size: 1.05rem;
  margin-bottom: 1.6rem; max-width: 420px;
}
.about-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.photo-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.photo-card img {
  width: 100%; height: 140px; object-fit: cover;
}
.photo-label {
  display: block; padding: 0.55rem 0.7rem;
  font-weight: 800; font-size: 0.82rem;
  color: var(--navy); text-align: center;
}

/* ===== PASTEL OFFER ROW ===== */
.offer-pastel {
  background: #fdf4ff;
  padding: 2.5rem 0 3rem;
}
.pastel-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}
.pastel-item {
  border-radius: 16px;
  padding: 1.2rem 0.9rem;
  text-align: center;
}
.pastel-item h4 {
  font-family: var(--display); font-size: 0.9rem;
  font-weight: 800; margin: 0.4rem 0 0.35rem; color: var(--navy);
}
.pastel-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }
.p-icon { font-size: 1.5rem; }
.pastel-item.pink { background: #fce7f3; }
.pastel-item.green { background: #dcfce7; }
.pastel-item.yellow { background: #fef9c3; }
.pastel-item.blue { background: #e0f2fe; }
.pastel-item.purple { background: #f3e8ff; }
.pastel-item.teal { background: #ccfbf1; }

/* ===== EXTRA LESSONS ===== */
.extra-section {
  padding: 4rem 0;
  background: white;
}
.extra-header h2 {
  font-family: var(--display);
  font-size: 2.1rem; font-weight: 800; color: var(--navy);
}
.tagline { font-size: 1.15rem; font-weight: 700; margin: 0.4rem 0 0.8rem; }
.subjects-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 2rem 0 2.5rem;
}
.subject-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  border: 1px solid #f1e7ff;
}
.subject-card img {
  width: 100%; height: 160px; object-fit: cover;
}
.subj-badge {
  position: absolute; top: 12px; left: 12px;
  color: white; font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.05em; padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.subj-badge.afrikaans { background: #16a34a; }
.subj-badge.english { background: #db2777; }
.subj-badge.maths { background: #2563eb; }
.subj-body { padding: 1.1rem 1.2rem 1.3rem; }
.subj-body h3 {
  font-family: var(--display); font-size: 1.15rem;
  font-weight: 800; color: var(--navy); margin-bottom: 0.35rem;
}
.subj-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.7rem; }
.free-badge {
  display: inline-block; background: #dcfce7; color: #166534;
  font-weight: 800; font-size: 0.78rem;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.price-badge {
  display: inline-block; background: #f3e8ff; color: #6b21a8;
  font-weight: 800; font-size: 0.78rem;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}

.free-afrikaans-box {
  background: linear-gradient(135deg, #fdf4ff, #fce7f3);
  border: 3px solid var(--purple);
  border-radius: 22px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.free-left h3 {
  font-family: var(--display); font-size: 1.4rem;
  font-weight: 800; color: var(--navy); margin-bottom: 0.6rem;
}
.free-left ul { list-style: none; margin-top: 0.8rem; }
.free-left li { padding: 0.3rem 0; font-weight: 700; }
.free-right {
  display: flex; flex-direction: column; gap: 0.7rem;
}

/* ===== FEES ===== */
.fees-section {
  padding: 4rem 0;
  background: #fdf4ff;
  text-align: center;
}
.section-label {
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 0.4rem;
}
.fees-section h2 {
  font-family: var(--display); font-size: 2rem;
  font-weight: 800; color: var(--navy);
}
.section-intro { color: var(--muted); margin: 0.5rem auto 2rem; max-width: 500px; }
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 2.4rem;
  max-width: 520px;
  margin: 0 auto;
  border: 3px solid var(--purple);
  box-shadow: 0 15px 40px rgba(124,58,237,0.12);
  text-align: center;
}
.year-badge {
  display: inline-block; background: var(--yellow);
  color: var(--navy); font-weight: 900; font-size: 0.85rem;
  padding: 0.3rem 0.9rem; border-radius: 999px; margin-bottom: 0.7rem;
}
.pricing-card h3 {
  font-family: var(--display); font-size: 1.35rem;
  font-weight: 800; color: var(--navy); margin-bottom: 0.5rem;
}
.price {
  font-family: var(--display); font-size: 3rem;
  font-weight: 800; color: var(--purple); line-height: 1;
}
.price span { font-size: 1.05rem; font-weight: 600; color: var(--muted); }
.price-note { color: var(--muted); font-size: 0.92rem; margin: 0.7rem 0 1.3rem; }
.price-list {
  list-style: none; text-align: left;
  max-width: 380px; margin: 0 auto 1.3rem;
}
.price-list li {
  padding: 0.42rem 0; font-weight: 700;
  border-bottom: 1px solid #f3e8ff; font-size: 0.95rem;
}
.price-list .highlight {
  background: #fce7f3; margin: 0.4rem -0.8rem;
  padding: 0.65rem 0.8rem !important; border-radius: 12px;
  border-bottom: none !important;
}
.extra-note { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.4rem; }
.price-ctas {
  display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center;
}
.reg-note { margin-top: 1.1rem; font-size: 0.92rem; color: var(--muted); }

/* ===== TRUST ===== */
.trust-bar {
  background: var(--purple-dark);
  color: white; padding: 2.5rem 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; text-align: center;
}
.trust-item span { font-size: 1.9rem; display: block; margin-bottom: 0.4rem; }
.trust-item h4 {
  font-family: var(--display); font-size: 0.95rem;
  font-weight: 700; color: white;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: white; text-align: center; padding: 4rem 0;
}
.final-cta h2 {
  font-family: var(--display); font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; line-height: 1.25; margin-bottom: 0.7rem;
}
.final-cta p { opacity: 0.9; margin-bottom: 1.8rem; }
.final-buttons {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a; color: #94a3b8; padding-top: 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem; padding-bottom: 2.5rem;
}
.footer-brand .logo-bracken { color: #c4b5fd; }
.footer-brand .logo-kidz {
  background: linear-gradient(90deg, #4ade80, #60a5fa, #f472b6, #fb923c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-brand p { margin: 0.6rem 0 1rem; font-size: 0.95rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: #cbd5e1; font-weight: 700; }
.footer-social a:hover { color: white; }
.footer-links h4, .footer-contact h4 {
  color: white; font-family: var(--display);
  font-size: 1rem; margin-bottom: 0.8rem;
}
.footer-links a {
  display: block; color: #94a3b8; padding: 0.25rem 0; font-weight: 600;
}
.footer-links a:hover { color: white; }
.footer-contact a { color: #cbd5e1; }
.footer-contact a:hover { color: white; }
.footer-contact p { margin-bottom: 0.45rem; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid #1e293b; padding: 1.1rem 0;
  text-align: center; font-size: 0.88rem; opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .pastel-row { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-checks { display: inline-block; text-align: left; }
  .hero-ctas { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text { text-align: center; }
  .about-text p { margin-inline: auto; }
  .about-ctas { justify-content: center; }
  .subjects-row { grid-template-columns: 1fr; }
  .free-afrikaans-box { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; padding: 1.2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1); gap: 0.7rem;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pastel-row { grid-template-columns: repeat(2, 1fr); }
  .bubble-purple, .bubble-yellow { font-size: 0.85rem; padding: 0.7rem 0.9rem; }
}

@media (max-width: 480px) {
  .features-grid, .pastel-row { grid-template-columns: 1fr; }
  .price { font-size: 2.4rem; }
}

/* ===== BLOG STYLES ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: transform 0.25s;
  border: 1px solid #f3e8ff;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-img { position: relative; height: 180px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  color: white; font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.04em; padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.blog-cat.academic { background: #2563eb; }
.blog-cat.social { background: #16a34a; }
.blog-cat.parents { background: #db2777; }
.blog-body { padding: 1.3rem 1.3rem 1.5rem; }
.blog-body h2 {
  font-family: var(--display); font-size: 1.15rem;
  font-weight: 800; color: var(--navy); margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-body h2 a { color: var(--navy); }
.blog-body h2 a:hover { color: var(--purple); }
.blog-body p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }
.blog-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; font-weight: 700; color: var(--muted);
}
.blog-link { color: var(--purple); }
.blog-link:hover { color: var(--pink); }

.blog-card.mini {
  padding: 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
  text-decoration: none;
}
.blog-card.mini h4 {
  font-family: var(--display); font-size: 0.95rem;
  font-weight: 800; color: var(--navy); margin: 0;
}
.blog-card.mini span { color: var(--purple); font-weight: 800; }

/* Article page */
.blog-article { padding: 2.5rem 0 4rem; background: #fdf4ff; }
.article-wrap { max-width: 780px; }
.back-link {
  display: inline-block; font-weight: 700; color: var(--purple);
  margin-bottom: 1.2rem; font-size: 0.95rem;
}
.article-wrap h1 {
  font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--navy); line-height: 1.2;
  margin: 0.6rem 0 0.5rem;
}
.article-meta { color: var(--muted); font-weight: 600; margin-bottom: 1.5rem; }
.article-hero {
  width: 100%; border-radius: 18px; margin-bottom: 2rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1); aspect-ratio: 16/9; object-fit: cover;
}
.article-content h2 {
  font-family: var(--display); font-size: 1.35rem;
  font-weight: 800; color: var(--navy); margin: 1.8rem 0 0.7rem;
}
.article-content p {
  margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.7; color: var(--text);
}
.article-content ul {
  margin: 1rem 0 1.5rem 1.2rem;
}
.article-content li {
  margin-bottom: 0.45rem; font-size: 1.02rem; line-height: 1.55;
}
.article-cta {
  background: linear-gradient(135deg, #fdf4ff, #fce7f3);
  border: 3px solid var(--purple);
  border-radius: 20px;
  padding: 1.8rem;
  margin: 2.5rem 0;
  text-align: center;
}
.article-cta h3 {
  font-family: var(--display); font-size: 1.3rem;
  font-weight: 800; color: var(--navy); margin-bottom: 0.5rem;
}
.article-cta p { color: var(--muted); margin-bottom: 1.2rem; }
.article-cta .hero-ctas { justify-content: center; }
.more-articles { margin-top: 2.5rem; }
.more-articles h3 {
  font-family: var(--display); font-size: 1.2rem;
  font-weight: 800; color: var(--navy); margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Afrikaans feature banner */
.afrikaans-banner {
  background: linear-gradient(90deg, #7c3aed, #db2777);
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
}
.afrikaans-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0;
  text-align: center;
}
.afrikaans-banner a { color: #fef08a; font-weight: 800; }
.afrikaans-banner a:hover { color: white; }
.free-afrikaans-box.mega { border-width: 4px; padding: 2.2rem; }
.timetable {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.time-card {
  background: white;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border: 2px solid #f3e8ff;
}
.time-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.time-card p { margin-bottom: 0.7rem; color: var(--text); font-weight: 600; }
.highlight-time {
  background: linear-gradient(180deg, #fdf4ff, #fce7f3);
  border-color: var(--purple);
}
.form-embed {
  background: white;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(124,58,237,0.12);
  max-width: 860px;
  margin: 0 auto;
  min-height: 200px;
}
@media (max-width: 900px) {
  .timetable { grid-template-columns: 1fr; }
}
