/* =========================================
   PANOPTIC EDUCATION CONSULTANTS
   GoUK-Inspired Design System v2.0
   Colors: Navy Blue + Emerald Green on White
   ========================================= */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Brand – Navy Blue (logo badge) */
  --clr-primary: #1B3A6B;
  --clr-primary-dark: #132d56;
  --clr-primary-tint: #E8EFF8;

  /* Brand – Emerald Green (logo laurel) */
  --clr-accent: #1A8A52;
  --clr-accent-dark: #156B40;
  --clr-accent-tint: #E6F5ED;

  /* GoUK-style neutrals */
  --clr-white: #FFFFFF;
  --clr-bg: #FAFAFA;
  --clr-bg-2: #F6F6F6;
  --clr-text: #1F1F1F;
  --clr-text-2: #3F3F3F;
  --clr-muted: #6E6E6E;
  --clr-border: #EBEBEB;
  --clr-border-light: #F4F4F4;

  --ff-heading: 'Plus Jakarta Sans', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* GoUK-style radii – pill buttons, very rounded cards */
  --radius-btn: 50px;
  --radius-card: 24px;
  --radius-lg: 32px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* GoUK-style shadows – very soft */
  --shadow-xs: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 50px rgba(0,0,0,0.08);
  --shadow-header: 0 1px 30px 4px rgba(0,0,0,0.07);

  --nav-height: 80px;
  --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === LAYOUT === */
.container { max-width: 1224px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--bg { background: var(--clr-bg); }
.section--tint-green { background: var(--clr-accent-tint); }
.section--tint-blue { background: var(--clr-primary-tint); }
.section--dark {
  background: linear-gradient(130deg, var(--clr-primary) 0%, #0F4A30 100%);
  color: var(--clr-white);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header { text-align: center; margin-bottom: 56px; }

/* GoUK-style pill eyebrow badge */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--clr-accent);
  background: var(--clr-accent-tint);
  padding: 6px 16px;
  border-radius: var(--radius-btn);
  margin-bottom: 18px;
  border: 1px solid rgba(26,138,82,0.18);
}
.section-title {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.section-title span { color: var(--clr-primary); }
.section-subtitle {
  font-size: 17px;
  color: var(--clr-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}
.section--dark .section-eyebrow { background: rgba(255,255,255,0.1); color: #a8ffd1; border-color: rgba(255,255,255,0.15); }
.section--dark .section-title { color: var(--clr-white); }
.section--dark .section-title span { color: #6efdb1; }
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* === PILL BUTTONS (GoUK-style) === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);    /* ← pill shape */
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
/* Blue filled */
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,58,107,0.28);
}
/* Green filled */
.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.btn-accent:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,138,82,0.32);
}
/* Dark outline (GoUK secondary) */
.btn-outline-dark {
  background: var(--clr-white);
  color: var(--clr-text);
  border-color: #D0D0D0;
}
.btn-outline-dark:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
/* White outline (on dark backgrounds) */
.btn-outline-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}
/* Green outline */
.btn-outline-accent {
  background: transparent;
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}
.btn-outline-accent:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13.5px; }
.btn-full { width: 100%; }

/* === NAVBAR – Always White (GoUK-style) === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--clr-white);
  box-shadow: var(--shadow-header);
  transition: box-shadow var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
.navbar-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-brand img { height: 44px; width: auto; }

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text-2);
  border-radius: var(--radius-btn);
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--ff-body);
}
.nav-link:hover, .nav-link.active {
  color: var(--clr-accent);
  background: var(--clr-accent-tint);
}
.nav-chevron { font-size: 10px; transition: transform var(--transition); display: inline-block; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* GoUK-style dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px 5px rgba(0,0,0,0.09);
  min-width: 480px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
  border: 1px solid var(--clr-border);
  transform: translateX(-50%) translateY(-6px);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  color: var(--clr-text);
  text-decoration: none;
}
.dropdown-item:hover { background: var(--clr-accent-tint); }
.dropdown-flag { font-size: 38px; line-height: 1; flex-shrink: 0; }
.dropdown-country { font-family: var(--ff-heading); font-weight: 700; font-size: 15px; color: var(--clr-primary); margin-bottom: 3px; }
.dropdown-desc { font-size: 12.5px; color: var(--clr-muted); line-height: 1.4; }

/* Navbar actions */
.navbar-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #4a4a4a;
  letter-spacing: -0.03em;
  transition: color var(--transition);
  white-space: nowrap;
  font-family: var(--ff-heading);
}
.nav-phone:hover { color: var(--clr-accent); }

/* Mobile toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.navbar-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--clr-white);
  z-index: 999;
  overflow-y: auto;
  padding: 20px 16px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--clr-border);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: var(--ff-heading);
  text-decoration: none;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--clr-accent-tint); color: var(--clr-accent); }
.mobile-sub-label { font-size: 11px; font-weight: 700; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 1px; padding: 10px 16px 4px; }
.mobile-sub { padding: 0 0 4px; }
.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px 11px 28px;
  font-size: 15px;
  color: var(--clr-text-2);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  font-weight: 500;
}
.mobile-sub-link:hover { background: var(--clr-accent-tint); color: var(--clr-accent); }
.mobile-divider { height: 1px; background: var(--clr-border); margin: 12px 0; }
.mobile-actions { display: flex; flex-direction: column; gap: 10px; padding: 4px 0 16px; }

/* === HERO – GoUK style: white bg + colored blur blobs === */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--clr-white);
  padding: calc(var(--nav-height) + 72px) 0 88px;
  text-align: center;
}
/* Decorative ambient blobs (GoUK signature) */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-blob--blue {
  width: 600px; height: 600px;
  background: rgba(27,58,107,0.12);
  filter: blur(140px);
  top: -160px; left: -120px;
}
.hero-blob--green {
  width: 520px; height: 520px;
  background: rgba(26,138,82,0.13);
  filter: blur(120px);
  bottom: -140px; right: -80px;
}
.hero-blob--green2 {
  width: 350px; height: 350px;
  background: rgba(26,138,82,0.08);
  filter: blur(100px);
  top: 30%; left: 60%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
/* GoUK-style pill eyebrow on white */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  background: var(--clr-accent-tint);
  border: 1px solid rgba(26,138,82,0.2);
  padding: 7px 18px;
  border-radius: var(--radius-btn);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero-title span { color: var(--clr-primary); }
.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--clr-text-2);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  justify-content: center;
  align-items: center;
}
/* Trust badges below hero buttons */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-muted);
  font-size: 14px;
  font-weight: 500;
}
.hero-trust-check {
  width: 22px; height: 22px;
  background: var(--clr-accent-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--clr-accent);
  flex-shrink: 0;
  font-weight: 700;
}

/* === INNER PAGE HEADER (clean light banner) === */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
  padding: calc(var(--nav-height) + 52px) 0 60px;
  border-bottom: 1px solid var(--clr-border);
}
.page-header-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-header-blob--1 {
  width: 400px; height: 400px;
  background: rgba(27,58,107,0.08);
  filter: blur(90px);
  top: -100px; right: -50px;
}
.page-header-blob--2 {
  width: 300px; height: 300px;
  background: rgba(26,138,82,0.08);
  filter: blur(80px);
  bottom: -80px; left: -50px;
}
.page-header-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-accent); font-weight: 500; transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb-sep { font-size: 10px; color: var(--clr-border); }
.page-header-flag { font-size: 52px; margin-bottom: 16px; line-height: 1; }
.page-header-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.page-header-title span { color: var(--clr-primary); }
.page-header-desc {
  font-size: 17px;
  color: var(--clr-text-2);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.page-header-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* === STATS STRIP (GoUK-style – light green tint) === */
.stats-strip {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat-item {
  padding: 40px 20px;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 45%; width: 1px;
  background: var(--clr-border);
}
.stat-item:hover { background: var(--clr-accent-tint); }
.stat-icon { font-size: 26px; margin-bottom: 8px; }
.stat-number {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  letter-spacing: -0.03em;
}
.stat-number .suffix { color: var(--clr-accent); }
.stat-label {
  font-size: 12px;
  color: var(--clr-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* === DESTINATION CARDS === */
.destinations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  cursor: pointer;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow-md);
}
.destination-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.destination-card:hover .dest-bg { transform: scale(1.06); }
.dest-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,45,86,0.92) 0%, rgba(27,58,107,0.45) 55%, transparent 100%);
}
.dest-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
}
.dest-flag { font-size: 48px; margin-bottom: 12px; line-height: 1; display: block; }
.dest-name { font-family: var(--ff-heading); font-size: 28px; font-weight: 800; color: var(--clr-white); margin-bottom: 8px; letter-spacing: -0.02em; }
.dest-tagline { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 20px; line-height: 1.5; }
.dest-stats { display: flex; gap: 22px; margin-bottom: 24px; }
.dest-stat strong { display: block; font-size: 20px; font-weight: 800; color: #6efdb1; font-family: var(--ff-heading); letter-spacing: -0.02em; }
.dest-stat span { font-size: 12px; color: rgba(255,255,255,0.65); }

/* === FEATURE CARDS (GoUK-style light green bg) === */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}
.feature-card:hover {
  border-color: rgba(26,138,82,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  background: var(--clr-accent-tint);
}
.feature-icon-wrap {
  width: 64px; height: 64px;
  background: var(--clr-accent-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon-wrap { background: var(--clr-accent); }
.feature-title { font-family: var(--ff-heading); font-size: 18px; font-weight: 700; color: var(--clr-text); margin-bottom: 10px; letter-spacing: -0.02em; }
.feature-desc { font-size: 14px; color: var(--clr-muted); line-height: 1.7; }

/* === PROCESS STEPS === */
.process-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 8px;
}
.process-wrapper::before {
  content: '';
  position: absolute;
  top: 30px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-border), var(--clr-accent), var(--clr-border));
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-bubble {
  width: 60px; height: 60px;
  background: var(--clr-white);
  border: 2.5px solid var(--clr-accent);
  color: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .step-bubble { background: var(--clr-accent); color: var(--clr-white); transform: scale(1.1); }
.step-emoji { font-size: 20px; margin-bottom: 10px; }
.step-title { font-family: var(--ff-heading); font-size: 14.5px; font-weight: 700; color: var(--clr-text); margin-bottom: 6px; }
.step-desc { font-size: 12.5px; color: var(--clr-muted); line-height: 1.55; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: rgba(26,138,82,0.3); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: #F5A623; font-size: 16px; }
.testi-quote-mark { font-size: 60px; font-family: Georgia,serif; color: var(--clr-accent); line-height: 0.6; margin-bottom: 16px; display: block; opacity: 0.5; }
.testi-text { font-size: 14.5px; color: var(--clr-text-2); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--clr-accent-tint); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; border: 2px solid var(--clr-border); }
.testi-name { font-family: var(--ff-heading); font-size: 14.5px; font-weight: 700; color: var(--clr-text); }
.testi-meta { font-size: 12.5px; color: var(--clr-muted); margin-top: 2px; }
.testi-flag { position: absolute; top: 22px; right: 22px; font-size: 22px; }

/* === UNIVERSITY BADGES === */
.unis-scroll-wrapper { overflow: hidden; }
.unis-track { display: flex; gap: 16px; overflow-x: auto; padding: 8px 4px 16px; scrollbar-width: none; -ms-overflow-style: none; }
.unis-track::-webkit-scrollbar { display: none; }
.uni-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 28px;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-card);
  min-width: 155px;
  transition: all var(--transition);
}
.uni-badge:hover { border-color: var(--clr-accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); background: var(--clr-accent-tint); }
.uni-badge-icon { font-size: 30px; }
.uni-badge-name { font-size: 12.5px; font-weight: 600; color: var(--clr-muted); text-align: center; line-height: 1.3; }

/* === CTA BANNER – Green (GoUK-inspired) === */
.cta-banner {
  background: linear-gradient(130deg, var(--clr-primary) 0%, #0c3520 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Blob decoration in CTA */
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(26,138,82,0.18);
  filter: blur(100px);
  top: -150px; right: -80px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(27,58,107,0.25);
  filter: blur(100px);
  bottom: -100px; left: -60px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(110,253,177,0.15);
  border: 1px solid rgba(110,253,177,0.25);
  color: #6efdb1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-btn);
  margin-bottom: 22px;
}
.cta-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 14px;
  font-family: var(--ff-heading);
  letter-spacing: -0.03em;
}
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.72); margin-bottom: 44px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* === CONTACT PAGE === */
.contact-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 52px; align-items: start; }
.contact-info-title { font-size: 26px; font-weight: 800; color: var(--clr-text); margin-bottom: 8px; letter-spacing: -0.02em; }
.contact-info-sub { font-size: 15px; color: var(--clr-muted); margin-bottom: 32px; line-height: 1.6; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--clr-bg);
  border-radius: var(--radius-card);
  margin-bottom: 14px;
  transition: all var(--transition);
  border: 1.5px solid var(--clr-border);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-color: rgba(26,138,82,0.3); background: var(--clr-accent-tint); }
.contact-card-icon { width: 46px; height: 46px; background: var(--clr-white); border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--clr-accent); margin-bottom: 5px; }
.contact-card-value { font-size: 14px; color: var(--clr-text); font-weight: 500; line-height: 1.55; }
.contact-card-value a { color: var(--clr-primary); font-weight: 600; }
.contact-card-value a:hover { color: var(--clr-accent); }

.contact-form-box {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-heading { font-size: 24px; font-weight: 800; color: var(--clr-text); margin-bottom: 6px; letter-spacing: -0.02em; }
.form-subheading { font-size: 14px; color: var(--clr-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--clr-text); margin-bottom: 7px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus { border-color: var(--clr-accent); box-shadow: 0 0 0 3px rgba(26,138,82,0.1); background: var(--clr-white); }
.form-control::placeholder { color: #ABABAB; }
textarea.form-control { resize: vertical; min-height: 115px; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%236E6E6E' d='M1 1l5 4.5L11 1'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

/* === ABOUT PAGE === */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.about-image-main { border-radius: var(--radius-lg); overflow: hidden; height: 500px; background: var(--clr-bg); }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-float-badge {
  position: absolute;
  bottom: -20px; right: -24px;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 170px;
}
.about-badge-num { font-family: var(--ff-heading); font-size: 44px; font-weight: 800; color: var(--clr-primary); line-height: 1; letter-spacing: -0.04em; }
.about-badge-lbl { font-size: 13px; color: var(--clr-muted); font-weight: 500; margin-top: 4px; }
.about-checklist { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-icon { width: 28px; height: 28px; background: var(--clr-accent-tint); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--clr-accent); font-size: 13px; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.check-title { font-weight: 700; font-size: 15px; color: var(--clr-text); margin-bottom: 3px; }
.check-desc { font-size: 13.5px; color: var(--clr-muted); line-height: 1.6; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { text-align: center; padding: 36px 20px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-card); transition: all var(--transition); }
.value-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.value-icon { font-size: 38px; margin-bottom: 14px; display: block; }
.value-title { font-family: var(--ff-heading); font-size: 17px; font-weight: 700; color: var(--clr-white); margin-bottom: 8px; }
.value-desc { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--clr-white); border: 1.5px solid var(--clr-border); border-radius: var(--radius-card); overflow: hidden; transition: all var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(26,138,82,0.25); }
.team-avatar { height: 200px; background: linear-gradient(135deg, var(--clr-accent-tint) 0%, var(--clr-primary-tint) 100%); display: flex; align-items: center; justify-content: center; font-size: 70px; }
.team-info { padding: 24px; }
.team-name { font-family: var(--ff-heading); font-size: 17px; font-weight: 700; color: var(--clr-text); margin-bottom: 4px; }
.team-role { font-size: 12.5px; color: var(--clr-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.team-bio { font-size: 13.5px; color: var(--clr-muted); line-height: 1.6; }

/* === UK / CANADA PAGES === */
.highlights-bar { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 56px; }
.highlight-box {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 24px 14px;
  text-align: center;
  transition: all var(--transition);
}
.highlight-box:hover { border-color: var(--clr-accent); box-shadow: var(--shadow-sm); transform: translateY(-4px); background: var(--clr-accent-tint); }
.highlight-box-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.highlight-box-value { font-family: var(--ff-heading); font-size: 20px; font-weight: 800; color: var(--clr-primary); margin-bottom: 4px; letter-spacing: -0.02em; }
.highlight-box-label { font-size: 11.5px; color: var(--clr-muted); line-height: 1.35; font-weight: 500; }

.uni-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.uni-card { background: var(--clr-white); border: 1.5px solid var(--clr-border); border-radius: var(--radius-card); padding: 26px; transition: all var(--transition); }
.uni-card:hover { border-color: rgba(26,138,82,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); background: var(--clr-accent-tint); }
.uni-card-rank { font-size: 11.5px; color: var(--clr-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.uni-card-name { font-family: var(--ff-heading); font-size: 17px; font-weight: 700; color: var(--clr-text); margin-bottom: 6px; letter-spacing: -0.02em; }
.uni-card-loc { font-size: 13px; color: var(--clr-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.uni-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { background: var(--clr-accent-tint); color: var(--clr-accent); font-size: 11.5px; font-weight: 600; padding: 4px 11px; border-radius: var(--radius-btn); border: 1px solid rgba(26,138,82,0.15); }

/* Visa Steps */
.visa-steps { display: flex; flex-direction: column; gap: 16px; }
.visa-step { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; background: var(--clr-white); border: 1.5px solid var(--clr-border); border-radius: var(--radius-card); transition: all var(--transition); }
.visa-step:hover { border-color: rgba(26,138,82,0.3); box-shadow: var(--shadow-sm); background: var(--clr-accent-tint); }
.visa-step-num { width: 42px; height: 42px; background: var(--clr-primary); color: var(--clr-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-heading); font-weight: 800; font-size: 16px; flex-shrink: 0; }
.visa-step-title { font-family: var(--ff-heading); font-size: 16px; font-weight: 700; color: var(--clr-text); margin-bottom: 4px; }
.visa-step-desc { font-size: 13.5px; color: var(--clr-muted); line-height: 1.6; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-white); border: 1.5px solid var(--clr-border); border-radius: var(--radius-card); overflow: hidden; transition: all var(--transition); }
.faq-item.open { border-color: rgba(26,138,82,0.35); box-shadow: var(--shadow-xs); }
.faq-question { width: 100%; padding: 18px 22px; text-align: left; display: flex; justify-content: space-between; align-items: center; font-family: var(--ff-heading); font-size: 15.5px; font-weight: 600; color: var(--clr-text); cursor: pointer; transition: color var(--transition); gap: 14px; }
.faq-item.open .faq-question { color: var(--clr-accent); }
.faq-chevron { font-size: 16px; transition: transform var(--transition); color: var(--clr-muted); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--clr-accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--clr-muted); line-height: 1.75; }

/* Offices */
.offices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.office-card { background: var(--clr-white); border: 1.5px solid var(--clr-border); border-radius: var(--radius-card); padding: 32px; transition: all var(--transition); }
.office-card:hover { border-color: rgba(26,138,82,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.office-badge { display: inline-block; background: var(--clr-primary); color: var(--clr-white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 14px; border-radius: var(--radius-btn); margin-bottom: 16px; }
.office-city { font-family: var(--ff-heading); font-size: 22px; font-weight: 800; color: var(--clr-text); margin-bottom: 20px; letter-spacing: -0.02em; }
.office-detail { display: flex; gap: 12px; margin-bottom: 13px; font-size: 14px; color: var(--clr-muted); align-items: flex-start; line-height: 1.55; }
.office-detail-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.office-detail a { color: var(--clr-primary); font-weight: 600; }
.office-detail a:hover { color: var(--clr-accent); }

/* Split layout */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }

/* === FOOTER – Light (GoUK-style) === */
.footer { background: var(--clr-bg); border-top: 1px solid var(--clr-border); }
.footer-top { padding: 64px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 44px; }
.footer-logo { height: 42px; width: auto; margin-bottom: 18px; }
.footer-desc { font-size: 14px; color: var(--clr-muted); line-height: 1.75; margin-bottom: 24px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; background: var(--clr-white); border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--clr-muted); font-size: 16px; transition: all var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--clr-accent); border-color: var(--clr-accent); color: var(--clr-white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.footer-col-title { font-family: var(--ff-heading); font-size: 14.5px; font-weight: 700; color: var(--clr-text); margin-bottom: 20px; padding-bottom: 12px; position: relative; }
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--clr-accent); border-radius: 2px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--clr-muted); transition: all var(--transition); display: flex; align-items: center; gap: 6px; text-decoration: none; }
.footer-link:hover { color: var(--clr-accent); padding-left: 4px; }
.footer-contact-row { display: flex; gap: 10px; margin-bottom: 11px; font-size: 13.5px; color: var(--clr-muted); align-items: flex-start; line-height: 1.55; }
.footer-contact-row .fci { flex-shrink: 0; font-size: 15px; margin-top: 1px; }
.footer-contact-row a { color: var(--clr-muted); transition: color var(--transition); }
.footer-contact-row a:hover { color: var(--clr-accent); }
.footer-bottom { border-top: 1px solid var(--clr-border); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-copyright { font-size: 13px; color: var(--clr-muted); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-link { font-size: 13px; color: var(--clr-muted); transition: color var(--transition); text-decoration: none; }
.footer-bottom-link:hover { color: var(--clr-accent); }

/* === WHATSAPP FAB === */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 20px 13px 14px;
  border-radius: var(--radius-btn);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--ff-heading);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover { background: #1fbb59; transform: translateY(-3px); box-shadow: 0 14px 44px rgba(37,211,102,0.48); }
.whatsapp-fab svg { width: 24px; height: 24px; flex-shrink: 0; }
.fab-text { display: none; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === UTILITY === */
.text-center { text-align: center; }
.text-accent { color: var(--clr-accent); }
.text-primary { color: var(--clr-primary); }
.text-muted { color: var(--clr-muted); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

/* === RESPONSIVE === */
@media (min-width: 768px) { .fab-text { display: block; } }

@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-bar { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-height: 68px; }
  .navbar-nav, .navbar-actions .nav-phone, .navbar-actions .btn { display: none; }
  .navbar-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .destinations-grid { grid-template-columns: 1fr; }
  .destination-card { height: 360px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-float-badge { right: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .uni-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: 1fr; }
  .process-wrapper { grid-template-columns: 1fr; }
  .process-wrapper::before { display: none; }
}

@media (max-width: 640px) {
  :root { --nav-height: 60px; }
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2)::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .uni-cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .page-header-actions { flex-direction: column; }
  .page-header-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .contact-form-box { padding: 26px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .whatsapp-fab { bottom: 18px; right: 14px; }
}
