/* ============================================================
   Career Mastery Hub — style.css
   Organized sections:
   1. Custom Properties
   2. Reset & Base
   3. Utilities (container, tag, buttons, reveal)
   4. Navigation
   5. Hero
   6. Marquee
   7. Maintenance Notice
   8. Video Intro
   9. About
   10. CEO Message
   11. Services
   12. Aptitude Pro Portal
   13. Foreign Admission Equivalence
   14. Why Choose Us
   15. Destinations
   16. Partners & RFQ
   17. History Timeline
   18. Vision & Mission
   19. Team
   20. Corporate Opportunities
   21. Testimonials & Reviews
   22. FAQ
   23. Careers
   24. Contact
   25. Footer
   26. Back-to-Top
   27. Responsive
   ============================================================ */


/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Brand greens */
  --green:       #2E7D4F;
  --green-dark:  #1A5C38;
  --green-deep:  #0F3D25;
  --green-light: #3D9960;
  --green-pale:  #E8F5EE;
  --green-mid:   rgba(46,125,79,.12);
  --lime:        #6FCF97;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F7F9F7;
  --cream:       #F0EDE6;
  --text:        #1A2E22;
  --text-mid:    #3D5C47;
  --text-light:  #6B8A75;

  /* Utility */
  --border:      rgba(46,125,79,.15);
  --shadow:      0 4px 24px rgba(15,61,37,.08);
  --shadow-lg:   0 12px 48px rgba(15,61,37,.14);
}


/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* Custom scrollbar */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }


/* ── 3. UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Section label tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
}

/* Headlines */
h2.headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}
h2.headline em   { font-style: italic; color: var(--green); }
h2.headline span { color: var(--green); }

.sub-text {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 400;
  margin-top: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Montserrat', sans-serif;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,79,.3);
}
.btn-lime { background: var(--lime); color: var(--green-deep); font-weight: 800; }
.btn-lime:hover {
  background: #8DE0AE;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(111,207,151,.35);
}
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-gold { background: var(--white); color: var(--green-dark); font-weight: 800; }
.btn-gold:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
  font-weight: 700;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.9);
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ── 4. NAVIGATION ────────────────────────────────────────── */

/* Announcement bar */
.nav-topbar {
  background: var(--green-deep);
  padding: 7px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .5px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  transition: transform .3s;
}
.nav-topbar a   { color: var(--lime); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.nav-topbar.hidden { transform: translateY(-100%); }

/* Main nav */
nav {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
nav.scrolled, nav.topbar-gone {
  top: 0;
  box-shadow: 0 4px 32px rgba(15,61,37,.10);
}

/* Reading progress bar */
.nav-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--green);
  width: 0;
  transition: width .1s linear;
  z-index: 2;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 7px 11px;
  border-radius: 6px;
  transition: all .2s;
  letter-spacing: .2px;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--green); background: var(--green-pale); }

/* Dropdown */
.nav-has-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown-toggle::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition: transform .2s;
}
.nav-has-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(225deg) translateY(-2px); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(15,61,37,.14);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; top: calc(100% + 6px); }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all .15s;
  white-space: nowrap;
}
.nav-dropdown a:hover { color: var(--green); background: var(--green-pale); }
.nav-dropdown a .dd-icon {
  width: 28px; height: 28px;
  background: var(--green-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* CTA buttons */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-apt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lime);
  color: var(--green-deep);
  font-size: 11.5px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: .3px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-apt-btn:hover { background: #8DE0AE; transform: translateY(-1px); }
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 6px;
  letter-spacing: .3px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--green-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
  width: 40px; height: 40px;
}
.hamburger:hover { background: var(--green-pale); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
  margin: 0 auto;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px)  rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(15,61,37,.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,37,25,.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(3px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.drawer-logo { display: flex; align-items: center; gap: 10px; }
.drawer-logo-img { height: 36px; width: auto; object-fit: contain; }

.drawer-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-mid);
  transition: all .2s;
}
.drawer-close:hover { background: var(--green-pale); color: var(--green); }

.drawer-body { flex: 1; overflow-y: auto; padding: 12px 12px 20px; }
.drawer-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 14px 10px 6px;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all .2s;
}
.drawer-link:hover,
.drawer-link.active { background: var(--green-pale); color: var(--green); }
.drawer-link .dl-icon {
  width: 32px; height: 32px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.drawer-link.active .dl-icon { background: var(--green); filter: brightness(10); }

.drawer-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-apt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--lime);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  padding: 13px;
  border-radius: 10px;
  transition: all .2s;
}
.drawer-apt-btn:hover { background: #8DE0AE; }
.drawer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  transition: all .2s;
}
.drawer-cta-btn:hover { background: var(--green-dark); }
.drawer-contact-row { display: flex; gap: 8px; margin-top: 4px; }
.drawer-contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all .2s;
}
.drawer-contact-btn:hover { border-color: var(--green); color: var(--green); }



/* ── 5. HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 98px;
}

/* Background photo overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: .22;
  z-index: 0;
}

/* Animated background elements */
.hero-bg-circles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg-circles::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,79,.3) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.hero-bg-circles::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,207,151,.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-diagonal-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-diagonal-lines::before {
  content: '';
  position: absolute; inset: -100%;
  background-image: repeating-linear-gradient(
    45deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, transparent 1px, transparent 60px
  );
  animation: movelines 18s linear infinite;
}
.hero-diagonal-lines::after {
  content: '';
  position: absolute; inset: -100%;
  background-image: repeating-linear-gradient(
    -45deg, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 90px
  );
  animation: movelines2 24s linear infinite;
}
@keyframes movelines  { to { transform: translate(60px,  60px); } }
@keyframes movelines2 { to { transform: translate(-90px, 90px); } }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 5% 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,207,151,.15);
  border: 1px solid rgba(111,207,151,.3);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.5px;
}
.hero h1 em { font-style: italic; color: var(--lime); }

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  margin-top: 20px;
  line-height: 1.8;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* Hero stats row */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Hero right panel */
.hero-right { display: flex; flex-direction: column; gap: 14px; }

.dest-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}
.dest-panel-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.dest-flags { display: flex; flex-wrap: wrap; gap: 10px; }
.dest-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  transition: all .2s;
  cursor: default;
}
.dest-flag:hover {
  background: rgba(111,207,151,.15);
  border-color: rgba(111,207,151,.3);
  color: var(--lime);
}
.dest-flag img { display: inline-block; vertical-align: middle; border-radius: 2px; }

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 18px 20px;
}
.mini-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--lime);
}
.mini-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

.google-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.google-badge-icon {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.gb-label { font-size: 10px; color: rgba(255,255,255,.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.gb-rating { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.gb-stars  { color: #FBBC04; font-size: 14px; }
.gb-score  { font-size: 15px; font-weight: 700; color: var(--white); }
.gb-count  { font-size: 12px; color: rgba(255,255,255,.4); }


/* ── 6. MARQUEE ───────────────────────────────────────────── */
.marquee-strip {
  background: var(--green);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track { display: inline-block; animation: scroll 28s linear infinite; }
.marquee-track span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 0 28px;
}
.marquee-track span::after { content: '✦'; margin-left: 28px; opacity: .4; }
@keyframes scroll { to { transform: translateX(-50%); } }


/* ── 7. MAINTENANCE NOTICE ────────────────────────────────── */
.maintenance-notice {
  background: #FFF8E1;
  border-top: 3px solid #F59E0B;
  border-bottom: 3px solid #F59E0B;
  padding: 24px 0;
}
.mn-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #FFFBF0;
  border: 1px solid #F59E0B;
  border-radius: 14px;
  padding: 24px 32px;
  position: relative;
  overflow: hidden;
}
.mn-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, rgba(245,158,11,.04) 0px, rgba(245,158,11,.04) 10px, transparent 10px, transparent 20px
  );
}
.mn-icon {
  font-size: 36px;
  flex-shrink: 0;
  animation: wobble 4s linear infinite;
}
@keyframes wobble { 0%, 100% { transform: rotate(-10deg); } 50% { transform: rotate(10deg); } }
.mn-content { flex: 1; position: relative; z-index: 1; }
.mn-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 6px;
}
.mn-text { font-size: 14px; color: #78350F; line-height: 1.7; margin-bottom: 14px; }
.mn-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F59E0B;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all .2s;
  letter-spacing: .3px;
}
.mn-email-btn:hover { background: #D97706; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.35); }
.mn-badge {
  flex-shrink: 0;
  background: #F59E0B;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 18px;
  border-radius: 10px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}


/* ── 8. VIDEO INTRO ───────────────────────────────────────── */
.video-intro { padding: 80px 0; background: var(--white); position: relative; overflow: hidden; }
.video-intro::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green), var(--lime));
}
.vi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.vi-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}
.vi-text h2 em { font-style: italic; color: var(--green); }
.vi-text p { font-size: 16px; color: var(--text-mid); line-height: 1.9; margin-top: 14px; }
.vi-points { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.vi-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
}
.vi-point::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.vi-badge-row { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.vi-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

/* Video player */
.vi-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--green-deep);
  box-shadow: 0 24px 64px rgba(15,61,37,.22);
}
.vi-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  border: 3px solid rgba(111,207,151,.25);
  pointer-events: none;
}
.vi-video-wrap iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }

.vi-video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.vi-video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(111,207,151,.15) 0%, transparent 60%);
}
.vi-play-btn {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  position: relative; z-index: 1;
}
.vi-play-btn::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--green);
  margin-left: 4px;
}
.vi-video-placeholder:hover .vi-play-btn { transform: scale(1.1); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.vi-video-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.vi-video-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 24px;
}


/* ── 9. ABOUT ─────────────────────────────────────────────── */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}
.about-text p { font-size: 16px; color: var(--text-mid); line-height: 1.9; margin-bottom: 18px; }
.about-text strong { color: var(--text); font-weight: 700; }
.about-quote {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 3px solid var(--green);
  background: var(--green-pale);
  border-radius: 0 8px 8px 0;
}
.about-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: var(--green-dark); line-height: 1.6; }

.about-visual { position: relative; }
.about-year-badge {
  position: absolute; top: -20px; right: 20px;
  background: var(--lime);
  color: var(--green-deep);
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
}
.about-card {
  background: var(--green-deep);
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
  padding: 40px;
}
.about-card-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--lime); margin-bottom: 20px; }
.about-card h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.about-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 24px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.7);
  padding: 6px 14px;
}
.about-tag.active { background: var(--green); border-color: var(--green); color: var(--white); }


/* ── 10. CEO MESSAGE ──────────────────────────────────────── */
.ceo { padding: 100px 0; background: var(--green-pale); }
.ceo-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.ceo-avatar {
  width: 100%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.ceo-avatar-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.ceo-avatar-placeholder .initials {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,.2);
}
.ceo-name-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}
.ceo-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text); }
.ceo-role { font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }
.ceo-message h2 { margin-bottom: 28px; }
.ceo-message blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.7;
  border-left: 3px solid var(--green);
  padding-left: 24px;
  margin: 28px 0;
}
.ceo-message p { font-size: 16px; color: var(--text-mid); line-height: 1.9; margin-bottom: 18px; }
.ceo-sig { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.sig-line { width: 48px; height: 2px; background: var(--green); }
.sig-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--text); }
.sig-title { font-size: 12px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }


/* ── 11. SERVICES ─────────────────────────────────────────── */
.services { padding: 100px 0; background: var(--white); }
.services-header { max-width: 640px; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }

.service-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.service-card:hover { background: var(--green-deep); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  position: absolute; top: 20px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(46,125,79,.07);
  line-height: 1;
  transition: color .4s;
}
.service-card:hover .service-num { color: rgba(255,255,255,.05); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all .4s;
}
.service-card:hover .service-icon { background: rgba(255,255,255,.1); }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600;
  color: var(--text);
  margin-bottom: 12px; line-height: 1.3;
  transition: color .4s;
}
.service-card:hover h3 { color: var(--lime); }
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; transition: color .4s; }
.service-card:hover p { color: rgba(255,255,255,.55); }
.service-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover .service-arrow { opacity: 1; color: var(--lime); }


/* ── 12. APTITUDE PRO ─────────────────────────────────────── */
.aptitude-pro { padding: 100px 0; background: var(--green-deep); position: relative; overflow: hidden; }
.aptitude-pro::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(111,207,151,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,207,151,.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.aptitude-pro::after {
  content: '';
  position: absolute; top: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,207,151,.08) 0%, transparent 70%);
}
.ap-inner { position: relative; z-index: 1; }
.ap-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}
.ap-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,207,151,.12);
  border: 1px solid rgba(111,207,151,.25);
  color: var(--lime);
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.ap-badge-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: blink 2s infinite; }
.ap-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--white); line-height: 1.1; }
.ap-header h2 em { font-style: italic; color: var(--lime); }
.ap-header p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.9; margin-top: 16px; }
.ap-cta-group { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* Portal mockup */
.ap-screen {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.ap-screen-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.ap-dot { width: 10px; height: 10px; border-radius: 50%; }
.ap-screen-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-left: auto;
}
.ap-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ap-preview-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px;
}
.apc-icon  { font-size: 22px; margin-bottom: 8px; }
.apc-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--lime); margin-bottom: 4px; }
.apc-val   { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); }
.apc-sub   { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* Feature cards */
.ap-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.05);
}
.ap-feature {
  background: var(--green-deep);
  padding: 36px 28px;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.ap-feature::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--lime);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.ap-feature:hover { background: rgba(111,207,151,.08); }
.ap-feature:hover::before { transform: scaleX(1); }
.ap-feature-icon { font-size: 32px; margin-bottom: 16px; }
.ap-feature h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.ap-feature p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; }
.ap-feature-num {
  position: absolute; top: 16px; right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: rgba(255,255,255,.04); line-height: 1;
}

/* Bottom CTA bar */
.ap-bottom {
  margin-top: 64px;
  background: rgba(111,207,151,.07);
  border: 1px solid rgba(111,207,151,.15);
  border-radius: 20px;
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.ap-bottom-text h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.ap-bottom-text p  { font-size: 15px; color: rgba(255,255,255,.55); max-width: 520px; line-height: 1.8; }
.ap-stats-row { display: flex; gap: 40px; flex-wrap: wrap; }
.ap-stat-num   { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--lime); }
.ap-stat-label { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }


/* ── 13. EQUIVALENCE ──────────────────────────────────────── */
.equiv { padding: 100px 0; background: var(--green-deep); position: relative; overflow: hidden; }
.equiv::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(111,207,151,.1) 0%, transparent 70%);
}
.equiv .tag::before { background: var(--lime); }
.equiv .tag, .equiv h2.headline em { color: var(--lime); }
.equiv h2.headline { color: var(--white); }
.equiv-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 20px; color: var(--lime); margin: 16px 0 8px; line-height: 1.5; }
.equiv-intro { font-size: 16px; color: rgba(255,255,255,.62); max-width: 760px; line-height: 1.9; margin-bottom: 56px; }

.equiv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.06); margin-bottom: 56px; }
.equiv-card { background: var(--green-deep); padding: 36px 28px; transition: background .3s; }
.equiv-card:hover { background: rgba(111,207,151,.1); }
.equiv-card-icon { font-size: 28px; margin-bottom: 14px; }
.equiv-card h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--lime); margin-bottom: 10px; line-height: 1.3; }
.equiv-card p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; }
.equiv-check   { font-size: 13px; color: rgba(111,207,151,.8); font-weight: 600; margin-top: 8px; }

.equiv-why {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 48px;
}
.equiv-why h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 16px; line-height: 1.3; }
.equiv-why > div > p { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.9; }

.equiv-risks { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.equiv-risk {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,59,59,.06);
  border: 1px solid rgba(255,100,100,.12);
  border-radius: 10px; padding: 13px 16px;
}
.risk-text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

.opp-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 16px; margin-bottom: 10px;
}
.opp-icon { font-size: 20px; flex-shrink: 0; }
.opp-text { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; font-weight: 500; }

.equiv-who-title { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--lime); margin-bottom: 20px; }
.equiv-who { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.who-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 20px 14px; text-align: center; transition: all .3s;
}
.who-card:hover { background: rgba(111,207,151,.1); border-color: rgba(111,207,151,.3); }
.who-icon  { font-size: 24px; margin-bottom: 8px; }
.who-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); line-height: 1.4; }


/* ── 14. WHY CHOOSE US ────────────────────────────────────── */
.why { padding: 100px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 48px; }
.why-stat { background: var(--white); padding: 28px 24px; position: relative; overflow: hidden; }
.why-stat:first-child  { background: var(--green-deep); }
.why-stat:nth-child(2) { background: var(--green); }
.why-stat:first-child  .ws-num, .why-stat:first-child  .ws-label { color: var(--lime);  }
.why-stat:nth-child(2) .ws-num  { color: var(--white); }
.why-stat:nth-child(2) .ws-label{ color: rgba(255,255,255,.65); }
.why-stat:first-child .ws-label { color: rgba(255,255,255,.55); }
.ws-num   { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--text); line-height: 1; }
.ws-label { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

.why-features { display: flex; flex-direction: column; }
.why-feature { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.why-feature:last-child { border: none; }
.wf-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.wf-title { font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 5px; }
.wf-desc  { font-size: 14px; color: var(--text-mid); line-height: 1.7; }


/* ── 15. DESTINATIONS ─────────────────────────────────────── */
.destinations { padding: 100px 0; background: var(--green-pale); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 52px;
}
.dest-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all .3s;
  cursor: pointer;
}
.dest-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.dest-country { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--text); }
.dest-type { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }


/* ── 16. PARTNERS & RFQ ───────────────────────────────────── */
.partners { padding: 80px 0; background: var(--white); }
.partners-subtitle { font-size: 15px; color: var(--text-mid); margin-top: 12px; max-width: 580px; }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }

.partner-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 14px; padding: 26px 18px; text-align: center; transition: all .3s;
}
.partner-card:hover { border-color: var(--green); background: var(--green-pale); transform: translateY(-3px); box-shadow: var(--shadow); }
.partner-icon {
  width: 50px; height: 50px; background: var(--green); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 20px;
}
.partner-name { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.partner-type { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.partner-featured {
  grid-column: span 2; display: flex; align-items: center; gap: 20px;
  text-align: left; padding: 22px 28px; background: var(--green-pale); border-color: var(--green);
}
.partner-featured .partner-icon { flex-shrink: 0; background: var(--green-dark); }
.partner-featured .partner-name { font-size: 17px; }

.rfq-banner {
  margin-top: 48px; background: var(--green-deep); border-radius: 20px;
  padding: 44px 52px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.rfq-banner h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.rfq-banner p  { font-size: 15px; color: rgba(255,255,255,.55); max-width: 500px; line-height: 1.7; }
.rfq-actions   { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }


/* ── 17. HISTORY TIMELINE ─────────────────────────────────── */
.history { padding: 100px 0; background: var(--green-deep); position: relative; overflow: hidden; }
.history::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(111,207,151,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.history-inner  { position: relative; z-index: 1; }
.history .tag   { color: var(--lime); }
.history .tag::before { background: var(--lime); }
.history h2.headline      { color: var(--white); }
.history h2.headline em   { color: var(--lime); }

.timeline { margin-top: 60px; position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: rgba(111,207,151,.2);
}
.timeline-item { display: flex; gap: 32px; margin-bottom: 44px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.tl-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-deep);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1; transition: all .3s;
}
.tl-dot:hover { background: var(--green); border-color: var(--lime); }
.tl-year { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--lime); }
.tl-content { padding-top: 12px; flex: 1; }
.tl-content h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.tl-content p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; }


/* ── 18. VISION & MISSION ─────────────────────────────────── */
.vision-mission { padding: 100px 0; background: var(--green-deep); position: relative; overflow: hidden; }
.vm-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(111,207,151,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,207,151,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.vm-inner { position: relative; z-index: 1; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 60px; }
.vm-card { padding: 56px 48px; border: 1px solid rgba(255,255,255,.06); }
.vm-card.vision  { background: rgba(255,255,255,.04); }
.vm-card.mission { background: rgba(111,207,151,.08); }
.vm-label  { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.vm-card h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.vm-card p  { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.9; }
.vm-divider { width: 40px; height: 3px; background: var(--lime); margin: 20px 0; }


/* ── 19. TEAM ─────────────────────────────────────────────── */
.team { padding: 100px 0; background: var(--white); }
.team-desc { max-width: 600px; margin-bottom: 60px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.team-card { background: var(--off-white); border-radius: 16px; overflow: hidden; transition: all .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card:first-child { background: var(--green-deep); }
.team-card:first-child .team-name  { color: var(--white); }
.team-card:first-child .team-role  { color: var(--lime); }
.team-card:first-child .team-divider { background: var(--lime); }
.team-card:first-child .team-initial { color: rgba(255,255,255,.2); }

.team-avatar {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-initial { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: rgba(255,255,255,.25); }
.team-info { padding: 24px; }
.team-name    { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.3; }
.team-role    { font-size: 12px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.team-divider { width: 24px; height: 2px; background: var(--green); margin: 12px 0; }


/* ── 20. CORPORATE OPPORTUNITIES ─────────────────────────── */
.corporate { padding: 100px 0; background: var(--white); }
.corporate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 56px; background: var(--border); }
.corp-card { background: var(--white); padding: 44px 36px; transition: all .3s; }
.corp-card:hover { background: var(--green-pale); }
.corp-icon  { font-size: 36px; margin-bottom: 16px; }
.corp-num   { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--green); line-height: 1; }
.corp-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--text); margin: 12px 0 10px; }
.corp-desc  { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.corp-cta   { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); }


/* ── 21. TESTIMONIALS & REVIEWS ──────────────────────────── */
.testimonials { padding: 100px 0; background: var(--off-white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.testi-card {
  background: var(--white);
  border-radius: 16px; padding: 32px;
  border: 1px solid var(--border); transition: all .3s;
}
.testi-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.testi-stars   { color: #F5A623; font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text    { font-size: 15px; color: var(--text-mid); line-height: 1.8; font-style: italic; }
.testi-author  { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.testi-avatar  { width: 44px; height: 44px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.testi-name    { font-weight: 700; font-size: 14px; color: var(--text); }
.testi-role    { font-size: 12px; color: var(--text-light); }

.testi-featured { grid-column: span 3; background: var(--green-deep); border-color: transparent; }
.testi-featured .testi-text    { color: rgba(255,255,255,.7); }
.testi-featured .testi-name    { color: var(--white); }
.testi-featured .testi-role    { color: rgba(255,255,255,.45); }
.testi-featured .testi-author  { border-top-color: rgba(255,255,255,.1); }
.testi-featured .testi-avatar  { background: var(--lime); color: var(--green-deep); }

/* Google proof bar */
.google-proof {
  margin-top: 40px; background: var(--white);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.gp-left h4 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text); }
.gp-left p  { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.gp-right   { display: flex; align-items: center; gap: 16px; }
.gp-rating  { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--text); }
.gp-stars-wrap .stars { color: #F5A623; font-size: 20px; }
.gp-stars-wrap p      { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* Mini review grid */
.real-reviews { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border); }
.real-reviews-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-mini {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px; transition: all .3s;
}
.review-mini:hover { border-color: var(--green); box-shadow: var(--shadow); }
.review-mini-stars  { color: #F5A623; font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.review-mini-text   { font-size: 13px; color: var(--text-mid); line-height: 1.8; font-style: italic; }
.review-mini-author { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.rma { width: 32px; height: 32px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.rmn { font-size: 13px; font-weight: 700; color: var(--text); }

.google-reviews-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 13px; font-weight: 700; color: var(--green);
  border: 1.5px solid var(--green); padding: 10px 20px;
  border-radius: 6px; transition: all .3s;
}
.google-reviews-link:hover { background: var(--green); color: var(--white); }


/* ── 22. FAQ ──────────────────────────────────────────────── */
.faq { padding: 100px 0; background: var(--off-white); }
.faq-intro { max-width: 600px; margin-bottom: 52px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--border); }
.faq-item { background: var(--white); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--text); line-height: 1.4; transition: color .2s;
}
.faq-q:hover,
.faq-q.open { color: var(--green); }
.faq-toggle {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--green); flex-shrink: 0;
  transition: all .3s;
}
.faq-q.open .faq-toggle { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.85; }
.faq-a.open { display: block; }


/* ── 23. CAREERS ──────────────────────────────────────────── */
.careers { padding: 100px 0; background: var(--off-white); position: relative; overflow: hidden; }
.careers::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,79,.05) 0%, transparent 70%);
}
.careers-inner { position: relative; z-index: 1; }
.careers-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: start; margin-bottom: 64px;
}
.careers-intro p { font-size: 16px; color: var(--text-mid); line-height: 1.9; margin-top: 14px; }

.careers-stat-cards { display: flex; flex-direction: column; gap: 12px; }
.career-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 24px;
  display: flex; align-items: center; gap: 18px; transition: all .3s;
}
.career-stat-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.csc-icon  { width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.csc-num   { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--green); }
.csc-label { font-size: 12px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.careers-roles-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 24px; }
.roles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 52px; }

.role-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 28px; transition: all .35s;
  position: relative; overflow: hidden;
}
.role-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--green);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.role-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.role-card:hover::before { transform: scaleX(1); }
.role-card.featured { background: var(--green-deep); border-color: transparent; }
.role-card.featured .role-title    { color: var(--white); }
.role-card.featured .role-desc     { color: rgba(255,255,255,.55); }
.role-card.featured .role-tag      { background: rgba(111,207,151,.15); color: var(--lime); border-color: rgba(111,207,151,.3); }
.role-card.featured .role-icon-wrap { background: rgba(255,255,255,.1); }
.role-card.featured::before        { background: var(--lime); }
.role-card.featured .role-priority { background: rgba(111,207,151,.15); color: var(--lime); }

.role-priority {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); background: var(--green-pale); padding: 4px 10px; border-radius: 100px;
}
.role-icon-wrap { width: 52px; height: 52px; background: var(--green-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.role-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.role-desc  { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.role-tags  { display: flex; flex-wrap: wrap; gap: 7px; }
.role-tag   { font-size: 11px; font-weight: 700; color: var(--green); background: var(--green-pale); border: 1px solid var(--border); border-radius: 100px; padding: 4px 12px; }

/* Proposal form */
.careers-proposal {
  background: var(--green-deep); border-radius: 24px;
  padding: 56px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.careers-proposal::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(111,207,151,.1) 0%, transparent 70%);
}
.careers-proposal::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,79,.3) 0%, transparent 70%);
}
.cp-text { position: relative; z-index: 1; }
.cp-text h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.cp-text h3 em { font-style: italic; color: var(--lime); }
.cp-text p     { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.9; margin-bottom: 24px; }

.cp-steps { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.cp-step  { display: flex; align-items: flex-start; gap: 14px; }
.cp-step-num {
  width: 32px; height: 32px;
  background: rgba(111,207,151,.15); border: 1px solid rgba(111,207,151,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--lime); flex-shrink: 0;
}
.cp-step-text        { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; padding-top: 5px; }
.cp-step-text strong { color: var(--lime); display: block; font-size: 13px; margin-bottom: 2px; }

.cp-form {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 32px;
  position: relative; z-index: 1; backdrop-filter: blur(8px);
}
.cp-form h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 20px; }

.cp-input {
  width: 100%;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 13px 16px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--white);
  outline: none; transition: border-color .3s; margin-bottom: 12px;
}
.cp-input::placeholder { color: rgba(255,255,255,.3); }
.cp-input:focus        { border-color: var(--lime); background: rgba(255,255,255,.1); }

.cp-select {
  width: 100%;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 13px 16px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; color: rgba(255,255,255,.7);
  outline: none; transition: border-color .3s; margin-bottom: 12px; cursor: pointer;
}
.cp-select option { background: var(--green-deep); color: var(--white); }
.cp-select:focus  { border-color: var(--lime); }

.cp-file-label {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1.5px dashed rgba(255,255,255,.2);
  border-radius: 10px; padding: 13px 16px;
  font-size: 13px; color: rgba(255,255,255,.5);
  cursor: pointer; transition: all .3s; margin-bottom: 12px;
}
.cp-file-label:hover { border-color: var(--lime); color: var(--lime); }
.cp-file-label input { display: none; }

.cp-submit {
  width: 100%; background: var(--lime); color: var(--green-deep);
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; border-radius: 10px; padding: 14px;
  cursor: pointer; transition: all .3s;
}
.cp-submit:hover { background: #8DE0AE; transform: translateY(-2px); }


/* ── 24. CONTACT ──────────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 52px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mid); display: block; margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; background: var(--off-white);
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif; font-size: 15px; color: var(--text);
  outline: none; transition: border-color .3s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--green); background: var(--white); }
.form-textarea  { height: 120px; resize: vertical; }
.form-submit    { width: 100%; padding: 16px; font-size: 14px; border-radius: 8px; margin-top: 4px; }
.form-success {
  display: none; padding: 16px;
  background: var(--green-pale); border: 1px solid var(--green);
  border-radius: 8px; color: var(--green-dark); font-weight: 600; font-size: 14px;
  margin-top: 12px; text-align: center;
}

.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.info-icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.info-value { font-size: 15px; color: var(--text); font-weight: 600; margin-top: 2px; }
.info-value a { color: var(--green); }

.whatsapp-cta {
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: var(--white);
  padding: 16px 24px; border-radius: 10px;
  font-weight: 700; font-size: 14px;
  margin-top: 8px; transition: all .3s; width: fit-content;
}
.whatsapp-cta:hover { background: #1ebe5d; transform: translateY(-2px); }

.map-card { margin-top: 28px; background: var(--green-deep); border-radius: 14px; padding: 28px; color: var(--white); }
.map-card-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--lime); margin-bottom: 10px; }
.map-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 6px; }
.map-card p  { font-size: 13px; color: rgba(255,255,255,.55); }


/* ── 25. FOOTER ───────────────────────────────────────────── */
.footer-bar { height: 4px; background: linear-gradient(90deg, var(--green-deep), var(--green), var(--lime), var(--green), var(--green-deep)); }

footer { background: var(--text); padding: 72px 0 40px; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-col h5 { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 13px; font-weight: 700; transition: all .2s;
}
.social-btn:hover { border-color: var(--lime); color: var(--lime); }


/* ── 26. BACK TO TOP ──────────────────────────────────────── */
#btt {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--green); color: var(--white);
  border: none; border-radius: 10px;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 4px 16px rgba(46,125,79,.35);
  transition: all .3s; z-index: 99;
}
#btt.show  { display: flex; }
#btt:hover { background: var(--green-dark); transform: translateY(-2px); }



/* ── MISSING / UTILITY CLASSES ───────────────────────────── */

/* Skip-to-content link (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* Hero layout */
.hero-left { /* left column of hero grid */ }

/* hero outline button on dark background */
.btn-hero-outline {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.3);
  font-weight: 700;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}

/* Lime-tinted outline (Aptitude Pro section) */
.btn-lime-outline {
  background: transparent;
  color: var(--lime);
  border: 2px solid rgba(111,207,151,.4);
}
.btn-lime-outline:hover { background: rgba(111,207,151,.1); border-color: var(--lime); }

/* Size modifiers */
.btn-rounded { border-radius: 6px; }
.btn-sm { font-size: 13px; }

/* Inline text link */
.inline-link { color: var(--green); font-weight: 700; }
.inline-link:hover { text-decoration: underline; }

/* Colored text utility */
.text-lime { color: var(--lime); }

/* Vision/Mission section — light text on dark bg */
.tag--light { color: var(--lime); }
.tag--light::before { background: var(--lime); }
.headline--light { color: var(--white); }
.headline--light em { color: var(--lime); }

/* About section button group */
.btn-group { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Careers body text */
.careers-body-text { font-size: 15px; color: var(--text-mid); line-height: 1.9; margin-top: 14px; }

/* Careers CTA wrapper */
.careers-cta { margin-top: 24px; }

/* vi-cta button group */
.vi-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact section sub-text spacing */
.contact-sub { margin-bottom: 32px !important; }

/* Footer tagline */
.footer-tagline {
  margin-top: 10px;
  font-style: italic;
  color: rgba(255,255,255,.2);
  font-size: 12px;
}

/* Equivalence section utilities */
.equiv-risk-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.tag-subsection { margin-bottom: 20px; }

/* Section CTA block (centered) */
.section-cta { text-align: center; margin-top: 48px; }
.section-cta-note { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.35); }

/* Destination grid flag image */
.dest-flag-img { display: block; margin: 0 auto 12px; border-radius: 3px; }

/* CEO avatar — proper aspect ratio instead of inline height */
.ceo-avatar { aspect-ratio: 3 / 4; height: auto; }

/* Team avatar placeholder */
.team-avatar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Aptitude Pro stats row */
.ap-stat { text-align: center; }

/* Aptitude Pro bottom section stats */
.ap-stat-num   { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--lime); }
.ap-stat-label { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* Contact grid top margin */
.contact-grid { margin-top: 52px; }

/* ── 27. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .why-grid,
  .vm-grid, .contact-grid, .ceo-inner,
  .vi-inner, .ap-header, .careers-top,
  .careers-proposal { grid-template-columns: 1fr; gap: 48px; }

  .hero-right { display: none; }
  .team-grid  { grid-template-columns: repeat(2, 1fr); }
  .dest-grid  { grid-template-columns: repeat(4, 1fr); }
  .ap-features { grid-template-columns: 1fr 1fr; }
  .ap-bottom  { flex-direction: column; gap: 32px; padding: 36px; }
  .equiv-grid { grid-template-columns: 1fr 1fr; }
  .equiv-why  { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .equiv-who  { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-featured { grid-column: span 2; }
  .testi-featured { grid-column: span 1; }
  .roles-grid { grid-template-columns: 1fr; }
  .faq-grid   { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .rfq-banner { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .careers-proposal { padding: 40px 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  nav { top: 0 !important; }
  .nav-topbar { display: none; }

  section,
  .about, .services, .why, .history, .team,
  .destinations, .corporate, .testimonials, .contact { padding: 72px 0; }

  .services-grid, .corporate-grid, .why-stats { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr 1fr; }
  .dest-grid    { grid-template-columns: repeat(2, 1fr); }
  .testi-grid   { grid-template-columns: 1fr; }
  .testi-featured { grid-column: span 1; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .google-proof { flex-direction: column; gap: 20px; }
  .hero-stats   { gap: 20px; }
  .ceo-portrait { position: static; }
  .ap-features  { grid-template-columns: 1fr; }
  .ap-stats-row { gap: 24px; }
  .ap-bottom    { padding: 28px 20px; }
  .equiv-grid   { grid-template-columns: 1fr; }
  .equiv-why    { padding: 28px 20px; }
  .equiv-who    { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .partner-featured { grid-column: span 2; }
  .rfq-banner   { flex-direction: column; padding: 28px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .mn-inner     { flex-direction: column; text-align: center; padding: 20px; }
  .mn-badge     { display: none; }
  .vi-badge-row { gap: 8px; }
  .careers-proposal { padding: 28px 20px; }
  .cp-text h3   { font-size: 24px; }
}


/* ============================================================
   SPA ROUTING — Page show/hide system
   ============================================================ */

/* All sub-page sections hidden by default */
[data-page]:not([data-page="home"]) {
  display: none;
}

/* Active page sections shown */
[data-page].page-visible {
  display: block;
}

/* Marquee hidden on sub-pages */
.marquee-strip[data-page="home"] {
  display: block;
}
.marquee-strip.page-hidden {
  display: none;
}

/* Page fade-in animation */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-page].page-visible {
  animation: pageFadeIn .35s ease both;
}

/* ── Sub-page back bar ──────────────────────────────────────── */
.subpage-header {
  background: var(--green-pale);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.subpage-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid var(--green);
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .3px;
}
.back-home-btn:hover {
  background: var(--green);
  color: var(--white);
}
.subpage-breadcrumb {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Active nav link state for pages ───────────────────────── */
.nav-links a.page-active,
.drawer-link.page-active {
  color: var(--green);
  background: var(--green-pale);
}

/* ── Page transition overlay ────────────────────────────────── */
#pageTransition {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
#pageTransition.active {
  opacity: .4;
  pointer-events: all;
}

/* Responsive: sub-page back bar top offset on mobile */
@media (max-width: 768px) {
  .subpage-header { top: 0; }
}