/* =========================================
   StudyGrad – styles.css
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600&display=swap');

/* ── CSS Variables ─────────────────────── */
:root {
  --royal-blue: #3B5EF7;
  --navy: #1E3A8A;
  --soft-blue: #EFF6FF;
  --orange: #F97316;
  --orange-light: #FFF7ED;
  --black: #0F172A;
  --dark-grey: #334155;
  --light-grey: #64748B;
  --white: #FFFFFF;
  --background: #F8FAFC;
  --blue-gradient: linear-gradient(135deg, #3B5EF7 0%, #1E3A8A 100%);
  --orange-gradient: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  --radius: 0.75rem;
}

/* ── Reset ──────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--background);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ── Utility ────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.bg-white {
  background: var(--white);
}

.bg-light {
  background: var(--background);
}

.bg-navy {
  background: var(--navy);
}

.mt-10 {
  margin-top: 2.5rem;
}

.section-padding {
  padding: 5rem 1.5rem;
}

@media(min-width:768px) {
  .section-padding {
    padding: 6rem 3rem;
  }
}

@media(min-width:1024px) {
  .section-padding {
    padding: 8rem 6rem;
  }
}

/* Gradient text */
.text-gradient {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0.5rem 0 1rem;
}

.section-header p {
  color: var(--light-grey);
  max-width: 42rem;
  margin: 0 auto;
}

.section-header.light h2 {
  color: var(--white);
}

.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-label-orange {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Preloader ──────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at center, #0B0F19 0%, #05070B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

/* Beautiful ambient glowing orbs behind preloader graphics */
.preloader::before,
.preloader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

.preloader::before {
  width: 320px;
  height: 320px;
  background: rgba(59, 94, 247, 0.22);
  top: 40%;
  left: 35%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.preloader::after {
  width: 280px;
  height: 280px;
  background: rgba(249, 115, 22, 0.16);
  top: 60%;
  left: 65%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 6s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.95) rotate(0deg);
    opacity: 0.35;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15) rotate(180deg);
    opacity: 0.65;
  }
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.globe-container {
  width: 180px;
  height: 180px;
  position: relative;
  perspective: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rings around globe in 3D perspective */
.globe-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(59, 94, 247, 0.7);
  border-bottom-color: rgba(59, 94, 247, 0.15);
  transform: rotateX(65deg) rotateY(20deg) rotateZ(0deg);
  animation: rotateRing3D 2.5s linear infinite;
  box-shadow: 0 0 15px rgba(59, 94, 247, 0.15);
}

.globe-ring:nth-child(2) {
  inset: -24px;
  border-top-color: rgba(249, 115, 22, 0.75);
  border-bottom-color: rgba(249, 115, 22, 0.15);
  transform: rotateX(65deg) rotateY(-35deg) rotateZ(0deg);
  animation: rotateRing3DReverse 3.5s linear infinite;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.15);
}

@keyframes rotateRing3D {
  0% {
    transform: rotateX(65deg) rotateY(20deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(65deg) rotateY(20deg) rotateZ(360deg);
  }
}

@keyframes rotateRing3DReverse {
  0% {
    transform: rotateX(65deg) rotateY(-35deg) rotateZ(360deg);
  }
  100% {
    transform: rotateX(65deg) rotateY(-35deg) rotateZ(0deg);
  }
}

/* Airplane path and flight route dash pattern */
.airplane-path {
  stroke: var(--orange);
  stroke-width: 2.5;
  fill: none;
  stroke-dasharray: 6px 4px;
  filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.6));
}

/* Globe visual styling */
.globe-land {
  fill: rgba(59, 94, 247, 0.22);
  filter: drop-shadow(0 0 3px rgba(59, 94, 247, 0.25));
}

.globe-grid {
  stroke: rgba(255, 255, 255, 0.15);
  fill: none;
  stroke-width: 1px;
}

/* Airplane icon fly on path animation */
.airplane-icon {
  fill: #ffffff;
  offset-path: path('M40 150 Q80 60 160 80');
  offset-rotate: auto;
  filter: drop-shadow(0 0 6px #ffffff);
  animation: flyAirplane 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes flyAirplane {
  0% {
    opacity: 0;
    offset-distance: 0%;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    offset-distance: 100%;
  }
}

/* Reset plane's absolute group translation to let offset-path work perfectly */
.preloader svg g {
  transform: none !important;
  transform-box: fill-box;
  transform-origin: center;
}

/* Preloader text & typography */
.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.preloader-brand {
  font-family: 'Public Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 60%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
  animation: fadeDelayedUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(12px);
}

.preloader-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(249, 115, 22, 0.2);
  animation: fadeDelayedUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
  transform: translateY(12px);
}

/* Dynamic Percentage Number styling */
.preloader-percent {
  font-family: 'Public Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-top: -0.25rem;
  animation: fadeDelayedUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
  opacity: 0;
  transform: translateY(12px);
}

/* Loading bar container */
.preloader-bar-wrap {
  width: 220px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
  animation: fadeDelayedUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
  opacity: 0;
  transform: translateY(12px);
}

.preloader-bar {
  height: 100%;
  background: linear-gradient(90deg, #3B5EF7 0%, #F97316 100%);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(59, 94, 247, 0.7), 0 0 3px rgba(249, 115, 22, 0.6);
  width: 0%;
  transition: width 0.05s linear;
}

@keyframes fadeDelayedUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Scrollbar ───────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--soft-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--royal-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
}

::selection {
  background: var(--royal-blue);
  color: var(--white);
}

/* ── Buttons ─────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue-gradient);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 15px rgba(59, 94, 247, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 94, 247, .45);
}

.btn-primary:active {
  transform: scale(.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--royal-blue);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--royal-blue);
  cursor: pointer;
  transition: all .3s;
}

.btn-secondary:hover {
  background: var(--royal-blue);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-icon {
  gap: .5rem;
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--royal-blue);
  font-weight: 600;
  transition: gap .3s;
}

.link-arrow:hover {
  gap: 0.75rem;
}

/* ── Glassmorphism ───────────────────────── */
.glass {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .3);
}

/* ── Animations ─────────────────────────── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fadeInUp .6s ease-out forwards;
}

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(30, 58, 138, .06);
  transition: background .3s, box-shadow .3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(30, 58, 138, .08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.nav-logo-img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-grey);
  transition: color .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--royal-blue);
  transition: width .3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--royal-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.85rem;
  padding: .75rem 1.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: all .35s;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, .06);
  transition: max-height .4s ease;
}

.mobile-menu.open {
  max-height: 480px;
}

.mobile-link {
  display: block;
  padding: .85rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark-grey);
  border-radius: 8px;
  margin: 0 .75rem;
  transition: background .2s, color .2s;
}

.mobile-link:hover,
.mobile-link.active {
  background: var(--soft-blue);
  color: var(--royal-blue);
}

.mobile-cta {
  display: block;
  margin: 1rem 1rem 1.5rem;
  text-align: center;
}

/* ── HERO SECTION ────────────────────────── */
.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background: linear-gradient(135deg, #F8FAFC 0%, #ffffff 50%, #EFF6FF 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -200px;
  background: rgba(59, 94, 247, .06);
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: rgba(249, 115, 22, .06);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  padding-top: 100px;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

@media(min-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  background: var(--soft-blue);
  color: var(--royal-blue);
  font-size: .8rem;
  font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: 50px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--royal-blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.3);
  }
}

.hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--light-grey);
  max-width: 36rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--blue-gradient);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
}

.trust-text {
  font-size: .85rem;
  color: var(--light-grey);
}

.trust-text strong {
  color: var(--navy);
}

/* Hero Visual */
.hero-visual {
  display: none;
  position: relative;
  height: 500px;
}

@media(min-width:1024px) {
  .hero-visual {
    display: block;
  }
}

.hero-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 450px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(30, 58, 138, .25);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 1rem;
  padding: .85rem 1.1rem;
  box-shadow: 0 10px 30px rgba(30, 58, 138, .12);
}

.fc-top {
  top: 10px;
  left: 0;
}

.fc-mid {
  bottom: 80px;
  left: 30px;
}

.fc-bot {
  bottom: 0;
  right: 70px;
}

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.fc-blue {
  background: var(--royal-blue);
}

.fc-orange {
  background: var(--orange);
}

.fc-navy {
  background: var(--navy);
}

.fc-num {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

.fc-lbl {
  font-size: .7rem;
  color: var(--light-grey);
}

/* ── STATS ───────────────────────────────── */
.stats-section {
  background: var(--white);
  padding: 4rem 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media(min-width:480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: .25rem;
}

.stat-lbl {
  font-size: .9rem;
  color: var(--light-grey);
}

/* ── BENTO GRID ──────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media(min-width:768px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }

  .bento-lg {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-wide {
    grid-column: span 2;
  }

  .bento-sm {
    grid-column: span 1;
  }
}

.bento-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 280px;
  cursor: pointer;
  transition: transform .35s;
}

.bento-card:hover {
  transform: translateY(-6px);
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.bento-card:hover img {
  transform: scale(1.08);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 138, .88) 0%, rgba(30, 58, 138, .35) 60%, transparent 100%);
}

.bento-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--white);
}

.bento-flag-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
}

.bento-flag {
  font-size: 1.5rem;
}

.bento-flag-row h3 {
  color: var(--white);
  font-size: 1.4rem;
}

.bento-meta {
  display: flex;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  flex-wrap: wrap;
}

/* ── WHY CHOOSE US ───────────────────────── */
.why-grid {
  display: grid;
  gap: 3rem;
}

@media(min-width:1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.why-desc {
  color: var(--light-grey);
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: .5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--soft-blue);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
}

.feature-item h4 {
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .25rem;
}

.feature-item p {
  font-size: .85rem;
  color: var(--light-grey);
}

.why-image-wrap {
  position: relative;
}

.why-img {
  width: 100%;
  border-radius: 1.75rem;
  box-shadow: 0 30px 80px rgba(30, 58, 138, .2);
  object-fit: cover;
  height: 450px;
}

.why-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--royal-blue);
  color: var(--white);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 30px rgba(59, 94, 247, .4);
}

.why-badge-num {
  font-size: 1.75rem;
  font-weight: 700;
}

.why-badge-lbl {
  font-size: .75rem;
  opacity: .8;
  margin-top: .15rem;
}

/* ── TESTIMONIALS ────────────────────────── */
.testimonials-section {
  --tw: var(--white);
}

.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 1.75rem;
  padding: 2.5rem 2rem;
  max-width: 56rem;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.tcard-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media(min-width:640px) {
  .tcard-inner {
    flex-direction: row;
    text-align: left;
  }
}

.tcard-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--soft-blue);
  box-shadow: 0 0 0 4px var(--soft-blue);
  flex-shrink: 0;
}

.tcard-body {
  flex: 1;
}

.tcard-stars {
  color: var(--orange);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: .75rem;
}

.tcard-quote {
  color: var(--dark-grey);
  font-size: 1.15rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}

.tcard-body h4 {
  font-size: 1.15rem;
  color: var(--navy);
}

.tcard-meta {
  font-size: .9rem;
  color: var(--light-grey);
  margin-top: .25rem;
}

.tcard-nav {
  display: flex;
  gap: 1rem;
}

.tcard-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.tcard-btn:hover {
  background: rgba(255, 255, 255, .2);
}

.tcard-dots {
  display: flex;
  gap: .5rem;
}

.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.tdot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--white);
}

/* ── CTA Section ─────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

.cta-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--light-grey);
  margin-bottom: 2rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── ABOUT PAGE ──────────────────────────── */
.about-hero,
.page-hero {
  background: var(--blue-gradient);
  padding: calc(80px + 3rem) 1.5rem 4rem;
}

.page-hero-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media(min-width:1024px) {
  .page-hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.page-hero-content span.pill {
  display: inline-block;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
  font-size: .8rem;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-content p {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  line-height: 1.7;
}

.page-hero-img-wrap {
  position: relative;
  display: none;
}

@media(min-width:1024px) {
  .page-hero-img-wrap {
    display: block;
  }
}

.page-hero-img-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.page-hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.page-hero-badge-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--royal-blue);
}

.page-hero-badge-lbl {
  font-size: .75rem;
  color: var(--light-grey);
}

/* Mission Vision Grid */
.mission-grid {
  display: grid;
  gap: 1.5rem;
}

@media(min-width:768px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-card {
  border-radius: 1.75rem;
  padding: 2.5rem;
}

.mission-card.blue-bg {
  background: linear-gradient(135deg, #EFF6FF 0%, #fff 100%);
}

.mission-card.orange-bg {
  background: linear-gradient(135deg, #FFF7ED 0%, #fff 100%);
}

.mission-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.mission-icon.blue {
  background: var(--royal-blue);
}

.mission-icon.orange {
  background: var(--orange);
}

.mission-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: .75rem;
}

.mission-card p {
  color: var(--light-grey);
  line-height: 1.7;
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 1.25rem;
}

@media(min-width:640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow .3s;
}

.value-card:hover {
  box-shadow: 0 10px 30px rgba(30, 58, 138, .1);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--soft-blue);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--royal-blue);
}

.value-card h4 {
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .5rem;
}

.value-card p {
  font-size: .85rem;
  color: var(--light-grey);
}

/* Stats Dark */
.stats-dark {
  background: var(--navy);
  padding: 4rem 1.5rem;
}

.stats-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  color: var(--white);
}

@media(min-width:768px) {
  .stats-dark-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.stats-dark-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: .25rem;
}

.stats-dark-lbl {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
}

/* Timeline */
.timeline {
  position: relative;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E2E8F0;
  transform: translateX(-50%);
}

@media(min-width:768px) {
  .timeline-line {
    display: block;
  }
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media(min-width:768px) {
  .timeline-item {
    flex-direction: row;
  }

  .timeline-item.right {
    flex-direction: row-reverse;
  }
}

.timeline-side {
  flex: 1;
}

.timeline-card {
  background: var(--background);
  border-radius: 1rem;
  padding: 1.5rem;
  display: inline-block;
}

@media(min-width:768px) {
  .timeline-item:not(.right) .timeline-side {
    text-align: right;
  }
}

.timeline-year {
  font-size: .95rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: .25rem;
}

.timeline-card h4 {
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: .35rem;
}

.timeline-card p {
  font-size: .8rem;
  color: var(--light-grey);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--royal-blue);
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(30, 58, 138, .3);
  z-index: 1;
  flex-shrink: 0;
}

.timeline-spacer {
  flex: 1;
  display: none;
}

@media(min-width:768px) {
  .timeline-spacer {
    display: block;
  }
}

/* Team Grid */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media(min-width:640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 138, .08);
  transition: box-shadow .3s, transform .3s;
}

.team-card:hover {
  box-shadow: 0 12px 40px rgba(30, 58, 138, .15);
  transform: translateY(-4px);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-linkedin {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0077B5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  opacity: 0;
  transition: opacity .3s;
}

.team-card:hover .team-linkedin {
  opacity: 1;
}

.team-info {
  padding: 1.25rem;
}

.team-info h4 {
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .2rem;
}

.team-role {
  font-size: .8rem;
  color: var(--royal-blue);
  font-weight: 600;
  margin-bottom: .5rem;
}

.team-desc {
  font-size: .8rem;
  color: var(--light-grey);
}

/* CTA Blue */
.cta-blue {
  background: var(--blue-gradient);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-blue h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: .75rem;
}

.cta-blue p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 2rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--royal-blue);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

/* Why Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}

.check-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.check-icon {
  color: var(--royal-blue);
  flex-shrink: 0;
  margin-top: .1rem;
}

.check-item p {
  color: var(--dark-grey);
  font-size: .9rem;
}

/* ── SERVICES PAGE ───────────────────────── */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media(min-width:640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: 0 4px 20px rgba(30, 58, 138, .07);
  transition: transform .35s, box-shadow .35s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30, 58, 138, .14);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: transform .3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: .75rem;
}

.service-card>p {
  font-size: .95rem;
  color: var(--light-grey);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.service-feat {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: var(--dark-grey);
}

.feat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--royal-blue);
  flex-shrink: 0;
  margin-top: .35rem;
}

/* Process Steps */
.process-grid {
  display: grid;
  gap: 2rem;
}

@media(min-width:768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-line {
  display: none;
  position: absolute;
  top: 2rem;
  left: 60%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--royal-blue), rgba(59, 94, 247, .2));
}

@media(min-width:768px) {
  .process-step:not(:last-child) .process-line {
    display: block;
  }
}

.process-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--blue-gradient);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(59, 94, 247, .3);
}

.process-step h4 {
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.process-step p {
  font-size: .8rem;
  color: var(--light-grey);
}

/* ── DESTINATIONS PAGE ───────────────────── */
.dest-hero-search {
  max-width: 36rem;
  margin: 2rem auto 0;
  position: relative;
}

.dest-hero-search input {
  width: 100%;
  padding: 1.1rem 1.25rem 1.1rem 3.25rem;
  border-radius: 50px;
  border: none;
  font-size: .95rem;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  outline: none;
  font-family: inherit;
}

.dest-hero-search input:focus {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.dest-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light-grey);
  pointer-events: none;
}

.dest-quick-stats {
  background: var(--white);
  border-bottom: 1px solid #E2E8F0;
  padding: 1.75rem 1.5rem;
}

.dest-quick-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  text-align: center;
}

.dqs-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--royal-blue);
}

.dqs-lbl {
  font-size: .8rem;
  color: var(--light-grey);
  margin-top: .15rem;
}

.dest-cards-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dest-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 138, .08);
  transition: box-shadow .3s;
}

.dest-card:hover {
  box-shadow: 0 12px 40px rgba(30, 58, 138, .15);
}

.dest-card-inner {
  display: grid;
}

@media(min-width:768px) {
  .dest-card-inner {
    grid-template-columns: 1fr 2fr;
  }
}

.dest-card-img {
  position: relative;
  min-height: 280px;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 58, 138, .55), transparent);
}

.dest-card-img-overlay {
  display: none;
}

@media(min-width:768px) {
  .dest-card-img-overlay {
    display: block;
  }
}

.dest-card-mobile-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.dest-card-mobile-info {
  display: flex;
}

@media(min-width:768px) {
  .dest-card-mobile-info {
    display: none;
  }
}

.dest-card-mobile-info h3 {
  font-size: 1.6rem;
  color: var(--white);
}

.dest-card-body {
  padding: 2rem;
}

.dest-card-header {
  display: none;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

@media(min-width:768px) {
  .dest-card-header {
    display: flex;
  }
}

.dest-card-header h3 {
  font-size: 1.35rem;
  color: var(--navy);
}

.dest-card-students {
  font-size: .8rem;
  color: var(--light-grey);
}

.dest-card-desc {
  color: var(--light-grey);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-size: .9rem;
}

.dest-stats-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}

@media(min-width:640px) {
  .dest-stats-mini {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dsm {
  border-radius: .75rem;
  padding: .85rem;
}

.dsm.blue {
  background: var(--soft-blue);
}

.dsm.orange {
  background: var(--orange-light);
}

.dsm svg {
  margin-bottom: .35rem;
}

.dsm-lbl {
  font-size: .7rem;
  color: var(--light-grey);
}

.dsm-val {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: .15rem;
}

.dest-unis h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.dest-uni-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.uni-tag {
  padding: .3rem .85rem;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  font-size: .78rem;
  color: var(--dark-grey);
  cursor: pointer;
  transition: all .25s;
}

.uni-tag:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
}

.dest-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--royal-blue);
  font-weight: 600;
  font-size: .85rem;
  transition: gap .3s;
}

.dest-card-cta:hover {
  gap: .75rem;
}

.dest-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--light-grey);
}

/* ── CONTACT PAGE ────────────────────────── */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media(min-width:1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-card {
  background: var(--white);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(30, 58, 138, .1);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.contact-form-card>p {
  color: var(--light-grey);
  margin-bottom: 2rem;
  font-size: .9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media(min-width:640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark-grey);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid #E2E8F0;
  border-radius: .75rem;
  font-size: .9rem;
  font-family: inherit;
  color: var(--black);
  outline: none;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 4px rgba(59, 94, 247, .1);
}

.form-textarea {
  resize: none;
  height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: var(--blue-gradient);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 6px 20px rgba(59, 94, 247, .3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 94, 247, .4);
}

.form-submit:disabled {
  opacity: .7;
  cursor: default;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

.form-success.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #D1FAE5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #059669;
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: .75rem;
}

.form-success p {
  color: var(--light-grey);
  margin-bottom: 1.5rem;
  font-size: .9rem;
}

.btn-outline {
  display: inline-block;
  padding: .75rem 1.75rem;
  border: 2px solid var(--royal-blue);
  color: var(--royal-blue);
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  background: none;
  transition: all .3s;
}

.btn-outline:hover {
  background: var(--royal-blue);
  color: var(--white);
}

/* Map */
.map-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(30, 58, 138, .1);
}

.map-svg-wrap {
  background: var(--soft-blue);
}

.map-svg-wrap svg {
  display: block;
}

/* Office cards */
.offices-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.office-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(30, 58, 138, .08);
  transition: box-shadow .3s;
}

.office-card:hover {
  box-shadow: 0 8px 30px rgba(30, 58, 138, .14);
}

.office-city {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.office-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.office-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: var(--light-grey);
}

.office-row svg {
  flex-shrink: 0;
  margin-top: .1rem;
}

.office-row a {
  color: var(--light-grey);
  transition: color .2s;
}

.office-row a:hover {
  color: var(--royal-blue);
}

.business-hours {
  background: var(--navy);
  color: var(--white);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.bh-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.bh-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  padding: .3rem 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border-radius: 1rem;
  padding: 1.5rem;
}

.faq-item h4 {
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.faq-item p {
  font-size: .85rem;
  color: var(--light-grey);
  line-height: 1.65;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
}

.footer-main {
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media(min-width:640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-row {
  display: flex;
  gap: .65rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .3s;
}

.social-btn:hover {
  background: var(--royal-blue);
}

.footer-col h4 {
  font-family: 'Public Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-col a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  transition: color .25s;
}

.footer-col a:hover {
  color: var(--white);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .82rem;
}

.contact-list a {
  color: rgba(255, 255, 255, .65);
  transition: color .25s;
}

.contact-list a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

@media(min-width:640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, .55);
  transition: color .25s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ── WHATSAPP FLOAT ──────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, .7), 0 0 0 8px rgba(37, 211, 102, .12);
  }
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* ── RESPONSIVE ──────────────────────────── */
@media(max-width:767px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}