/* ============================================================
   ASODA – Accra School of Dance
   styles.css  |  Production Stylesheet
   ============================================================ */

/* ── Google Fonts are loaded in index.html ── */

/* ────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (Design Tokens)
──────────────────────────────────────────── */
:root {
  /* Brand Colours */
  --gold:        #D4A017;
  --gold-light:  #FFD700;
  --green:       #006B3F;
  --green-dark:  #004d2c;
  --crimson:     #CE1126;
  --dark:        #0F0F0F;
  --charcoal:    #1A1A1A;
  --off-white:   #FAF8F3;
  --slate:       #F0EDE6;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-accent:  'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-padding: 6rem 1.5rem;
  --max-width: 1280px;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ────────────────────────────────────────────
   2. RESET & BASE
──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ────────────────────────────────────────────
   3. UTILITY CLASSES
──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: block;
  font-size: 0.6875rem;      /* 11px */
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
}

.gold-divider {
  width: 4rem;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

/* ────────────────────────────────────────────
   4. BUTTONS / CTAs
──────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  padding: 1rem 2.5rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-size: 0.8125rem;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 500;
  padding: 0.875rem 2.25rem;
  letter-spacing: 0.06rem;
  font-size: 0.8125rem;
  transition: border-color var(--transition-base), color var(--transition-base);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ────────────────────────────────────────────
   5. SCROLL ANIMATIONS
──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ────────────────────────────────────────────
   6. NAVIGATION
──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 3rem;
  background: rgba(15, 15, 15, 0.3);
  backdrop-filter: blur(4px);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.navbar.scrolled {
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar__logo { height: 3.5rem; width: auto; }
.navbar__brand-text { line-height: 1.2; }
.navbar__brand-name {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15rem;
}
.navbar__brand-sub {
  display: block;
  color: var(--gold);
  font-size: 0.6875rem;
  letter-spacing: 0.12rem;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  transition: color var(--transition-base);
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.navbar__link:hover { color: #fff; }
.navbar__link:hover::after { width: 100%; }
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Mobile nav */
.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(15, 15, 15, 0.97);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.navbar__mobile.open {
  display: flex;
  max-height: 400px;
  padding: 1rem 1.5rem;
}
.navbar__mobile-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition-base);
}
.navbar__mobile-link:hover { color: var(--gold); }

/* ────────────────────────────────────────────
   7. HERO
──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 15, 0.88) 0%,
    rgba(0, 107, 63, 0.45) 60%,
    rgba(212, 160, 23, 0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 4rem;
}
.hero__inner { max-width: 48rem; }
.hero__badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.375rem 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
}
.hero__title span { color: var(--gold-light); }
.hero__subtitle {
  color: rgba(255, 255, 255, 0.75);
  margin: 1.5rem 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 36rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
}
.hero__stat-number {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6875rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.hero__scroll-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ────────────────────────────────────────────
   8. PROBLEM SECTION
──────────────────────────────────────────── */
.problem {
  background: var(--charcoal);
  color: #fff;
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206,17,38,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.problem__body { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1.25rem; }
.problem__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.problem__card {
  padding: 1.5rem;
  border-radius: 4px;
}
.problem__card--gold   { background: rgba(212,160,23,0.1);  border: 1px solid rgba(212,160,23,0.2); }
.problem__card--red    { background: rgba(206,17,38,0.08);  border: 1px solid rgba(206,17,38,0.2); }
.problem__card--green  { background: rgba(0,107,63,0.15);   border: 1px solid rgba(0,107,63,0.3); }
.problem__card--white  { background: rgba(255,255,255,0.04);border: 1px solid rgba(255,255,255,0.1); }
.problem__card-icon    { font-size: 1.75rem; margin-bottom: 0.75rem; }
.problem__card-title   { color: #fff; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.9375rem; }
.problem__card-text    { color: rgba(255,255,255,0.5); font-size: 0.8125rem; line-height: 1.6; }

/* ────────────────────────────────────────────
   9. ABOUT
──────────────────────────────────────────── */
.about {
  background: var(--off-white);
  padding: var(--section-padding);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__image-wrap::after {
  content: '';
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 100%; height: 100%;
  border: 3px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}
.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 32rem;
  object-fit: cover;
  object-position: top;
}
.about__image-tag {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  z-index: 2;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
}
.about__body { color: #4b5563; line-height: 1.8; margin-bottom: 1rem; }
.about__quote {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  font-style: italic;
  font-size: 1.125rem;
  color: #374151;
  margin: 1.5rem 0 2rem;
}
.about__pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.about__pillar {
  text-align: center;
  padding: 1rem;
  background: var(--slate);
}
.about__pillar--gold   { border-top: 3px solid var(--gold); }
.about__pillar--red    { border-top: 3px solid var(--crimson); }
.about__pillar--green  { border-top: 3px solid var(--green); }
.about__pillar-name {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--green);
  display: block;
}
.about__pillar-desc { font-size: 0.75rem; color: #6b7280; margin-top: 0.25rem; }

/* ────────────────────────────────────────────
   10. COURSES
──────────────────────────────────────────── */
.courses {
  background: var(--slate);
  padding: var(--section-padding);
}
.courses__intro {
  text-align: center;
  margin-bottom: 4rem;
}
.courses__intro p { color: #6b7280; margin-top: 1rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.courses__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.course-card {
  background: #fff;
  border-bottom: 4px solid transparent;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}
.course-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.course-card__image-wrap { overflow: hidden; }
.course-card__image {
  height: 13.75rem;
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.course-card:hover .course-card__image { transform: scale(1.07); }
.course-card__body { padding: 1.5rem; }
.course-card__icon {
  width: 3.125rem; height: 3.125rem;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.course-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.course-card__desc { color: #6b7280; font-size: 0.875rem; line-height: 1.65; }
.course-card__level {
  display: block;
  margin-top: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--gold);
}

/* ────────────────────────────────────────────
   11. WHY CHOOSE US
──────────────────────────────────────────── */
.why { background: #fff; padding: var(--section-padding); }
.why__intro { text-align: center; margin-bottom: 3.5rem; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-top: 4px solid var(--gold);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.why-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.why-card__icon { font-size: 1.875rem; margin-bottom: 0.75rem; }
.why-card__title { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; }
.why-card__text  { color: #6b7280; font-size: 0.875rem; line-height: 1.65; }

/* ────────────────────────────────────────────
   12. HOW TO APPLY + FORM
──────────────────────────────────────────── */
.apply { background: var(--off-white); padding: var(--section-padding); }
.apply__intro { text-align: center; margin-bottom: 4rem; }
.apply__intro p { color: #6b7280; margin-top: 1rem; }
.apply__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 4rem; }

.step-card {
  background: #fff;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--gold);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.step-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.step-card__number {
  font-family: var(--font-accent);
  font-size: 7rem;
  line-height: 1;
  color: rgba(212,160,23,0.12);
  position: absolute;
  top: -1.25rem; left: -0.625rem;
  pointer-events: none;
}
.step-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step-card__title { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card__text  { color: #6b7280; font-size: 0.875rem; line-height: 1.65; }

/* ── Application Form ── */
.apply__form-wrap {
  max-width: 44rem;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.apply__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.apply__form-sub { color: #6b7280; font-size: 0.875rem; margin-bottom: 1.5rem; }
.apply__intake-note {
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form__label { font-size: 0.8125rem; font-weight: 600; color: var(--charcoal); }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e0d8;
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  appearance: none;
  border-radius: 0;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}
.form__textarea { resize: vertical; min-height: 100px; }
.form__submit { width: 100%; margin-top: 0.5rem; font-size: 0.9375rem; padding: 1rem; }
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(0,107,63,0.08);
  border: 1px solid rgba(0,107,63,0.2);
  color: var(--green-dark);
  font-weight: 600;
}
.form__success.visible { display: block; }

/* ────────────────────────────────────────────
   13. SCHEDULE
──────────────────────────────────────────── */
.schedule { background: var(--green); color: #fff; padding: var(--section-padding); }
.schedule__intro { text-align: center; margin-bottom: 4rem; }
.schedule__intro .section-label { color: rgba(255,215,0,0.8); }
.schedule__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.schedule-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 2rem;
}
.schedule-card__header { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.5rem; }
.schedule-card__icon-wrap {
  width: 2.5rem; height: 2.5rem;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.schedule-card__title { font-weight: 700; color: #fff; font-size: 1.0625rem; }
.schedule-card__location { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.schedule-item { border-bottom: 1px solid rgba(255,255,255,0.15); padding: 0.75rem 0; }
.schedule-item:last-of-type { border-bottom: none; }
.schedule-item__label { color: rgba(255,255,255,0.4); font-size: 0.6875rem; letter-spacing: 0.15rem; text-transform: uppercase; margin-bottom: 0.25rem; }
.schedule-item__time { color: #fff; font-weight: 500; }
.schedule-card__note { margin-top: 1rem; color: rgba(255,255,255,0.5); font-size: 0.8125rem; font-style: italic; }

/* ────────────────────────────────────────────
   14. GALLERY
──────────────────────────────────────────── */
.gallery { background: var(--charcoal); padding: var(--section-padding); }
.gallery__intro { text-align: center; margin-bottom: 3.5rem; }
.gallery__intro .section-title { color: #fff; }
.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 16.25rem 16.25rem;
  gap: 0.5rem;
}
.gallery__item {
  overflow: hidden;
  position: relative;
}
.gallery__item:first-child { grid-row: 1 / 3; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,107,63,0.5);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.75rem;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

/* ────────────────────────────────────────────
   15. FAQ
──────────────────────────────────────────── */
.faq { background: var(--off-white); padding: var(--section-padding); }
.faq__intro { text-align: center; margin-bottom: 3.5rem; }
.faq__list { max-width: 48rem; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e0d8; }
.faq-item__question {
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9375rem;
  gap: 1rem;
  user-select: none;
}
.faq-item__icon {
  width: 1.75rem; height: 1.75rem;
  background: var(--gold);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  font-weight: 300;
}
.faq-item__icon.open { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4b5563;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item__answer.open { max-height: 12rem; padding-bottom: 1.25rem; }

/* ────────────────────────────────────────────
   16. FINAL CTA BANNER
──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--green-dark) 100%);
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'ASODA';
  font-family: var(--font-accent);
  font-size: 20rem;
  position: absolute;
  right: -3.75rem; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; }
.cta-banner__title { color: #fff; }
.cta-banner__body { color: rgba(255,255,255,0.6); font-size: 1.125rem; line-height: 1.7; margin: 1.5rem 0 2.5rem; }
.cta-banner__tagline { margin-top: 1.5rem; color: rgba(255,255,255,0.3); font-size: 0.875rem; font-style: italic; }

/* ────────────────────────────────────────────
   17. FOOTER
──────────────────────────────────────────── */
.footer { background: var(--dark); padding: 4rem 1.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1rem; }
.footer__logo { height: 4rem; width: auto; }
.footer__brand-name { color: #fff; font-weight: 700; letter-spacing: 0.15rem; display: block; }
.footer__brand-sub  { color: var(--gold); font-size: 0.6875rem; letter-spacing: 0.12rem; display: block; }
.footer__desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.75rem; }
.footer__tagline { color: var(--gold); font-size: 0.8125rem; }
.footer__col-title {
  color: #fff; font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.15rem; text-transform: uppercase; margin-bottom: 1rem;
}
.footer__link {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition-base);
}
.footer__link:hover { color: var(--gold); }
.footer__contact-item {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
.footer__divider { border-color: rgba(255,255,255,0.1); margin-bottom: 2rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy, .footer__credit {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

/* ────────────────────────────────────────────
   18. RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .courses__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid     { grid-template-columns: repeat(2, 1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 4rem 1rem; }

  .navbar { padding: 0.875rem 1.25rem; }
  .navbar__links { display: none; }
  .navbar__toggle { display: block; }

  .hero__content { padding: 0 1.5rem; }
  .hero__stats   { gap: 1.5rem; }

  .problem__grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image   { height: 22rem; }

  .courses__grid  { grid-template-columns: 1fr; }
  .why__grid      { grid-template-columns: 1fr; }
  .apply__steps   { grid-template-columns: 1fr; }
  .form__row      { grid-template-columns: 1fr; }

  .schedule__grid { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item:first-child { grid-row: auto; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta-banner::before { font-size: 8rem; }
  .apply__form-wrap { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .hero__ctas  { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
  .problem__cards { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
}
