/* ============================================================
   IES-GATE ACADEMY — LANDING PAGE STYLES
   Primary BG: #D9D9D9 | Secondary BG: #F6F6F6 | Accent: #C0272D
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --red:       #C0272D;
  --red-dark:  #9E1F24;
  --red-light: #e53935;
  --primary:   #D9D9D9;
  --secondary: #F6F6F6;
  --white:     #FFFFFF;
  --black:     #111111;
  --text:      #1A1A1A;
  --text-muted:#555555;
  --border:    #C0272D;
  --font-head: 'Satoshi', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --nav-h:     80px;
  --container: 1200px;
  --radius:    0px; /* SHARP EDGES */
  --shadow:    0 2px 16px rgba(0,0,0,0.08);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ---------- UTILITY ---------- */
.container         { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.bg-white          { background: var(--white); }
.bg-secondary      { background: var(--secondary); }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #EF3923 0%, #B01300 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #EF3923;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid;
  border-image: linear-gradient(135deg, #EF3923 0%, #B01300 100%) 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.btn-outline:hover {
  background: linear-gradient(135deg, #EF3923 0%, #B01300 100%);
  color: #fff;
  border-image: none;
  border-color: transparent;
}

.btn-whatsapp {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #EF3923 0%, #B01300 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-whatsapp:hover { 
  opacity: 0.9;
  transform: scale(1.05);
}

/* ---------- SECTION SPACING ---------- */
section { padding: 80px 0; }

/* ---------- SECTION LABELS & TITLES ---------- */
.section-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}
.section-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.section-cta-wrap {
  text-align: center;
  margin-top: 40px;
}
.link-red {
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.link-red:hover { border-bottom-color: var(--red); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
  height: var(--nav-h);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  height: 58px;
  width: auto;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  font-size: 0.88rem;
  padding: 12px 22px;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  justify-content: center;
}
.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--red);
  transition: all 0.3s ease;
  display: block;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  padding: 16px 0;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu-link {
  display: block;
  padding: 12px 40px;
  color: var(--text);
  font-weight: 600;
  text-align: center;
  transition: color 0.2s;
}
.mobile-menu-link:hover {
  color: var(--red);
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.section-hero {
  background: var(--white);
  padding: 80px 0 80px;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-tagline {
  color: #EF3923;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta {
  font-size: 1rem;
  padding: 16px 32px;
}

/* Lead Form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--red);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--red-dark);
  box-shadow: 0 0 0 3px rgba(192,39,45,0.12);
}
.form-input::placeholder { color: #999; }
.select-wrapper { position: relative; }
.form-select { cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--red);
  font-size: 1.2rem;
}
.form-submit {
  width: 100%;
  font-size: 1rem;
  padding: 16px;
}

/* ============================================================
   SECTION 2 — WHY CHOOSE
   ============================================================ */
.section-why { padding: 80px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.why-card:hover {
  box-shadow: 0 6px 24px rgba(192,39,45,0.1);
  border-color: var(--red);
}
.why-card--highlight {
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.why-card--highlight:hover {
  box-shadow: 0 6px 24px rgba(192,39,45,0.1);
  border-color: var(--red);
}
.icon-circle {
  width: auto; height: auto;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.icon-circle img {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.card-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SECTION 3 — COURSES
   ============================================================ */
.section-courses { padding: 80px 0; }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.course-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.course-card:hover {
  box-shadow: 0 6px 24px rgba(192,39,45,0.1);
  border-color: var(--red);
}
.course-icon {
  height: 90px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.course-badge {
  max-height: 80px;
  width: auto;
  margin: 0 auto;
}

/* ============================================================
   SECTION 4 — METHODOLOGY SLIDER
   ============================================================ */
.section-methodology { padding: 80px 0; }
.methodology-slider-wrap { position: relative; overflow: hidden; }
.methodology-slider {
  display: flex;
  gap: 40px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.methodology-slide {
  min-width: calc(50% - 20px);
  padding: 16px 8px;
}
.methodology-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
}
.methodology-slide .icon-circle {
  margin: 0;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.methodology-slide .icon-circle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.methodology-text-content {
  flex: 1;
}
.methodology-slide .card-title {
  text-align: left;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.methodology-slide .card-desc {
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.slider-btn {
  font-size: 1.3rem;
  color: var(--black);
  padding: 0 16px;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.slider-btn:hover { opacity: 1; }

/* ============================================================
   SECTION 5 — FEATURES GRID
   ============================================================ */
.section-features { padding: 80px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s;
  box-sizing: border-box;
}
.feature-card:hover {
  box-shadow: 0 6px 24px rgba(192,39,45,0.1);
  border-color: var(--red);
}
.feature-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  margin-top: 14px;
  line-height: 1.4;
}


/* ============================================================
   SECTION 6 — TOPPERS SLIDER
   ============================================================ */
.section-toppers { padding: 80px 0; }
.toppers-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.toppers-track-outer {
  overflow: hidden;
  flex: 1;
}
.toppers-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.topper-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.topper-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topper-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.topper-info {
  background: linear-gradient(135deg, #EF3923 0%, #B01300 100%);
  padding: 14px 16px;
  text-align: center;
}
.topper-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.topper-rank {
  color: #fff;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 2px;
}
.topper-nav {
  width: 44px; height: 44px;
  border: 2px solid #EF3923;
  border-radius: 50%;
  color: #EF3923;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  flex-shrink: 0;
  transition: all 0.2s ease;
  line-height: 1;
  padding-bottom: 2px;
}
.topper-nav:hover {
  background: linear-gradient(135deg, #EF3923 0%, #B01300 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
}

/* ============================================================
   SECTION 7 — VISIT
   ============================================================ */
.section-visit { padding: 0 0 80px; }
.map-container { 
  width: calc(100% - 80px);
  margin: 0 auto 40px;
  max-width: var(--container);
}
.map-container iframe { display: block; width: 100%; }
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.2;
}
.visit-desc {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 420px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--black);
  width: 130px;
}
.hours-table td:last-child { color: var(--text-muted); }

/* ============================================================
   SECTION 8 — REVIEWS
   ============================================================ */
.section-reviews { padding: 80px 0; }
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.google-logo svg { display: block; }
.rating-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}
.stars {
  color: #FBBC05;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.rating-num {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
}
.rating-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.reviews-slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.reviews-track-outer {
  overflow: hidden;
  flex: 1;
  width: 100%;
  position: relative;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.review-card {
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  /* Width will be set by JavaScript */
}
.review-card:hover {
  box-shadow: 0 6px 20px rgba(239, 57, 35, 0.12);
  border-color: #EF3923;
  transform: translateY(-2px);
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  align-self: flex-start;
}
.reviewer-info {
  margin-bottom: 12px;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}
.review-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.review-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1;
}
.review-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin: 0;
}
.review-nav {
  width: 48px; height: 48px;
  font-size: 1.8rem;
  color: var(--text-muted);
  background: var(--white);
  border: 2px solid #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding-bottom: 2px;
  line-height: 1;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  align-self: center;
}
.review-nav:hover { 
  color: #EF3923;
  border-color: #EF3923;
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(239, 57, 35, 0.2);
}

/* ============================================================
   SECTION 9 — FAQ
   ============================================================ */
.section-faq { padding: 80px 0; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--red); }
.faq-question.active { color: var(--red); }
.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 18px;
}
.faq-answer p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   SECTION 10 — BOTTOM FORM
   ============================================================ */
.section-bottom-form { padding: 80px 0; }
.bottom-form-title {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  color: var(--black);
  margin-bottom: 36px;
}
.bottom-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.bottom-form-submit {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  padding: 28px 40px;
  text-align: center;
  border-top: 1px solid #eee;
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-link {
  color: var(--red);
  font-weight: 600;
}
.footer-link:hover { text-decoration: underline; }

/* ============================================================
   THANK YOU MODAL
   ============================================================ */
.thankyou-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 10000;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.thankyou-modal.show {
  display: flex;
  opacity: 1;
}
.thankyou-navbar {
  position: relative;
  z-index: 10001;
  flex-shrink: 0;
}
.thankyou-modal-content {
  background: var(--white);
  width: 100%;
  max-width: 1200px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  margin: 0 auto;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.thankyou-headline {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.thankyou-tagline {
  color: #EF3923;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}
.thankyou-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.thankyou-btn {
  min-width: 240px;
  font-size: 1rem;
  padding: 16px 32px;
}

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.fab {
  position: fixed;
  bottom: 24px;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #EF3923 0%, #B01300 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(239,57,35,0.35);
  z-index: 10001;
  transition: opacity 0.2s, transform 0.2s;
}
.fab:hover { 
  opacity: 0.9;
  transform: scale(1.08);
}
.fab--left  { left: 24px; }
.fab--right { right: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet Landscape & Small Desktop (769px - 1024px) */
@media (max-width: 1024px) {
  .hero-inner             { grid-template-columns: 1fr; gap: 40px; }
  .hero-right             { max-width: 480px; margin: 0 auto; }
  .why-grid               { grid-template-columns: repeat(2, 1fr); }
  .courses-grid           { grid-template-columns: repeat(2, 1fr); }
  .features-grid          { grid-template-columns: repeat(4, 1fr); }
  .visit-inner            { grid-template-columns: 1fr; gap: 32px; }
  .reviews-header         { flex-direction: column; align-items: flex-start; gap: 16px; }
  /* Review card widths handled by JavaScript */
  .hero-headline          { font-size: 2.8rem; }
  .section-title          { font-size: 1.8rem; }
}

/* Tablet Portrait (481px - 768px) */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section                 { padding: 56px 0; }
  .features-grid          { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .container              { padding: 0 24px; }
  .container--narrow      { padding: 0 24px; }
  .hero-headline          { font-size: 2.2rem; line-height: 1.2; }
  .hero-tagline           { font-size: 0.95rem; }
  .hero-sub               { font-size: 0.95rem; }
  .section-title          { font-size: 1.6rem; margin-bottom: 32px; }
  .why-grid               { grid-template-columns: 1fr; gap: 16px; }
  .courses-grid           { grid-template-columns: 1fr; gap: 16px; }
  .methodology-slide      { min-width: calc(100%); }
  .topper-card            { min-width: calc(50% - 12px); }
  .review-card            { padding: 20px 18px; }
  .reviews-slider-wrap    { gap: 12px; }
  .review-nav             { width: 40px; height: 40px; font-size: 1.6rem; }
  .bottom-form-grid       { grid-template-columns: 1fr; }
  .visit-inner            { gap: 28px; }
  .toppers-slider-wrap    { gap: 8px; }
  .reviews-header         { flex-direction: column; gap: 14px; }
  .nav-inner              { padding: 0 24px; }
  .logo-img               { height: 46px; }
  .nav-cta                { font-size: 0.8rem; padding: 10px 16px; }
  .btn-whatsapp           { width: 40px; height: 40px; }
  .hero-cta               { font-size: 0.95rem; padding: 14px 28px; }
  .thankyou-modal-content { padding: 60px 24px; }
  .thankyou-headline      { font-size: 2.8rem; }
  .thankyou-tagline       { font-size: 0.95rem; }
  .thankyou-sub           { font-size: 0.95rem; }
  .map-container          { margin: 0 24px 40px; max-width: calc(100% - 48px); }
  .topper-photo           { height: 300px; }
  .topper-nav             { width: 40px; height: 40px; font-size: 1.4rem; }
  .fab                    { width: 48px; height: 48px; bottom: 20px; }
  .fab--left              { left: 20px; }
  .fab--right             { right: 20px; }
  .footer                 { padding: 24px 24px; }
}

/* Mobile (up to 480px) */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  section                 { padding: 40px 0; }
  .container              { padding: 0 16px; }
  .container--narrow      { padding: 0 16px; }
  .hero-headline          { font-size: 1.8rem; line-height: 1.2; }
  .hero-tagline           { font-size: 0.9rem; margin-bottom: 12px; }
  .hero-sub               { font-size: 0.9rem; margin-bottom: 24px; }
  .section-title          { font-size: 1.4rem; margin-bottom: 24px; }
  .section-label          { font-size: 0.85rem; }
  .why-grid               { grid-template-columns: 1fr; gap: 16px; }
  .why-card               { padding: 24px 20px; }
  .courses-grid           { grid-template-columns: 1fr; gap: 16px; }
  .course-card            { padding: 24px 20px; }
  .features-grid          { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-card           { padding: 20px 12px; }
  .feature-label          { font-size: 0.85rem; }
  .methodology-slide      { min-width: calc(100%); padding: 12px 4px; }
  .methodology-slide .card-title { font-size: 1rem; }
  .methodology-slide .card-desc  { font-size: 0.88rem; }
  .topper-card            { min-width: calc(100%); }
  .topper-photo           { height: 280px; }
  .review-card            { padding: 20px 18px; }
  .review-text            { font-size: 0.9rem; }
  .review-nav             { width: 40px; height: 40px; font-size: 1.5rem; }
  .reviews-slider-wrap    { gap: 12px; }
  .bottom-form-grid       { grid-template-columns: 1fr; gap: 12px; }
  .visit-inner            { gap: 24px; }
  .visit-title            { font-size: 1.5rem; }
  .visit-desc             { font-size: 0.9rem; }
  .toppers-slider-wrap    { gap: 8px; }
  .topper-nav             { width: 36px; height: 36px; font-size: 1.3rem; }
  .reviews-header         { flex-direction: column; gap: 12px; }
  .reviews-rating         { flex-wrap: wrap; gap: 8px; }
  .rating-text            { font-size: 0.9rem; }
  .rating-num             { font-size: 1rem; }
  .rating-count           { font-size: 0.85rem; }
  .nav-inner              { padding: 0 16px; justify-content: center; }
  .nav-logo               { margin: 0 auto; }
  .logo-img               { height: 40px; }
  .nav-actions            { display: none; }
  .nav-cta                { font-size: 0.75rem; padding: 8px 12px; display: none; }
  .btn-whatsapp           { width: 36px; height: 36px; }
  .mobile-menu-toggle     { display: none; }
  .hero-cta               { font-size: 0.9rem; padding: 12px 24px; width: 100%; }
  .btn-primary            { font-size: 0.9rem; padding: 12px 20px; }
  .btn-outline            { font-size: 0.9rem; padding: 11px 20px; }
  .lead-form              { gap: 12px; }
  .form-input             { padding: 12px 14px; font-size: 0.9rem; }
  .form-submit            { font-size: 0.9rem; padding: 14px; }
  .thankyou-modal-content { padding: 40px 20px; }
  .thankyou-headline      { font-size: 1.8rem; line-height: 1.2; }
  .thankyou-tagline       { font-size: 0.9rem; margin-bottom: 12px; }
  .thankyou-sub           { font-size: 0.9rem; margin-bottom: 24px; }
  .thankyou-btn           { min-width: 100%; font-size: 0.95rem; padding: 14px 28px; }
  .map-container          { margin: 0 16px 32px; max-width: calc(100% - 32px); }
  .map-container iframe   { height: 300px; }
  .footer                 { padding: 20px 16px; }
  .footer-copy            { font-size: 0.8rem; }
  .footer-credit          { font-size: 0.8rem; }
  .fab                    { width: 44px; height: 44px; bottom: 16px; }
  .fab--left              { left: 16px; }
  .fab--right             { right: 16px; }
  .fab svg                { width: 20px; height: 20px; }
  .icon-circle            { width: 50px; height: 50px; margin-bottom: 14px; }
  .icon-circle img        { max-width: 30px; max-height: 30px; }
  .card-title             { font-size: 1rem; }
  .card-desc              { font-size: 0.85rem; }
  .faq-question           { font-size: 0.95rem; padding: 16px 0; }
  .faq-answer p           { font-size: 0.88rem; }
  .slider-btn             { font-size: 1.1rem; padding: 0 12px; }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
  .hero-headline          { font-size: 1.6rem; }
  .section-title          { font-size: 1.3rem; }
  .thankyou-modal-content { padding: 40px 16px; }
  .thankyou-headline      { font-size: 1.6rem; }
  .thankyou-tagline       { font-size: 0.85rem; }
  .thankyou-sub           { font-size: 0.85rem; }
  .container              { padding: 0 12px; }
  .nav-inner              { padding: 0 12px; }
  .map-container          { margin: 0 12px 24px; max-width: calc(100% - 24px); }
}
