/* ═══════════════════════════════════════════════════════════
   MAROCABROAD — Luxury Private Education Consultancy
   Deep Navy + Muted Gold + Cream
   Cormorant Garamond headings, Inter body
   ═══════════════════════════════════════════════════════════ */

:root {
  --primary: #0C1425;
  --primary-light: #162040;
  --gold: #B8964B;
  --gold-light: #D4B06A;
  --gold-subtle: rgba(184,150,75,.08);
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --light: #F5F2ED;
  --text: #1A1A18;
  --text-muted: #6B6B6B;
  --border: rgba(0,0,0,.06);
  --border-light: rgba(0,0,0,.04);
  --burgundy: #8B2D35;
  --success: #2D8B46;
  --sh: 0 1px 3px rgba(0,0,0,.02), 0 6px 16px rgba(0,0,0,.03);
  --sh-hover: 0 4px 20px rgba(0,0,0,.05), 0 16px 50px rgba(0,0,0,.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; }
.section-alt { background: var(--cream); }

/* ── Eyebrow Labels ── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ── Reveal Animations ── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.rv.visible { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }
.rv.d4 { transition-delay: .4s; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Top Bar ── */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.5);
  font-size: 12px;
  padding: 10px 0;
  letter-spacing: .03em;
}
.topbar a { color: var(--gold); font-weight: 500; }
.topbar a:hover { color: var(--gold-light); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }

/* ── Navigation ── */
.navbar {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 20px rgba(0,0,0,.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 44px; height: 44px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  letter-spacing: .01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 11px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  transition: background .3s, transform .2s, box-shadow .3s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(184,150,75,.25); color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* Mobile Nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--primary);
  margin: 6px 0;
  transition: .3s;
}

/* ── Hero Section ── */
.hero {
  background: linear-gradient(160deg, var(--primary) 0%, #0f1a30 40%, var(--primary-light) 100%);
  color: white;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184,150,75,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,150,75,.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero h1 { margin-bottom: 24px; color: white; font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s, box-shadow .3s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(184,150,75,.3); color: var(--white); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  transition: border-color .3s, color .3s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.5); color: white; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
}
.hero-stat {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  text-align: center;
}
.hero-stat div { flex: 1; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-flags {
  font-size: 56px;
  margin-bottom: 20px;
  letter-spacing: 8px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Section Headers ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 20px; }
.section-header .badge {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: none;
  padding: 0;
}
.section-header h2 { margin-bottom: 16px; color: var(--primary); }
.section-header p { color: var(--text-muted); font-size: 16px; line-height: 1.8; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background .3s;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: left;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.service-card h3 { margin-bottom: 12px; color: var(--primary); font-size: 1.25rem; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* ── How It Works (Steps) ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.step {
  text-align: center;
  padding: 20px;
  position: relative;
}
.step-num {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  background: transparent;
}
.step h4 { margin-bottom: 10px; color: var(--primary); }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 46px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .3;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 500;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Cormorant Garamond', serif;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--primary); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ── CTA Section ── */
.cta-section {
  background: var(--primary);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,75,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 { margin-bottom: 16px; color: white; position: relative; }
.cta-section h2 span { color: var(--gold); font-style: italic; }
.cta-section p { color: rgba(255,255,255,.5); font-size: 16px; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184,150,75,.35);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(184,150,75,.45); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ── Footer ── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.5);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.footer-brand-name span { color: var(--gold-light); }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  transition: all .3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: white; }
.footer-col h4 {
  color: rgba(255,255,255,.7);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,.4); font-size: 14px; transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 60px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color .3s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 18px;
  color: var(--gold);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 0 24px; }

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .3s, box-shadow .3s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,75,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit {
  background: var(--gold);
  color: white;
  padding: 16px 36px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  width: 100%;
  transition: background .3s, transform .2s;
  font-family: inherit;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.contact-info-card {
  background: var(--primary);
  border-radius: 12px;
  padding: 44px;
  color: rgba(255,255,255,.6);
}
.contact-info-card h3 { margin-bottom: 28px; color: white; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,75,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item-text h4 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; margin-bottom: 2px; color: rgba(255,255,255,.8); }
.contact-item-text p { font-size: 14px; color: rgba(255,255,255,.5); margin: 0; }
.contact-item-text a { color: var(--gold); }

/* ── Universities Section ── */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.uni-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.uni-card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.uni-card h4 { font-family: 'Inter', sans-serif; font-size: 14px; margin-top: 14px; color: var(--primary); }
.uni-card p { font-size: 12px; color: var(--text-muted); margin: 0; }
.uni-icon { font-size: 36px; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.price-card.featured {
  border: 1.5px solid var(--gold);
  box-shadow: 0 12px 40px rgba(184,150,75,.1);
}
.price-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
.price-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 12px;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1;
}
.price-period { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.price-features { list-style: none; text-align: left; margin-bottom: 36px; }
.price-features li {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}
.price-features li::before { content: '—'; color: var(--gold); font-weight: 600; }
.price-btn {
  display: block;
  background: var(--gold);
  color: white;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .3s, transform .2s;
}
.price-btn:hover { background: var(--gold-light); transform: translateY(-1px); color: white; }
.price-card:not(.featured) .price-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--primary);
}
.price-card:not(.featured) .price-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ── Language Toggle ── */
.lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
  font-size: 11px;
}
.lang-toggle button {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  padding: 4px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  transition: all .3s;
}
.lang-toggle button.active { background: var(--gold); color: white; }

/* ── University Partners Ticker ── */
.partners-section {
  padding: 60px 0;
  background: var(--cream);
  overflow: hidden;
}
.partners-section .section-header { margin-bottom: 40px; }
.partners-track {
  display: flex;
  gap: 24px;
  animation: partnerScroll 50s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partnerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-pill {
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}
.partner-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.partner-crest {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}
.partner-crest img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.partner-info h5 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.partner-info span {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── Brochure Download Banner ── */
.brochure-banner {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 48px auto;
  max-width: 800px;
}
.brochure-banner-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.brochure-banner-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.brochure-banner .btn-primary { white-space: nowrap; padding: 12px 28px; font-size: 13px; }

/* ── University Card Expansion ── */
.uni-card-expand { cursor: pointer; }
.uni-expand-hint {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.uni-expand-arrow { transition: transform .3s; font-size: 14px; }
.uni-card-expand.open .uni-expand-arrow { transform: rotate(180deg); }
.uni-card-expand.open .uni-expand-hint { color: var(--primary); }
.uni-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease, opacity .3s ease;
  opacity: 0;
  padding: 0;
}
.uni-card-expand.open .uni-detail {
  max-height: 800px;
  opacity: 1;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}
.uni-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.uni-detail-stat {
  background: var(--cream);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.uni-detail-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.uni-detail-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}
.uni-detail-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}
.uni-detail-course-tag {
  background: var(--gold-subtle);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.uni-detail-scholarships {
  list-style: none;
  margin: 8px 0;
}
.uni-detail-scholarships li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 3px 0;
}
.uni-detail-scholarships li::before {
  content: '—';
  color: var(--gold);
  font-weight: 600;
  margin-right: 8px;
}
.uni-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s, transform .2s;
  margin-top: 12px;
}
.uni-detail-cta:hover { background: var(--gold-light); transform: translateY(-1px); color: white; }
.uni-detail h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Responsive ── */
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .uni-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
}

@media (max-width: 768px) {
  .topbar-inner { justify-content: center; }
  .topbar-left { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 16px;
  }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 60px; }
  .section { padding: 60px 0; }
  .hero-card { padding: 28px; }
  .hero-stat { gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .uni-detail-grid { grid-template-columns: 1fr; }
  .brochure-banner { flex-direction: column; text-align: center; padding: 28px; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 15px; }
  .hero-flags { font-size: 40px; }
  .hero-card { padding: 24px; max-width: 100%; }
  .hero-stat { gap: 10px; }
  .hero-stat-num { font-size: 28px; }
  .hero-stat-label { font-size: 10px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; font-size: 14px; }
  .section { padding: 48px 0; }
  .container { padding: 0 20px; }
  .service-card { padding: 28px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 2.2rem; }
  .testimonial-card { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-logo-text { font-size: 18px; }
  .topbar { font-size: 11px; padding: 8px 0; }
  .faq-q { font-size: 14px; }
  .partner-pill { padding: 12px 16px; gap: 10px; }
  .partner-crest { width: 36px; height: 36px; }
  .partner-crest img { width: 32px; height: 32px; }
  .partner-info h5 { font-size: 12px; }
  .partner-info span { font-size: 10px; }
  .uni-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* Touch-friendly inputs */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea { min-height: 48px; font-size: 16px; }
  .btn-submit { min-height: 52px; font-size: 16px; }
}

/* Hero decorations: hide on mobile */
@media (max-width: 768px) {
  .hero::before, .hero::after { display: none; }
}

/* Inline grid overrides for mobile */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"] { display: block !important; }
  [style*="grid-template-columns: 1fr 1fr"] > div { margin-bottom: 30px; }
  [style*="grid-template-columns:1fr 1fr"] { display: block !important; }
  [style*="grid-template-columns:1fr 1fr"] > div { margin-bottom: 30px; }
}
