/* =========================================
   BRIGHT MINDS EDUCATION – STYLESHEET
   Light, Modern, Fully Responsive
   ========================================= */

/* ── VARIABLES ─────────────────────────── */
:root {
  --green:        #27a560;
  --green-dark:   #1d7d49;
  --green-light:  #e8f7ef;
  --green-pale:   #f4fbf7;
  --gold:         #c9a227;
  --navy:         #1a2f24;
  --text:         #2d3748;
  --text-light:   #6b7280;
  --white:        #ffffff;
  --bg-light:     #f8fdf9;
  --border:       #d1e7db;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.13);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   all .3s ease;
  --container:    1200px;
  --font:         'Poppins', sans-serif;
}

/* ── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── CONTAINER ──────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── SECTIONS ───────────────────────────── */
.section { padding: 5rem 0; }
.section-green { background: var(--bg-light); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.section-header h3 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 600; color: var(--navy); margin-bottom: .6rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-large { padding: .9rem 2rem; font-size: 1rem; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(39,165,96,.35); }
.btn-outline { border: 2px solid var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--green-dark); font-weight: 700; }
.btn-white:hover { background: var(--green-light); transform: translateY(-2px); }

/* ── HEADER ─────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: .85rem 0;
  transition: var(--transition);
}
#header.scrolled { padding: .6rem 0; box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; }

.logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 42px; height: 42px; background: var(--green); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main { font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.logo-sub { font-size: .7rem; font-weight: 500; color: var(--green); letter-spacing: .05em; }

#nav { margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  padding: .4rem .7rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-light); }

.header-cta { margin-left: .5rem; padding: .6rem 1.2rem; font-size: .85rem; }

.burger { display: none; flex-direction: column; gap: 5px; width: 32px; padding: 4px; margin-left: .5rem; }
.burger span { display: block; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ── HERO ───────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #f0faf5 0%, #e9f7ef 40%, #f0f4ff 100%);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(39,165,96,.06);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 3rem;
  padding-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge i { color: var(--gold); }

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 1rem;
}
.highlight { color: var(--green); position: relative; }
.highlight::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
}

.hero-sub { color: var(--text-light); font-size: 1.05rem; margin-bottom: .5rem; }
.hero-tagline { color: var(--green-dark); font-size: .95rem; font-style: italic; margin-bottom: 1.4rem; }

.hero-highlights { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.hero-highlights li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: var(--text);
}
.hero-highlights li i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

.hero-btns { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Hero Image */
.hero-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.hero-img-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 560px;
}

.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: .65rem .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.float-icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.float-text { display: flex; flex-direction: column; line-height: 1.2; }
.float-text strong { font-size: .85rem; color: var(--navy); }
.float-text span { font-size: .72rem; color: var(--text-light); }
.badge-top { top: 20px; left: -20px; }
.badge-bottom { bottom: 30px; right: -20px; }

.hero-wave { line-height: 0; margin-top: 1rem; }
.hero-wave svg { width: 100%; display: block; }

/* ── STATS BAR ──────────────────────────── */
.stats-bar { background: var(--green); padding: 2.5rem 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-val { font-size: 2.4rem; font-weight: 800; line-height: 1; margin-bottom: .35rem; display: flex; align-items: baseline; justify-content: center; gap: .1rem; }
.stat-val span:last-child { font-size: 1.4rem; }
.stat-item p { font-size: .85rem; font-weight: 400; opacity: .88; }

/* ── ABOUT ──────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.about-text p { color: var(--text); margin-bottom: 1rem; }
.about-text blockquote {
  border-left: 4px solid var(--green);
  padding: .8rem 1.2rem;
  background: var(--green-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--green-dark);
  font-style: italic;
  font-weight: 600;
  margin: 1.5rem 0;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.about-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.about-card-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto .8rem;
}
.about-card h4 { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.about-card p { font-size: .83rem; color: var(--text-light); }

/* ── MENTOR ─────────────────────────────── */
.mentor-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.mentor-images { display: flex; flex-direction: column; gap: 1.2rem; }
.mentor-img-main img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}
.mentor-img-award { position: relative; }
.mentor-img-award img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.award-caption {
  text-align: center;
  font-size: .78rem;
  color: var(--green-dark);
  margin-top: .5rem;
  font-weight: 500;
}

.mentor-info h3 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.mentor-qual { font-size: 1rem; color: var(--green); font-weight: 600; margin-bottom: .35rem; }
.mentor-qual i { margin-right: .4rem; }
.mentor-award-tag { font-size: .88rem; font-weight: 500; color: var(--text-light); background: var(--green-light); padding: .3rem .8rem; border-radius: 50px; display: inline-block; margin-bottom: 1.4rem; }

.mentor-creds { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.8rem; }
.mentor-creds li { display: flex; align-items: flex-start; gap: .8rem; font-size: .93rem; }
.cred-icon {
  width: 34px; height: 34px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.mentor-philosophy {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.2rem;
}
.mentor-philosophy h4 { font-size: .95rem; font-weight: 600; color: var(--green-dark); margin-bottom: .5rem; }
.mentor-philosophy h4 i { margin-right: .4rem; color: var(--gold); }
.mentor-philosophy p { font-size: .9rem; color: var(--text); }

.mentor-quote {
  border-left: 4px solid var(--gold);
  padding: .8rem 1.2rem;
  background: #fffbf0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--navy);
  font-style: italic;
  font-weight: 600;
  font-size: .95rem;
}

/* ── WHY CHOOSE US ──────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green); }
.why-icon {
  width: 60px; height: 60px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--green); color: var(--white); }
.why-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.why-card p { font-size: .88rem; color: var(--text-light); }

/* ── COURSES ────────────────────────────── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.course-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green); }
.course-card.featured { border-color: var(--green); box-shadow: 0 8px 30px rgba(39,165,96,.2); }
.course-popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.course-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.course-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.course-card p { font-size: .88rem; color: var(--text-light); flex-grow: 1; }
.course-features { display: flex; flex-direction: column; gap: .4rem; }
.course-features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .85rem; color: var(--text); }
.course-features li i { color: var(--green); font-size: .8rem; margin-top: .22rem; flex-shrink: 0; }
.course-card .btn { margin-top: .5rem; align-self: flex-start; }

.subjects-row { text-align: center; }
.subjects-row h3 { font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.subject-pills { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.subject-pills span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 500;
  padding: .5rem 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
}
.subject-pills span:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ── METHODOLOGY ────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.step-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-md); }
.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: .6rem;
}
.step-card:hover .step-num { color: var(--green); }
.step-icon {
  width: 50px; height: 50px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto .8rem;
}
.step-card h4 { font-size: .92rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.step-card p { font-size: .8rem; color: var(--text-light); }

/* ── RESULTS / TESTIMONIALS ─────────────── */
.success-story-card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(39,165,96,.12);
}
.success-story-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.success-story-inner { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.success-scores { text-align: center; flex-shrink: 0; }
.score-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--white);
  margin-bottom: .5rem;
}
.score-big { font-size: 2rem; font-weight: 800; line-height: 1; }
.score-sub { font-size: .72rem; font-weight: 500; }
.score-overall { font-size: .9rem; font-weight: 600; color: var(--green-dark); }

.success-story-text { flex: 1; min-width: 260px; }
.success-story-text h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .8rem; }
.success-story-text blockquote {
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--green);
  padding-left: 1rem;
  margin-bottom: .8rem;
  font-size: .92rem;
}
.parent-voice {
  font-size: .88rem;
  color: var(--text-light);
  background: var(--green-light);
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
}
.parent-voice i { color: var(--green); margin-right: .3rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; }
.testimonial-card p { font-size: .88rem; color: var(--text); flex-grow: 1; font-style: italic; }
.t-author { display: flex; align-items: center; gap: .75rem; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.t-author div:last-child { display: flex; flex-direction: column; }
.t-author strong { font-size: .88rem; color: var(--navy); }
.t-author span { font-size: .75rem; color: var(--text-light); }

/* ── BLOG ───────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-md); }
.blog-icon-wrap {
  width: 52px; height: 52px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.blog-body { flex: 1; }
.blog-tag-pill {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 50px;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-body h4 { font-size: .98rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; }
.blog-body p { font-size: .84rem; color: var(--text-light); margin-bottom: .8rem; }
.blog-read-more { font-size: .82rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: .3rem; }
.blog-read-more:hover { gap: .6rem; }

/* ── DEMO CTA ───────────────────────────── */
.demo-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1d5e3a 100%);
  padding: 4.5rem 0;
}
.demo-cta-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.demo-cta-text { flex: 1; min-width: 280px; color: var(--white); }
.demo-cta-text h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: .8rem; }
.demo-cta-text p { opacity: .88; margin-bottom: 1rem; }
.demo-cta-text ul { display: flex; flex-direction: column; gap: .4rem; }
.demo-cta-text ul li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; opacity: .9; }
.demo-cta-text ul li i { color: #7ee8a8; }
.demo-cta-action { flex-shrink: 0; }

/* ── FAQ ────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  cursor: pointer;
}
.faq-q:hover { color: var(--green); }
.faq-q i { font-size: .8rem; color: var(--green); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 1.4rem 1.1rem; font-size: .9rem; color: var(--text-light); }

/* ── CONTACT ────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-details h3, .contact-enroll h3 {
  font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 1.4rem;
}
.contact-list { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.8rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--text);
}
.contact-item:hover { border-color: var(--green); transform: translateX(4px); }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-icon.whatsapp { background: #e8f8f5; color: #25d366; }
.contact-icon.instagram { background: #fce7f4; color: #e1306c; }
.contact-item div:last-child { display: flex; flex-direction: column; gap: .15rem; }
.contact-item strong { font-size: .82rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .04em; }
.contact-item span, .contact-item a { font-size: .9rem; font-weight: 500; color: var(--navy); }
.contact-btns { display: flex; flex-wrap: wrap; gap: .85rem; }

.contact-enroll p { color: var(--text-light); margin-bottom: 1.4rem; }
.enroll-perks { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 1.8rem; }
.enroll-perk { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text); }
.enroll-perk i { color: var(--green); font-size: .95rem; }

/* ── FOOTER ─────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.85); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.footer-logo .logo-icon { background: var(--green); }
.footer-logo .logo-main { color: var(--white); font-size: 1.05rem; }
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.65); margin-bottom: .5rem; line-height: 1.6; }
.footer-tagline { color: var(--green) !important; font-size: .8rem !important; font-style: italic; font-weight: 500; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-col h5 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { font-size: .84rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col ul a:hover { color: var(--green); padding-left: 4px; }
.footer-col p { display: flex; align-items: flex-start; gap: .6rem; font-size: .84rem; color: rgba(255,255,255,.65); margin-bottom: .55rem; }
.footer-col p i { color: var(--green); margin-top: .2rem; flex-shrink: 0; }
.footer-col p a { color: rgba(255,255,255,.65); }
.footer-col p a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 1.2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* ── WHATSAPP FAB ───────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 990;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-fab:hover { background: #128c5e; transform: scale(1.1); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.8); }
}

/* ── RESPONSIVE – TABLET (≤992px) ──────── */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { max-width: 400px; margin: 0 auto; }
  .badge-top { left: 0; }
  .hero-highlights { align-items: flex-start; text-align: left; }
  .hero-btns { justify-content: center; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .mentor-inner { grid-template-columns: 1fr; }
  .mentor-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .mentor-img-main img { max-height: 300px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: repeat(3, 1fr); }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .blog-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── RESPONSIVE – MOBILE (≤768px) ──────── */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* Nav */
  #nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 998;
  }
  #nav.open { opacity: 1; pointer-events: all; }
  .nav-links { flex-direction: column; gap: .5rem; text-align: center; }
  .nav-links a { font-size: 1.1rem; padding: .7rem 2rem; }
  .header-cta { display: none; }
  .burger { display: flex; z-index: 999; }

  /* Hero */
  .hero { padding: 3.5rem 0 0; }
  .hero-content h1 { font-size: 2rem; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .stat-val { font-size: 2rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Courses */
  .courses-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { display: flex; gap: 1rem; text-align: left; align-items: flex-start; }
  .step-num { font-size: 1.8rem; min-width: 40px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Mentor images */
  .mentor-images { grid-template-columns: 1fr; }

  /* About cards */
  .about-cards { grid-template-columns: 1fr; }

  /* Demo CTA */
  .demo-cta-inner { flex-direction: column; gap: 2rem; text-align: center; }
  .demo-cta-text ul { align-items: center; }

  /* Success story */
  .success-story-inner { flex-direction: column; align-items: center; text-align: center; }

  /* Enroll perks */
  .enroll-perks { grid-template-columns: 1fr; }

  /* Contact btns */
  .contact-btns { flex-direction: column; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ── RESPONSIVE – SMALL (≤480px) ───────── */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-float { display: none; }
  .blog-card { flex-direction: column; }
}
