/* ============================================================
   SuperKid – Main Stylesheet
   Fonts: Poppins (Google Fonts), Raleway, Lato
   Colours extracted from https://www.superkid.co.in/
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Raleway:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --blue:        #00B0DC;
  --yellow:      #FCC103;
  --yellow-bright: #FDD63D;
  --dark:        #383D31;
  --body-text:   #545454;
  --light-bg:    #FFF5F0;
  --white:       #FFFFFF;
  --footer-bg:   #000325;
  --cta-blue:    #3D9BE9;
  --navy:        #324158;
  --card-border: #E8E8E8;
  --faq-line:    #FCC103;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Lato', Arial, sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

.text-blue   { color: var(--blue); }
.text-yellow { color: var(--yellow); }
.text-white  { color: var(--white); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-yellow {
  background: var(--yellow);
  color: #1a1a1a;
}

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

/* ── Header / Navigation ──────────────────────────────────── */
header {
  background: var(--light-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo img {
  height: 70px;
  width: auto;
}

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

.nav-links > li > a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  position: relative;
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--blue); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  z-index: 100;
}

/* Invisible bridge that fills the gap so hover is never lost */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover {
  background: var(--light-bg);
  color: var(--blue);
}
.dropdown:hover .dropdown-menu { display: block; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
}

/* ── Rotating Text Animation ─────────────────────────────── */
.hero-rotating-wrapper {
  display: block;
  overflow: hidden;           /* clips the horizontal slide */
  margin-top: 6px;
}

.hero-rotating-word {
  display: block;
  color: var(--blue);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  animation: slideWordIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-rotating-word.slide-out {
  animation: slideWordOut 0.38s cubic-bezier(0.55, 0, 0.45, 1) forwards;
}

@keyframes slideWordIn {
  from { transform: translateX(-80px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

@keyframes slideWordOut {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(80px); opacity: 0; }
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 60px 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 520px;
}

.hero-content { flex: 0 0 48%; }

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-content h1 .blue   { color: var(--blue); }
.hero-content h1 .yellow { color: var(--yellow); }

.hero-content .hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--body-text);
  margin-bottom: 32px;
}
.hero-content .hero-sub strong { font-weight: 700; }

.hero-image {
  flex: 0 0 48%;
  display: flex;
  justify-content: flex-end;
}
.hero-image img {
  max-width: 560px;
  width: 100%;
  border-radius: 12px;
}

/* ── WHO ARE WE Section ───────────────────────────────────── */
.who-are-we {
  background: var(--light-bg);
  padding: 80px 40px;
}

.who-are-we-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 32px;
}

.who-are-we .intro-text {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body-text);
}

.who-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.who-grid .who-img {
  flex: 0 0 48%;
}
.who-grid .who-img img {
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.who-grid .who-text {
  flex: 1;
}
.who-grid .who-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--dark);
}
.who-grid .who-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 28px;
}

/* ── Training Programs Section ────────────────────────────── */
.training-programs {
  background: var(--white);
  padding: 80px 40px;
  text-align: center;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.course-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.course-card-label {
  background: var(--yellow);
  padding: 14px 16px;
  margin: 0 16px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: center;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -10px;        /* overlaps the image slightly, like the original */
  margin-bottom: -10px;
}

.course-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.course-card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--body-text);
  flex: 1;
  text-align: center;
}
.course-card-body .btn {
  align-self: center;
  font-size: 0.8rem;
  padding: 10px 24px;
}

/* Social proof strip */
.social-proof {
  background: var(--white);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
}
.social-proof p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}

/* ── Features / Enquire Section ───────────────────────────── */
.features-section {
  background: var(--white);
  padding: 60px 0;
}

.features-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Decorative dot grids */
.dot-grid {
  display: grid;
  gap: 10px;
  flex-shrink: 0;
  align-self: center;
}
.dot-grid.yellow { grid-template-columns: repeat(5, 10px); }
.dot-grid.blue   { grid-template-columns: repeat(5, 10px); }
.dot-grid .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-grid.yellow .dot { background: var(--yellow); }
.dot-grid.blue   .dot { background: var(--cta-blue); opacity: 0.7; }

/* Rounded inner card */
.features-card {
  flex: 1;
  background: var(--light-bg);
  border-radius: 24px;
  padding: 56px 48px;
  min-width: 0;
}

.features-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.features-left { flex: 0 0 38%; }
.features-left h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--body-text);
  margin-bottom: 28px;
}
.features-left h2 .blue   { color: var(--blue); }
.features-left h2 .yellow { color: var(--yellow); }

.features-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.feature-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.feature-item p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--body-text);
  line-height: 1.4;
}

/* ── Meet Our Teacher Section ─────────────────────────────── */
.teacher-section {
  background: var(--yellow-bright);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.teacher-section .section-title {
  color: var(--dark);
  margin-bottom: 40px;
}

/* decorative blue dot grids inside teacher section */
.teacher-section .dot-grid {
  position: absolute;
}
.teacher-section .dot-grid.blue-left  { top: 40px;    left: 40px; }
.teacher-section .dot-grid.blue-right { bottom: 40px; right: 40px; }

.teacher-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  text-align: center;
}

.teacher-card .teacher-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--yellow);
}
.teacher-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.teacher-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--body-text);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--cta-blue);
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 60px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.cta-banner .cta-image {
  flex: 0 0 auto;
  align-self: flex-end;
}
.cta-banner .cta-image img {
  height: 300px;
  width: auto;
  object-fit: contain;
}

.cta-banner .cta-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 60px 0;
  flex-wrap: wrap;
}
.cta-banner .cta-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.cta-banner .cta-content h2 .yellow { color: var(--yellow-bright); }

/* ── FAQ / "Explore more" Section ────────────────────────── */
.faq-section {
  background: var(--light-bg);
  padding: 80px 40px;
}

.faq-section .section-title {
  color: var(--dark);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.faq-section .section-subtitle {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--body-text);
  text-align: center;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 2px solid var(--faq-line);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question:hover { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.3s;
  color: var(--dark);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 8px 20px;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--body-text);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--footer-bg);
  padding: 60px 40px 40px;
  color: var(--white);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand .footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a {
  color: var(--blue);
  text-decoration: underline;
}
.footer-contact a:hover { color: var(--yellow); }

/* ── Course/Inner Page Hero ───────────────────────────────── */
/* ── Coding with Python: Page Hero ──────────────────────────── */
.page-hero {
  background: var(--light-bg);
  padding: 80px 40px 100px;
}
.page-hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.page-hero-image {
  flex: 0 0 46%;
  min-width: 280px;
}
.page-hero-image img {
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  border: 1.5px solid #d8d8d8;
}
.page-hero-text {
  flex: 1;
  min-width: 280px;
}
.page-hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}
.page-hero-text h1 .text-dark { color: var(--dark); }
.page-hero-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 32px;
  max-width: 540px;
}
.text-dark { color: var(--dark); }

/* ── Tutor dark banner ─────────────────────────────────────── */
.tutor-banner {
  background: var(--navy);
  padding: 36px 40px;
  max-width: 1200px;
  margin: -40px auto 0;
  border-radius: 14px;
  position: relative;
  z-index: 2;
}
.tutor-banner-inner {
  color: #dee2da;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

/* ── Adventure section (image left, text right) ────────────── */
.adventure-section {
  background: var(--light-bg);
  padding: 80px 40px;
}
.adventure-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.adventure-image {
  flex: 0 0 46%;
  min-width: 280px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.adventure-image img { width: 100%; }
.adventure-text {
  flex: 1;
  min-width: 280px;
}
.adventure-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 22px;
}
.adventure-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 18px;
}
.adventure-text .btn { margin-top: 12px; }

/* ── Upcoming Classes card ─────────────────────────────────── */
.upcoming-section {
  background: var(--white);
  padding: 60px 40px 80px;
}
.upcoming-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--light-bg);
  border-radius: 22px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  flex-wrap: wrap;
}
.upcoming-image {
  flex: 0 0 42%;
  min-width: 260px;
}
.upcoming-image img {
  width: 100%;
  display: block;
}
.upcoming-text {
  flex: 1;
  min-width: 280px;
  padding: 40px 48px 40px 0;
}
.upcoming-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 18px;
}
.upcoming-text p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 14px;
}
.upcoming-text .batch-line {
  font-size: 1rem;
  margin: 18px 0 24px;
  color: var(--dark);
}

/* ── Yellow CTA banner ─────────────────────────────────────── */
.yellow-cta {
  padding: 40px 40px 60px;
  background: var(--white);
}
.yellow-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--yellow);
  border-radius: 14px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.yellow-cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
  flex: 1;
  min-width: 260px;
}
.btn-blue {
  background: var(--cta-blue);
  color: #fff;
}
.btn-blue:hover { opacity: 0.92; }

/* ── Kickstart section ─────────────────────────────────────── */
.kickstart-section {
  background: var(--light-bg);
  padding: 80px 40px;
}
.kickstart-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.kickstart-text {
  flex: 1;
  min-width: 280px;
}
.kickstart-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 22px;
}
.kickstart-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 18px;
}
.kickstart-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.kickstart-cta .batch-line { font-size: 1rem; color: var(--dark); }
.kickstart-image {
  flex: 0 0 44%;
  min-width: 280px;
}
.kickstart-image img { width: 100%; }

/* ── Six-Week Breakdown ────────────────────────────────────── */
.sixweek-section {
  background: #f7f7f7;
  padding: 80px 40px;
}
.sixweek-title {
  max-width: 1200px;
  margin: 0 auto 56px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  color: var(--dark);
}
.sixweek-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}
.week-block { }
.week-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}
.week-accordion { display: flex; flex-direction: column; gap: 10px; }
.week-item {
  background: #efefef;
  border-radius: 6px;
  overflow: hidden;
}
.week-item.open { background: #e8e8e8; }
.week-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}
.week-q span {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  transition: transform 0.2s;
}
.week-item.open .week-q span { transform: rotate(45deg); }
.week-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.week-item.open .week-a {
  max-height: 200px;
  padding: 0 20px 16px;
}
.week-a p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--body-text);
}
.week-a code {
  background: #ddd;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.85rem;
}

/* ── Enrollment Form (coding page) ─────────────────────────── */
.enroll-section {
  background: var(--light-bg);
  padding: 72px 40px 90px;
}
.enroll-section .section-title {
  text-align: center;
  color: var(--blue);
  margin-bottom: 40px;
}
.enroll-title {
  max-width: 1200px;
  margin: 0 auto 48px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}
.enroll-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.enroll-form {
  flex: 1;
  min-width: 300px;
  max-width: 520px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 0;
}
.enroll-form .form-group { gap: 8px; }
.enroll-form label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.enroll-form input,
.enroll-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.enroll-form input:focus,
.enroll-form select:focus { border-color: var(--blue); }
.form-phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  margin: 0;
}
.form-full { grid-column: 1 / -1; width: 100%; }
.form-submit {
  width: 100%;
  padding: 14px 32px;
  margin-top: 8px;
  border-radius: 2px;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.enroll-illustration {
  flex: 0 0 42%;
  min-width: 280px;
}
.enroll-illustration img { width: 100%; }

/* ── FAQs label + main heading ─────────────────────────────── */
.faqs-label {
  max-width: 1200px;
  margin: 0 auto 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}
.faq-main-heading {
  max-width: 1200px;
  margin: 0 auto 12px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--dark);
}
.faq-section .section-subtitle {
  max-width: 1100px;
  margin: 0 auto 40px;
}

/* ── Course Features Grid ─────────────────────────────────── */
.course-features {
  background: var(--white);
  padding: 80px 40px;
}
.course-features .section-title,
.course-features-title {
  text-align: center;
  margin-bottom: 56px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 800;
  color: var(--dark);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.course-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.course-feature-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border: 1px solid #ececec;
}
.course-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  text-align: center;
}
.course-feature-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--body-text);
  text-align: justify;
}

/* ── Enrollment Form ──────────────────────────────────────── */
.enroll-section {
  background: var(--light-bg);
  padding: 80px 40px;
}
.enroll-section .section-title {
  text-align: center;
  color: var(--blue);
  margin-bottom: 40px;
}
.enroll-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  color: var(--dark);
}
.form-group input:focus,
.form-group select:focus { border-color: var(--blue); }
.form-full { grid-column: 1 / -1; }
.enroll-form .btn { width: 100%; text-align: center; margin-top: 8px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .course-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }

  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    min-height: auto;
  }
  .hero-content, .hero-image { flex: none; width: 100%; }
  .hero-image { justify-content: center; }

  .who-grid { flex-direction: column; }
  .features-inner { flex-direction: column; }
  .features-right { grid-template-columns: 1fr 1fr; }

  .cta-banner {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: auto;
  }
  .cta-banner .cta-image img { height: 200px; }
  .cta-banner .cta-content {
    flex-direction: column;
    text-align: center;
    padding: 0 0 40px;
    gap: 24px;
  }

  .courses-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .page-hero { flex-direction: column; padding: 40px 20px; }

  .footer-inner { flex-direction: column; }

  .social-proof { flex-direction: column; text-align: center; gap: 16px; }

  .form-row { grid-template-columns: 1fr; }

  .course-features-grid { grid-template-columns: 1fr; }

  .features-outer .dot-grid { display: none; }
}

@media (max-width: 900px) {
  .sixweek-grid { grid-template-columns: 1fr; gap: 40px; }
  .upcoming-text { padding: 32px; }
  .upcoming-image, .upcoming-text { flex: 1 1 100%; }
  .enroll-illustration { flex: 1 1 100%; order: -1; }
  .kickstart-image { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .courses-grid { grid-template-columns: 1fr; }
  .features-right { grid-template-columns: 1fr; }

  .hero-content h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.2rem; }

  .who-are-we, .training-programs, .features-section,
  .teacher-section, .faq-section, .enroll-section,
  .course-features {
    padding: 48px 16px;
  }
  footer { padding: 40px 16px; }
}
