/* =========================================================
   VUKA VISTA GLOBAL PATHWAYS — Main Stylesheet
   Education | Immigration | Tourism Consultancy — Eldoret, Kenya
   ========================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand navy (from logo) */
  --navy-900: #030d24;
  --navy-800: #071a3d;
  --navy-700: #0a2358;
  --navy-600: #123b7a;
  --navy-500: #1e4fa0;
  --blue-accent: #2f6fe4;

  /* Brand "flame" gradient (from logo mark) */
  --flame-purple: #6c2bd9;
  --flame-pink: #e31e6b;
  --flame-orange: #ff7a30;
  --gradient-flame: linear-gradient(120deg, var(--flame-purple) 0%, var(--flame-pink) 50%, var(--flame-orange) 100%);
  --gradient-navy: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  --tint-card: linear-gradient(160deg, #faf2f6 0%, #f4eef9 100%);
  --tint-badge: linear-gradient(160deg, #f8f6fb 0%, #f1eef9 100%);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f6f8fc;
  --gray-100: #eef1f7;
  --gray-200: #e2e7f0;
  --gray-300: #cfd7e4;
  --gray-500: #78849a;
  --gray-700: #47526b;
  --gray-900: #1b2333;

  /* Type */
  --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Nunito", "Segoe UI", Arial, sans-serif;

  /* Radii & shadow */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --shadow-sm: 0 4px 14px rgba(10, 35, 88, 0.08);
  --shadow-md: 0 14px 34px rgba(10, 35, 88, 0.13);
  --shadow-lg: 0 26px 60px rgba(10, 35, 88, 0.2);

  --container: 1240px;
  --transition: 0.25s ease;
  --header-h: 108px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

[id] {
  scroll-margin-top: 128px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--navy-800);
  line-height: 1.25;
  font-weight: 700;
}

/* Focus visibility for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--flame-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 0;
  top: -100px;
  background: var(--navy-800);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ---------- 3. Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

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

.section--offwhite {
  background: var(--off-white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame-pink);
  background: rgba(227, 30, 107, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.section--navy .eyebrow {
  color: #ffb787;
  background: rgba(255, 255, 255, 0.1);
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.section--navy .section-head p {
  color: #c3cde3;
}

/* Editorial italic accent word within an otherwise-Poppins headline */
.accent-italic {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
}

/* Chevron-separated micro-list of qualitative trust phrases */
.micro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 30px;
}

.micro-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.micro-list li svg {
  width: 13px;
  height: 13px;
  color: var(--flame-pink);
  flex-shrink: 0;
}

.section--navy .micro-list li,
.cta-banner .micro-list li {
  color: rgba(255, 255, 255, 0.9);
}

.section--navy .section-head h2 {
  color: var(--white);
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--gradient-flame);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: var(--white);
  box-shadow: 0 12px 26px rgba(227, 30, 107, 0.32);
}

.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(227, 30, 107, 0.4);
}

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

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

.btn-outline {
  border: 2px solid var(--navy-700);
  color: var(--navy-800);
  padding: 13px 28px;
}

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

.section--navy .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

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

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* ---------- 5. Top Utility Bar ---------- */
.topbar {
  background: var(--navy-900);
  color: #aab6cf;
  font-size: 0.86rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__info {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar__info a,
.topbar__info span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cdd6ea;
  transition: color var(--transition);
}

.topbar__info a:hover {
  color: var(--flame-orange);
}

.topbar__info svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--flame-orange);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__social {
  display: flex;
  gap: 10px;
}

.topbar__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background var(--transition), transform var(--transition);
}

.topbar__social a:hover {
  background: var(--gradient-flame);
  transform: translateY(-2px);
}

.topbar__social svg {
  width: 14px;
  height: 14px;
}

/* ---------- 6. Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(10, 35, 88, 0.07);
  transition: box-shadow var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 56px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-close,
.main-nav .mobile-cta {
  display: none;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy-800);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.main-nav a.nav-link:hover,
.main-nav a.nav-link[aria-current="page"] {
  color: var(--flame-pink);
  background: rgba(227, 30, 107, 0.06);
}

.main-nav .nav-link svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .nav-link svg,
.has-dropdown:focus-within .nav-link svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.dropdown li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.dropdown li a:hover {
  background: var(--off-white);
}

.dropdown .dd-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-flame);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dropdown .dd-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.dropdown .dd-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-800);
  margin-bottom: 2px;
}

.dropdown .dd-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-actions .call-us {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .call-us .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--off-white);
  display: grid;
  place-items: center;
  color: var(--flame-pink);
}

.header-actions .call-us .icon-circle svg {
  width: 19px;
  height: 19px;
}

.header-actions .call-us .call-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: block;
}

.header-actions .call-us .call-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--navy-800);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--off-white);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
  padding: 76px 0 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 35, 88, 0.09) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 75%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 75%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  margin-bottom: 22px;
}

.hero-content h1 .highlight {
  background: var(--gradient-flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.08rem;
  color: var(--gray-700);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust .icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--flame-pink);
  flex-shrink: 0;
}

.hero-trust .icon-circle svg {
  width: 21px;
  height: 21px;
}

.hero-trust strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--navy-800);
  font-size: 0.94rem;
}

.hero-trust span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* The map now lives as a full-bleed background layer behind the hero copy,
   not a boxed graphic in its own column — z-index sits under .hero .container
   (z-index:2) and the ::after fade below keeps the headline/paragraph legible
   where the map would otherwise sit directly behind the text. */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--off-white) 0%, var(--off-white) 6%, rgba(246, 248, 252, 0.75) 26%, rgba(246, 248, 252, 0.15) 48%, transparent 62%);
}

/* Dependency-free animated world-map graphic (replaces the old WebGL globe):
   a cached <img> of the dotted map underneath, with a lightweight inline SVG
   overlay (same 1000x460 viewBox) drawing the animated Eldoret->destination
   arcs on top. No WebGL, no JS — works everywhere, including with JS off. */
.hero-map-wrap {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  width: 74%;
  min-width: 760px;
}

.hero-map-wrap img.wm-base {
  width: 100%;
  display: block;
}

.hero-map-wrap svg.wm-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wm-origin {
  fill: var(--flame-orange);
}

.wm-origin-ring {
  fill: none;
  stroke: var(--flame-orange);
  stroke-width: 2;
  opacity: 0.6;
  transform-box: fill-box;
  transform-origin: center;
  animation: wm-ring 2.4s ease-out infinite;
}

@keyframes wm-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

.wm-dest {
  fill: var(--flame-pink);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: wm-dest-in 0.5s ease forwards;
}

@keyframes wm-dest-in {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.wm-arc {
  fill: none;
  stroke: url(#wmArcGrad);
  stroke-width: 2;
  stroke-linecap: round;
  animation: wm-arc-draw 1.6s ease forwards;
}

@keyframes wm-arc-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wm-origin-ring { animation: none; opacity: 0; }
  .wm-dest { animation: none; opacity: 1; }
  .wm-arc { animation: none; stroke-dashoffset: 0 !important; }
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floaty 5s ease-in-out infinite;
}

.float-card .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
}

.float-card .icon-circle svg {
  width: 19px;
  height: 19px;
}

.float-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--navy-800);
}

.float-card span {
  font-size: 0.76rem;
  color: var(--gray-500);
}

.float-card {
  pointer-events: auto;
}

.float-card--1 {
  top: 14%;
  left: 56%;
  animation-delay: 0.2s;
}

.float-card--1 .icon-circle {
  background: var(--gradient-flame);
}

.float-card--2 {
  bottom: 10%;
  right: 4%;
  animation-delay: 1s;
}

.float-card--2 .icon-circle {
  background: var(--navy-700);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 8. Values / Trust strip ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--tint-card);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--flame-pink);
  box-shadow: var(--shadow-sm);
}

.value-card .icon-circle svg {
  width: 25px;
  height: 25px;
}

.value-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--gray-700);
  font-size: 0.93rem;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__top {
  padding: 34px 30px 0;
}

.service-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.24rem;
  margin-bottom: 12px;
}

.service-card > .service-card__top > p {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card__list {
  padding: 0 30px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--gray-700);
  padding-block: 6px;
}

.service-card__list svg {
  width: 16px;
  height: 16px;
  color: var(--flame-pink);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card__bottom {
  padding: 20px 30px 30px;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.service-card__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-800);
  transition: gap var(--transition), color var(--transition);
}

.service-card__bottom a:hover {
  gap: 12px;
  color: var(--flame-pink);
}

.service-card__bottom svg {
  width: 16px;
  height: 16px;
}

/* ---------- 10. Process ---------- */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  border-top: 2px dotted rgba(255, 255, 255, 0.22);
  z-index: 0;
  display: none;
}

@media (min-width: 901px) {
  .process-grid::before {
    display: block;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: 8px;
}

.process-step__badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-flame);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 24px rgba(227, 30, 107, 0.35);
}

.process-step__badge span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.process-step h3 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.process-step p {
  color: #b9c3db;
  font-size: 0.9rem;
}

/* ---------- 11. Why choose / split ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-visual {
  position: relative;
}

.split-visual .art-panel {
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  padding: 46px;
  position: relative;
  overflow: hidden;
}

.split-visual .art-panel svg,
.split-visual .art-panel img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
}

.split-visual .art-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: var(--gradient-flame);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  top: -60px;
  right: -60px;
}

.why-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.why-item {
  display: flex;
  gap: 18px;
}

.why-item .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(227, 30, 107, 0.08);
  color: var(--flame-pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.why-item .icon-circle svg {
  width: 22px;
  height: 22px;
}

.why-item h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.92rem;
  color: var(--gray-700);
}

/* ---------- 12. CTA banner ---------- */
.cta-banner {
  background: var(--gradient-flame);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/world-map-dots-light.svg");
  background-repeat: no-repeat;
  background-position: right -30px center;
  background-size: 620px auto;
  opacity: 0.55;
  pointer-events: none;
}

.cta-banner__text {
  position: relative;
  max-width: 600px;
}

.cta-banner__text .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner__actions {
  position: relative;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-banner .btn-navy {
  background: var(--navy-900);
}

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--flame-pink);
}

/* ---------- 13. FAQ (details/summary) ---------- */
.faq-list {
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-800);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}

.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--navy-800);
  transition: transform var(--transition), background var(--transition);
}

.faq-item summary .plus::before {
  width: 12px;
  height: 2px;
}

.faq-item summary .plus::after {
  width: 2px;
  height: 12px;
}

.faq-item[open] summary .plus {
  background: var(--gradient-flame);
  transform: rotate(180deg);
}

.faq-item[open] summary .plus::before,
.faq-item[open] summary .plus::after {
  background: var(--white);
}

.faq-item[open] summary .plus::after {
  transform: scaleY(0);
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--gray-700);
  font-size: 0.95rem;
  max-width: 700px;
}

.faq-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.faq-category-tabs button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  background: var(--off-white);
  color: var(--navy-800);
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--gray-200);
}

.faq-category-tabs button.active,
.faq-category-tabs button:hover {
  background: var(--gradient-flame);
  color: var(--white);
  border-color: transparent;
}

.faq-group-title {
  font-size: 1.2rem;
  margin: 44px 0 20px;
}

.faq-group-title:first-of-type {
  margin-top: 0;
}

/* ---------- 14. Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #aab6cf;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1fr 1.05fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about img {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-flame);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 22px;
}

.footer-col ul {
  display: grid;
  gap: 13px;
}

.footer-col a {
  font-size: 0.92rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--flame-orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--flame-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #7686a6;
}

.footer-bottom a {
  color: #9fabc8;
}

.footer-bottom a:hover {
  color: var(--flame-orange);
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-flame);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 400;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- 15. Page (inner) header banner ---------- */
.page-banner {
  position: relative;
  background: var(--gradient-navy);
  padding: 64px 0 60px;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 80% 30%, black, transparent 70%);
  mask-image: radial-gradient(circle at 80% 30%, black, transparent 70%);
}

.page-banner .container {
  position: relative;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 14px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #b9c3db;
}

.breadcrumbs a:hover {
  color: var(--flame-orange);
}

.breadcrumbs svg {
  width: 12px;
  height: 12px;
  color: #6d7ba0;
}

.breadcrumbs .current {
  color: var(--flame-orange);
  font-weight: 600;
}

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

.story-art {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.story-art svg,
.story-art img {
  width: 100%;
  height: auto;
  display: block;
}

.story-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-badge .icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-flame);
  display: grid;
  place-items: center;
  color: var(--white);
}

.story-badge .icon-circle svg {
  width: 22px;
  height: 22px;
}

.story-badge strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--navy-800);
}

.story-badge span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  padding: 38px 34px;
  border-radius: var(--radius-lg);
}

.mv-card.vision {
  background: var(--off-white);
}

.mv-card.mission {
  background: var(--gradient-navy);
  color: var(--white);
}

.mv-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.mv-card.vision .icon-circle {
  background: var(--gradient-flame);
  color: var(--white);
}

.mv-card.mission .icon-circle {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.mv-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.mv-card.mission h3 {
  color: var(--white);
}

.mv-card p {
  font-size: 0.98rem;
  line-height: 1.75;
}

.mv-card.vision p {
  color: var(--gray-700);
}

.mv-card.mission p {
  color: #c3cde3;
}

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

.pillar-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
}

.pillar-card .emoji {
  font-size: 2rem;
  margin-bottom: 14px;
}

.pillar-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--gray-700);
}

/* ---------- 17. Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--tint-card);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-3px);
}

.contact-info-card .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  color: var(--flame-pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info-card .icon-circle svg {
  width: 21px;
  height: 21px;
}

.contact-info-card h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--gray-700);
}

.hours-card {
  background: var(--gradient-navy);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  color: var(--white);
}

.hours-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-card h3 svg {
  width: 19px;
  height: 19px;
  color: var(--flame-orange);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding-block: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #c3cde3;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row strong {
  color: var(--white);
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--gray-700);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.form-group .req {
  color: var(--flame-pink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--flame-pink);
  background: var(--white);
  outline: none;
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 14px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(30, 160, 90, 0.1);
  color: #1a8f52;
}

.form-status.error {
  background: rgba(227, 30, 30, 0.08);
  color: #c8281f;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-top: 50px;
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ---------- 18. Misc components ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-flame);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--white);
}

.stat-item .icon-circle svg {
  width: 24px;
  height: 24px;
}

.stat-item h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.stat-item p {
  color: #b9c3db;
  font-size: 0.86rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-800);
}

/* ---------- 19. Responsive ---------- */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .main-nav, .header-actions .call-us, .header-actions > .btn-primary { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 28px 40px;
    z-index: 900;
    overflow-y: auto;
  }

  .main-nav.open > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav.open .nav-link {
    padding: 16px 6px;
    border-bottom: 1px solid var(--gray-100);
    justify-content: space-between;
  }

  .main-nav.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 10px;
  }

  .main-nav.open .has-dropdown.dd-open .dropdown {
    display: block;
  }

  .nav-close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--off-white);
    display: grid;
    place-items: center;
  }

  .nav-close svg {
    width: 18px;
    height: 18px;
  }

  .main-nav .mobile-cta {
    display: inline-flex;
    margin-top: 20px;
  }

  /* Map stays behind the copy (not stacked above it) at mobile widths too —
     centred, faded top/bottom so running text stays readable over it. Floating
     info cards step aside: there isn't room for them without covering most of
     the map or colliding with the text. */
  .hero-map-wrap {
    top: auto;
    bottom: -6%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 145%;
    min-width: 0;
    opacity: 0.7;
  }
  .hero-visual::after {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--off-white) 58%, rgba(246, 248, 252, 0.5) 72%, rgba(246, 248, 252, 0.15) 100%);
  }
  .hero-visual .float-card { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar__info { justify-content: center; }
  .services-grid, .values-grid, .process-grid, .mv-grid, .stat-strip, .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner { flex-direction: column; text-align: center; padding: 44px 28px; }
  .cta-banner__actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-banner { padding: 48px 0; }
  .hero { padding: 52px 0 64px; }
}

@media (max-width: 480px) {
  .brand img { height: 44px; }
  .btn { padding: 13px 22px; font-size: 0.9rem; }
  .float-card { padding: 10px 14px; }
  .float-card strong { font-size: 0.78rem; }
  .float-card span { font-size: 0.68rem; }
}
