@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy: #4A5C8A;
  --navy-dark: #2D3F6B;
  --navy-deeper: #1E2A4A;
  --gold: #C9A050;
  --gold-dark: #A8823A;
  --charcoal: #2D2D2D;
  --gray-med: #6B6B6B;
  --gray-light: #F5F5F3;
  --gray-border: #E0DDD5;
  --white: #FFFFFF;
  --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

/* ── LANGUAGE SWITCHER ── */
/* !important needed to override element-specific display rules (inline-block, flex, etc.) */
.lang-fr { display: none !important; }
span.lang-fr { display: none !important; }

body.fr .lang-en { display: none !important; }
body.fr span.lang-en { display: none !important; }

/* Restore correct display types in FR mode */
body.fr p.lang-fr,
body.fr h1.lang-fr,
body.fr h2.lang-fr,
body.fr h3.lang-fr,
body.fr h4.lang-fr,
body.fr div.lang-fr,
body.fr ul.lang-fr,
body.fr li.lang-fr { display: block !important; }

body.fr span.lang-fr { display: inline !important; }

body.fr a.lang-fr,
body.fr button.lang-fr,
body.fr .hero-eyebrow.lang-fr,
body.fr .section-label.lang-fr,
body.fr .btn-primary.lang-fr,
body.fr .btn-secondary.lang-fr,
body.fr .btn-dark.lang-fr,
body.fr .btn-outline.lang-fr,
body.fr .accet-badge.lang-fr { display: inline-block !important; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(30, 42, 74, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(201, 160, 80, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img,
.nav-logo svg {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.footer-brand svg {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo-text span:last-child {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid rgba(201,160,80,0.4);
  border-radius: 3px;
  padding: 4px 2px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  transition: all var(--transition);
  font-family: 'Lato', sans-serif;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--navy-deeper);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-deeper) !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ── HERO SECTIONS ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-sm {
  height: 55vh;
  min-height: 380px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12) translateY(0);
  will-change: transform;
}

.hero:hover .hero-bg { transform: scale(1.12) translateY(0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,42,74,0.88) 0%, rgba(74,92,138,0.75) 60%, rgba(30,42,74,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deeper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-sm h1 {
  font-size: clamp(28px, 4vw, 52px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deeper);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,160,80,0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ── SECTIONS ── */
section {
  padding: 90px 8%;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy-deeper);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  font-size: 17px;
  color: var(--gray-med);
  max-width: 640px;
  line-height: 1.8;
}

.section-sub.light {
  color: rgba(255,255,255,0.8);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0 40px;
}

/* ── WHO WE ARE ── */
.who-we-are {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-text p {
  color: var(--gray-med);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.who-image {
  position: relative;
}

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

.who-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

/* ── SERVICES GRID ── */
.services-section {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 2px;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(74,92,138,0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--navy-deeper);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-med);
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── WHY ALTIS ── */
.why-altis {
  background: var(--navy-deeper);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
  color: var(--navy-deeper);
  font-weight: 700;
}

.why-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.why-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

/* ── CLIENTS ── */
.clients-section {
  text-align: center;
  padding: 64px 8%;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.clients-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-med);
  margin-bottom: 32px;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.client-name:hover { opacity: 1; }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--navy);
  padding: 80px 8%;
  text-align: center;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--white);
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-mark {
  font-size: 80px;
  color: rgba(201,160,80,0.2);
  font-family: 'Playfair Display', serif;
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: #C9A050;
  background-color: #C9A050;
  padding: 56px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--navy-deeper);
  font-weight: 700;
}

.btn-dark {
  display: inline-block;
  background: var(--navy-deeper);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all var(--transition);
  white-space: nowrap;
}

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

/* ── ABOUT PAGE ── */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-text p {
  color: var(--gray-med);
  margin-bottom: 20px;
  line-height: 1.9;
}

.vision-mission {
  background: var(--gray-light);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.vm-card {
  background: var(--white);
  padding: 40px;
  border-radius: 2px;
  border-top: 4px solid var(--gold);
}

.vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy-deeper);
  margin-bottom: 16px;
}

.vm-card p {
  color: var(--gray-med);
  line-height: 1.8;
}

.values-section {}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.value-item {
  padding: 32px;
  border-left: 3px solid var(--gold);
  background: var(--gray-light);
  border-radius: 0 2px 2px 0;
}

.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy-deeper);
  margin-bottom: 10px;
}

.value-item p {
  color: var(--gray-med);
  font-size: 15px;
  line-height: 1.7;
}

/* ── CORPORATE TRAINING ── */
.formats-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.format-card {
  padding: 40px;
  border: 1px solid var(--gray-border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.format-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy-deeper);
  margin-bottom: 16px;
}

.format-card p {
  color: var(--gray-med);
  line-height: 1.8;
}

.domains-section {
  background: var(--navy-deeper);
  color: var(--white);
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.domain-item {
  background: rgba(255,255,255,0.07);
  padding: 20px 24px;
  border-radius: 2px;
  border: 1px solid rgba(201,160,80,0.2);
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}

.domain-item:hover {
  background: rgba(201,160,80,0.15);
  border-color: var(--gold);
}

.domain-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}

.how-it-works {
  background: var(--gray-light);
}

.steps-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-border);
}

.step-item:last-child { border-bottom: none; }

.step-number {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy-deeper);
  margin-bottom: 8px;
}

.step-content p {
  color: var(--gray-med);
  font-size: 15px;
}

/* ── PROGRAMS PAGE ── */
.program-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 8%;
  border-bottom: 1px solid var(--gray-border);
}

.program-block:nth-child(even) { background: var(--gray-light); }
.program-block.reverse { direction: rtl; }
.program-block.reverse > * { direction: ltr; }

.program-text .section-label { margin-top: 0; }

.program-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy-deeper);
  margin-bottom: 20px;
  line-height: 1.3;
}

.program-text p {
  color: var(--gray-med);
  line-height: 1.9;
  margin-bottom: 24px;
}

.program-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  border: 2px solid var(--navy);
  transition: all var(--transition);
}

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

/* ── TESOL PAGE ── */
.tesol-hero-content .hero-eyebrow { background: rgba(201,160,80,0.2); color: var(--gold); border: 1px solid var(--gold); }

.accet-banner {
  background: var(--gold);
  padding: 20px 8%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.accet-badge {
  font-weight: 700;
  font-size: 13px;
  color: var(--navy-deeper);
  letter-spacing: 1px;
}

.tesol-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.tesol-intro-text p {
  color: var(--gray-med);
  line-height: 1.9;
  margin-bottom: 20px;
}

.highlight-box {
  background: var(--navy-deeper);
  color: var(--white);
  padding: 36px;
  border-radius: 2px;
  border-left: 4px solid var(--gold);
}

.highlight-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
}

.highlight-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.program-structure {
  background: var(--navy-deeper);
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.structure-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,160,80,0.3);
  padding: 36px;
  border-radius: 2px;
  text-align: center;
}

.structure-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.structure-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.structure-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.learn-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.outcomes-list {
  list-style: none;
  margin-top: 24px;
}

.outcomes-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
  color: var(--gray-med);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.outcomes-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--navy-deeper);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.eligibility-box {
  background: var(--gray-light);
  padding: 36px;
  border-radius: 2px;
}

.eligibility-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy-deeper);
  margin-bottom: 20px;
}

.eligibility-box ul {
  list-style: none;
}

.eligibility-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  color: var(--gray-med);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eligibility-box ul li::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
}

.china-section {
  background: linear-gradient(135deg, var(--navy-deeper), var(--navy));
  color: var(--white);
}

.china-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.china-text p {
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 16px;
}

.china-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: 16px;
}

.trainer-section {}

.trainer-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  background: var(--gray-light);
  padding: 56px;
  border-radius: 2px;
  margin-top: 48px;
}

.trainer-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
}

.trainer-credentials {
  list-style: none;
  margin-top: 24px;
}

.trainer-credentials li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
  color: var(--gray-med);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.trainer-credentials li::before {
  content: '★';
  color: var(--gold);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── TESTIMONIALS GRID ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 36px;
  border-radius: 2px;
  border-top: 4px solid var(--gold);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testimonial-card p {
  color: var(--gray-med);
  font-style: italic;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
  padding-top: 20px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--navy);
  text-transform: uppercase;
}

/* ── TESOL FORM ── */
.tesol-form-section {
  background: var(--gray-light);
}

.form-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

.form-intro p {
  color: var(--gray-med);
  line-height: 1.8;
}

.tesol-form-embed {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
}

.tesol-form-embed iframe {
  width: 100%;
  height: 860px;
  border: none;
  display: block;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy-deeper);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray-med);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-detail-text strong {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-text span {
  color: var(--gray-med);
  font-size: 15px;
}

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white);
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-deeper);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-border);
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

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

.form-submit {
  background: var(--navy-deeper);
  color: var(--white);
  border: none;
  padding: 16px 48px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}

.form-submit:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* ── MAP ── */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
  filter: grayscale(20%);
}

/* ── FOOTER ── */
footer {
  background: #1E2A4A;
  background-color: #1E2A4A;
  color: var(--white);
  padding: 64px 8% 32px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-slogan {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item span:first-child {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-partner {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-partner strong {
  color: var(--gold);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-light);
  padding: 12px 8%;
  border-bottom: 1px solid var(--gray-border);
  margin-top: 72px;
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
}

.breadcrumb span {
  color: var(--gray-med);
  font-size: 12px;
  margin: 0 8px;
}

.breadcrumb strong {
  color: var(--charcoal);
  font-size: 12px;
}

/* ── UTILITY ── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.photo-strip.two-col { grid-template-columns: 1fr 1fr; }
.photo-strip img { width: 100%; height: 320px; object-fit: cover; display: block; }

.container { max-width: 1280px; margin: 0 auto; }
.text-center { text-align: center; }
.text-center .section-divider { margin-left: auto; margin-right: auto; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy-deeper);
    padding: 24px 8%;
    gap: 20px;
    border-top: 1px solid rgba(201,160,80,0.2);
  }
  .who-we-are,
  .story-section,
  .formats-section,
  .vm-grid,
  .learn-outcomes,
  .china-content,
  .contact-layout { grid-template-columns: 1fr; }
  .trainer-card { grid-template-columns: 1fr; }
  .program-block { grid-template-columns: 1fr; }
  .program-block.reverse { direction: ltr; }
  .structure-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: 85vh; }
  .cta-banner { flex-direction: column; text-align: center; }
  .who-image::before { display: none; }
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .hero-content { padding: 0 5%; }
  nav { padding: 0 5%; }
  .clients-logos { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .domains-grid { grid-template-columns: 1fr 1fr; }
}
