/* =============================================
   11 Plus Preparation Centre — Shared Styles
   ============================================= */

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

:root {
  --navy:      #1a2e5a;
  --navy-dark: #111e3d;
  --gold:      #d4a017;
  --gold-light:#f0c040;
  --cream:     #fdf8f0;
  --white:     #ffffff;
  --text:      #2c3e50;
  --text-light:#5a6a7e;
  --border:    #dde3ed;
  --radius:    8px;
  --shadow:    0 4px 18px rgba(26,46,90,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

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

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--cream);
}

.section-title {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  /* Contain the absolute-positioned mobile dropdown */
  isolation: isolate;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-left: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links a.active {
  color: var(--gold-light);
}

/* Hamburger toggle button (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
}

footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact span { font-size: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.terms-link {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  transition: color 0.2s;
}

.terms-link:hover { color: var(--gold-light); }

/* ---------- T&C Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.modal-content h2 {
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 700;
}

.modal-content h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 20px 0 6px;
  font-weight: 700;
}

.modal-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--navy); }

@media (max-width: 600px) {
  .modal-content { padding: 28px 20px; }
}

/* ---------- Hero (Home) ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3d7a 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(212,160,23,0.08);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(212,160,23,0.05);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  object-fit: cover;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--gold-light); }

.hero-mission {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--gold);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ---------- Programme Tiles ---------- */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.programme-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.programme-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,46,90,0.14);
}

.programme-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.programme-tile h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.4;
}

.programme-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 8px;
}

.programme-tile--coming {
  border-style: dashed;
  border-color: var(--gold);
}

.programme-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 20px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .programme-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- Feature Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,46,90,0.14);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}

.author-detail {
  font-size: 0.8rem;
  color: var(--text-light);
}

.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 4px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3d7a 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ---------- Image & Quote Layout ---------- */
.image-quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.image-quote-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-height: 600px;
  object-fit: cover;
}

.image-quote-text blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 24px;
  font-weight: 600;
}

.image-quote-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.image-quote-layout--reverse {
  direction: rtl;
}

.image-quote-layout--reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .image-quote-layout { grid-template-columns: 1fr; }
  .image-quote-layout--reverse { direction: ltr; }
  .image-quote-img img { max-height: 450px; }
}

@media (max-width: 600px) {
  .image-quote-img img { max-height: 350px; }
  .image-quote-text blockquote { font-size: 1.15rem; }
}

/* ---------- Full-width Image Banner ---------- */
.image-banner {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.image-banner img.image-banner--tall {
  height: 700px;
  object-position: center 20%;
}

.image-banner:has(.image-banner--tall) {
  max-height: 700px;
}

@media (max-width: 600px) {
  .image-banner, .image-banner img { height: 260px; max-height: 260px; }
  .image-banner:has(.image-banner--tall) { max-height: 300px; }
  .image-banner img.image-banner--tall { height: 300px; }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 64px 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- About page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 100%);
  border-radius: 16px;
  padding: 48px 40px;
  color: var(--white);
  text-align: center;
}

.about-visual--image {
  background: none;
  padding: 0;
  overflow: hidden;
}

.about-visual--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.about-visual .big-number {
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.about-visual .big-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

.about-text h2 {
  font-size: 1.9rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.checklist {
  list-style: none;
  margin-top: 8px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.approach-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.approach-card .step-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}

.approach-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.approach-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.subject-badge {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}

.subject-badge:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.subject-badge .subj-icon { font-size: 2rem; margin-bottom: 10px; }
.subject-badge .subj-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.75;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--white);
}

.info-text strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.info-text span {
  color: var(--text-light);
  font-size: 0.92rem;
}

.contact-sidebar-image {
  width: 100%;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: var(--shadow);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,46,90,0.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Pricing & Schedule ---------- */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.schedule-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.schedule-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.schedule-intro {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.schedule-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.schedule-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sched-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.schedule-details strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.schedule-details span {
  color: var(--text-light);
  font-size: 0.92rem;
}

.price-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(26,46,90,0.22);
  text-align: center;
}

.price-badge {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  color: var(--gold-light);
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 30px;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}

.price-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.price-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
}

.price-includes li::before {
  content: '✓';
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}

.price-detail {
  text-align: left;
  margin-bottom: 16px;
}

.price-detail strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.price-detail p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.price-detail s {
  opacity: 0.5;
}

.price-detail .price-includes {
  margin-bottom: 0;
}

/* ---------- Our Unique Approach ---------- */
.ua-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ua-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 28px 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ua-card--wide {
  grid-column: 1 / -1;
}

.ua-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.ua-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
}

.ua-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ua-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

.ua-card ul li::before {
  content: '•';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.5;
}

/* ---------- How We Achieve the Results ---------- */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.results-quote {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px;
  color: var(--white);
  position: relative;
}

.results-quote::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  opacity: 0.6;
}

.results-quote p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  padding-top: 40px;
}

.results-image {
  border-radius: 16px;
  overflow: hidden;
}

.results-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.results-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.results-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.results-pillar strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.results-pillar p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Experience & Schools ---------- */
.experience-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-text p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.school-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.school-pill {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.experience-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experience-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.exp-stat-box {
  background: var(--cream);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.exp-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.exp-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 600;
}

/* ---------- FAQ Page ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: var(--navy);
}

.faq-num {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-q h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.faq-a {
  padding: 20px 28px;
}

.faq-a p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.faq-a p:last-child { margin-bottom: 0; }

.faq-bullets {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.faq-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.65;
}

.faq-bullets li::before {
  content: '•';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .subjects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ua-grid { grid-template-columns: 1fr; }
  .ua-card--wide { grid-column: auto; }
  .results-layout { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
  .experience-layout { grid-template-columns: 1fr; }
  .experience-image { max-width: 400px; margin: 0 auto; }
  .pricing-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Show hamburger, hide nav links until toggled */
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 99;
  }

  .nav-links.open {
    max-height: 440px;
    padding: 8px 0 16px;
  }

  .nav-links li { padding: 0 12px; }

  .nav-links a {
    display: block;
    padding: 13px 12px;
    border-radius: var(--radius);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }

  .nav-links li:last-child a {
    display: block !important;
    text-align: center !important;
    padding: 13px 20px !important;
    font-size: 0.95rem !important;
    margin-top: 4px;
    border-bottom: none;
  }

  /* Layout */
  .cards-grid,
  .testimonials-grid,
  .approach-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .subjects-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
}
