/* ==========================================================================
   AGASTYA OVERSEAS — Production Design System
   Premium corporate / SaaS aesthetic (Apple × Stripe × Framer × Webflow)
   Single-file stylesheet for homepage + shared chrome
   Mobile-first · CSS variables · Flexbox / Grid · clamp() typography
   ========================================================================== */

/* ==========================================================================
   1. CSS RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* Skip link — WCAG */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 3000;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Honeypot — spam prevention */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ==========================================================================
   2. VARIABLES
   ========================================================================== */

:root {
  /* Brand colours */
  --primary: #0f172a;
  --primary-soft: #1e293b;
  --secondary: #2563eb;
  --accent: #3b82f6;
  --gold: #fbbf24;
  --gold-deep: #f59e0b;
  --white: #ffffff;
  --light: #f8fafc;
  --gray: #94a3b8;
  --text: #1e293b;
  --muted: #64748b;
  --success: #22c55e;
  --danger: #ef4444;

  /* Surfaces */
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: rgba(15, 23, 42, 0.72);
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --border-light: rgba(255, 255, 255, 0.14);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563eb, #3b82f6);
  --gradient-dark: linear-gradient(135deg, #020617, #0f172a);
  --gradient-gold: linear-gradient(135deg, #fbbf24, #f59e0b);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 72% 18%, rgba(37, 99, 235, 0.42), transparent 55%),
    radial-gradient(ellipse 55% 45% at 8% 82%, rgba(251, 191, 36, 0.18), transparent 50%),
    linear-gradient(160deg, #020617 0%, #0f172a 42%, #1e3a8a 100%);
  --gradient-section: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  --gradient-slate: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  --gradient-shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  --gradient-text: linear-gradient(90deg, #93c5fd, #fbbf24);

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-xl: 0 32px 80px rgba(15, 23, 42, 0.22);
  --shadow-glow: 0 14px 40px rgba(37, 99, 235, 0.35);
  --shadow-gold: 0 14px 36px rgba(251, 191, 36, 0.35);
  --shadow-whatsapp: 0 12px 30px rgba(37, 211, 102, 0.45);

  /* Radius */
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Typography */
  --font-heading: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --fs-body: 1.125rem;
  --lh-body: 1.65;
  --lh-tight: 1.12;
  --lh-heading: 1.15;
  --tracking-tight: -0.03em;
  --tracking-wide: 0.08em;

  /* Layout */
  --max: 1200px;
  --gutter: 1.25rem;
  --header-h: 80px;
  --mobile-bar-h: 68px;
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration: 0.35s;
  --duration-slow: 0.6s;

  /* Z-index scale */
  --z-base: 1;
  --z-raised: 5;
  --z-sticky: 100;
  --z-header: 1100;
  --z-mobile-bar: 1150;
  --z-fab: 1200;
  --z-progress: 2000;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(37, 99, 235, 0.06), transparent 55%),
    radial-gradient(700px 380px at 100% 10%, rgba(251, 191, 36, 0.05), transparent 50%),
    var(--light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: var(--header-h);
  min-height: 100vh;
}

body.has-mobile-bar {
  padding-bottom: calc(var(--mobile-bar-h) + 1rem);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h-display,
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-heading);
  color: var(--primary);
}

h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: var(--lh-tight);
}

h2,
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 16ch;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.05rem;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

.section-lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.95rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.text-gold {
  color: var(--gold) !important;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   4. UTILITY CLASSES
   ========================================================================== */

.container-premium {
  width: min(100% - (var(--container-pad) * 2), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.section-light {
  background: var(--gradient-section);
}

.section-white {
  background: var(--white);
}

.section-slate {
  background: var(--gradient-slate);
}

.section-dark {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.88);
}

.bg-pattern {
  background-image:
    radial-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
    var(--gradient-section);
  background-size: 22px 22px, auto;
}

.glass {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.glass-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  color: var(--white);
}

.card-lift {
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.card-lift:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-glow:hover {
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.22);
  border-color: rgba(37, 99, 235, 0.28);
}

.hover-scale {
  transition: transform var(--duration) var(--ease);
}

.hover-scale:hover {
  transform: scale(1.03);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-progress);
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.55);
  transition: width 0.05s linear;
}

/* Wave divider */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: var(--z-raised);
}

.wave-divider svg {
  width: 100%;
  height: clamp(40px, 6vw, 72px);
  display: block;
}

/* ==========================================================================
   5. NAVBAR
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  height: var(--header-h);
  transition:
    background var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    backdrop-filter var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.site-header.is-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(248, 250, 252, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header .navbar {
  height: var(--header-h);
  padding: 0;
}

.site-header .container-premium {
  display: flex;
  align-items: center;
  /* Keep side inset — width:100% was pinning logo/CTA to the corners */
  width: min(100% - (var(--container-pad) * 2), var(--max));
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

@media (max-width: 575.98px) {
  .site-header .container-premium {
    width: min(100% - 2rem, var(--max));
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

/* Dual logo: dark mark on light headers, light mark on dark heroes — same design */
.brand-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: transparent;
  overflow: hidden;
}

.brand-logo-wrap--footer {
  width: 76px;
  height: 76px;
  margin-bottom: 0.85rem;
  border-radius: 16px;
}

.brand-logo {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

.brand-logo--light {
  opacity: 0;
  visibility: hidden;
}

.brand-logo--dark {
  opacity: 1;
  visibility: visible;
}

.site-header.is-transparent .brand-logo--light {
  opacity: 1;
  visibility: visible;
}

.brand-logo-wrap--on-dark {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.site-header.is-transparent .brand-logo--dark {
  opacity: 0;
  visibility: hidden;
}

.site-header.is-solid .brand-logo-wrap {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  padding: 5px;
}

/* Transparent PNG logos — avoid dark boxed look */
.brand-logo--light,
.brand-logo--dark,
.brand-logo--footer {
  background: transparent !important;
  mix-blend-mode: normal;
}

.footer-brand-link {
  display: inline-block;
  line-height: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow);
}

.brand-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.brand-text small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.site-header.is-transparent .brand-text strong,
.site-header.is-transparent .nav-link {
  color: var(--white);
}

.site-header.is-transparent .brand-text small {
  color: rgba(255, 255, 255, 0.65);
}

.navbar-nav .nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-soft);
  padding: 0.45rem 0.7rem !important;
  border-radius: 10px;
  transition:
    color var(--duration-fast) var(--ease),
    background var(--duration-fast) var(--ease);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration) var(--ease);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary);
  background: rgba(37, 99, 235, 0.08);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.site-header.is-transparent .navbar-nav .nav-link:hover,
.site-header.is-transparent .navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-header.is-transparent .navbar-nav .nav-link::after {
  background: var(--gradient-gold);
}

.navbar-toggler {
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 0.45rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.site-header.is-transparent .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.site-header.is-transparent .navbar-toggler-icon {
  filter: invert(1);
}

/* ==========================================================================
   6. HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: calc(var(--header-h) * -1);
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 5rem;
  background: var(--gradient-hero);
  background-size: 200% 200%;
  animation: gradientMove 14s ease-in-out infinite;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.55;
  animation: blob 10s ease-in-out infinite;
}

.hero-orb-1 {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  background: var(--secondary);
  top: -6rem;
  right: 8%;
}

.hero-orb-2 {
  width: min(280px, 55vw);
  height: min(280px, 55vw);
  background: var(--gold);
  bottom: 8%;
  left: 4%;
  opacity: 0.28;
  animation-delay: -3s;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 15%, transparent 75%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(1rem, 4vw, 3rem);
}

.hero h1 {
  color: var(--white);
  max-width: 11ch;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.76);
  max-width: 38ch;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-bottom: 2rem;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  color: var(--gold);
  line-height: 1.1;
}

.hero-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 420px;
  margin-top: 0.5rem;
  display: grid;
  place-items: center;
}

.hero-visual--globe {
  min-height: clamp(400px, 56vw, 600px);
}

/* ==========================================================================
   7. HERO GLOBE + ORBITAL FLIGHT
   ========================================================================== */

.globe-stage {
  /* Keep flight path hugging Earth — orbit only slightly outside the sphere */
  --globe-inset: 7%;
  --orbit-inset: 5.2%;
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin-inline: auto;
  margin-top: -0.5rem;
}

.globe-aura {
  position: absolute;
  inset: var(--orbit-inset);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(56, 189, 248, 0.32), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.18), transparent 55%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.globe-orbit {
  /* Decorative rings off — flight SVG dashed orbits carry the reference look */
  display: none;
  position: absolute;
  inset: calc(var(--globe-inset) - 1.2%);
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.12);
  pointer-events: none;
  z-index: 1;
  animation: globeOrbitSpin 40s linear infinite;
}

.globe-orbit--mid {
  inset: calc(var(--globe-inset) + 2%);
  border-style: dashed;
  border-color: rgba(96, 165, 250, 0.1);
  animation-duration: 52s;
  animation-direction: reverse;
}

.globe-orbit--outer {
  inset: calc(var(--orbit-inset) - 0.4%);
  opacity: 0.4;
  border-style: dotted;
}

.globe-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.globe {
  position: absolute;
  inset: var(--globe-inset);
  display: grid;
  place-items: center;
}

.globe-atmosphere {
  position: absolute;
  inset: -3.5%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.3) 48%,
    rgba(59, 130, 246, 0.14) 64%,
    rgba(14, 165, 233, 0.06) 72%,
    transparent 78%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(0.8px);
}

.globe-sphere {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #0b1f4a;
  box-shadow:
    0 28px 70px rgba(2, 6, 23, 0.55),
    0 0 0 1px rgba(147, 197, 253, 0.18),
    inset -22px -14px 42px rgba(2, 6, 23, 0.55),
    inset 14px 12px 28px rgba(147, 197, 253, 0.12);
}

.globe-earth {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #0b3d91;
  background-image: url("../images/earth-blue-marble.jpg");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: auto 100%;
  animation: globeEarthSpin 55s linear infinite;
}

.globe-clouds {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("../images/earth-clouds.jpg");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: auto 100%;
  animation: globeCloudDrift 80s linear infinite;
  opacity: 0.42;
  mix-blend-mode: screen;
  pointer-events: none;
}

.globe-highlight {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.42), transparent 30%),
    radial-gradient(circle at 48% 48%, transparent 40%, rgba(2, 6, 23, 0.08) 78%);
  pointer-events: none;
}

.globe-shade {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 78% 64%, transparent 28%, rgba(2, 6, 23, 0.42) 72%, rgba(2, 6, 23, 0.62) 100%);
  pointer-events: none;
}

/* Modern elliptical flight orbit (reference style) — globe unchanged */
.flight-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.flight-orbit--back {
  z-index: 1;
}

.flight-orbit--front {
  z-index: 3;
}

.orbit-dash {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 3.5 7;
}

.orbit-dash--back {
  stroke: rgba(15, 23, 42, 0.45);
  stroke-width: 1.6;
}

.orbit-dash--front {
  stroke: #0b1220;
  stroke-width: 1.9;
}

#orbitA,
#orbitB,
#orbitAFront,
#orbitBFront {
  stroke: none !important;
  fill: none !important;
}

.flight-jet {
  filter: drop-shadow(0 1px 3px rgba(2, 6, 23, 0.85));
}

.flight-jet-shape,
.flight-jet-shape path,
.flight-jet-shape rect {
  fill: #ffffff !important;
}

.globe-pin {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.35);
  animation: globePinFloat 5.5s ease-in-out infinite;
  white-space: nowrap;
}

.globe-pin span {
  font-size: 0.95rem;
  line-height: 1;
}

.globe-pin em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.globe-pin--usa {
  top: 10%;
  left: 4%;
}

.globe-pin--uk {
  top: 18%;
  right: 6%;
  animation-delay: 0.6s;
}

.globe-pin--can {
  top: 48%;
  left: 0;
  animation-delay: 1.1s;
}

.globe-pin--aus {
  bottom: 18%;
  right: 2%;
  animation-delay: 1.6s;
}

.globe-pin--ger {
  bottom: 28%;
  left: 8%;
  animation-delay: 2s;
}

.globe-caption {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin: 0;
  z-index: 6;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.9);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}

@keyframes globeMapSpin {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes globeEarthSpin {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -200% center;
  }
}

@keyframes globeCloudDrift {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -200% center;
  }
}

@keyframes globeOrbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


@keyframes globePinFloat {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -6px;
  }
}

/* Legacy float-card helpers (inner pages / reuse) */
.float-card {
  position: absolute;
  z-index: 3;
  min-width: 148px;
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration) var(--ease);
}

.float-card .flag {
  font-size: 1.4rem;
  line-height: 1;
}

.float-card strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.float-card small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.float-y {
  animation: floating 5s ease-in-out infinite;
}

.float-y-delay {
  animation: floating 6s ease-in-out 0.8s infinite;
}

.float-x {
  animation: fadeLeft 7s ease-in-out infinite alternate;
}

/* ==========================================================================
   8. BUTTONS
   ========================================================================== */

.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.btn-premium:hover {
  transform: translateY(-3px);
}

.btn-premium:active {
  transform: translateY(-1px);
}

.btn-premium .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: pulse 0.6s linear;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 0;
}

.btn-gradient,
.btn-primary-premium {
  background: var(--gradient-primary);
  color: var(--white) !important;
  box-shadow: var(--shadow-glow);
}

.btn-gradient:hover,
.btn-primary-premium:hover {
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.45);
}

.btn-gold,
.btn-secondary-premium {
  background: var(--gradient-gold);
  color: var(--primary) !important;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover,
.btn-secondary-premium:hover {
  box-shadow: 0 16px 40px rgba(251, 191, 36, 0.45);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-premium {
  background: transparent;
  color: var(--primary) !important;
  border-color: rgba(15, 23, 42, 0.15);
}

.btn-outline-premium:hover {
  border-color: var(--secondary);
  color: var(--secondary) !important;
  background: rgba(37, 99, 235, 0.04);
}

.btn-premium.btn-sm,
.site-header .btn-premium {
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   9. STATISTICS / TRUST BAR
   ========================================================================== */

.trust-bar {
  position: relative;
  z-index: var(--z-raised);
  margin-top: -3.25rem;
  padding-bottom: 1rem;
}

.trust-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.trust-item {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease);
}

.trust-item:hover {
  background: rgba(37, 99, 235, 0.04);
}

.trust-item .num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
}

.trust-item .label {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Dark statistics variant */
.stats-dark {
  background: var(--gradient-dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
}

.stats-dark .num {
  color: var(--gold);
}

.stats-dark .label {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   10. STUDENT JOURNEY TIMELINE
   ========================================================================== */

.journey-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 1.1rem;
  overflow-x: auto;
  padding: 1.5rem 0.25rem 2.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.journey-track::-webkit-scrollbar {
  height: 6px;
}

.journey-track::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-pill);
}

.journey-step {
  position: relative;
  scroll-snap-align: start;
  min-height: 180px;
  padding: 1.4rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.journey-step::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 0;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  opacity: 0.85;
}

.journey-step .step-num {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

.journey-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.journey-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.journey-step::after {
  content: "";
  position: absolute;
  right: -0.7rem;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--secondary);
  border-right: 2px solid var(--secondary);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  opacity: 0.7;
}

.journey-step:last-child::after {
  display: none;
}

/* ==========================================================================
   11. DESTINATION CARDS
   ========================================================================== */

.dest-card {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 340px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  background: var(--primary);
}

.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.7), transparent 40%, rgba(251, 191, 36, 0.45));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 4;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity var(--duration) var(--ease);
}

.dest-card:hover::before {
  opacity: 1;
}

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
  z-index: 0;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.88) 72%);
}

.dest-card .body {
  position: relative;
  z-index: 2;
  min-height: 340px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.45rem;
}

.dest-card .flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 600;
}

.dest-card h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.dest-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  line-height: 1.55;
}

.dest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dest-meta span {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.38rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* ==========================================================================
   12. WHY CHOOSE US
   ========================================================================== */

.feature-card {
  height: 100%;
  padding: 1.7rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
  transition: transform var(--duration) var(--ease);
}

.feature-card:hover .icon-wrap,
.service-card:hover .icon-wrap {
  transform: scale(1.08) rotate(-4deg);
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================================
   13. SERVICES
   ========================================================================== */

.service-card {
  height: 100%;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card .icon-wrap {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}

.section-dark .service-card {
  background: rgba(255, 255, 255, 0.97);
}

.section-dark .service-card:hover {
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.28);
}

/* ==========================================================================
   14. SCHOLARSHIP BANNER
   ========================================================================== */

.scholarship-banner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 4px);
  padding: clamp(2rem, 5vw, 3.6rem);
  background:
    radial-gradient(circle at 92% 18%, rgba(251, 191, 36, 0.38), transparent 40%),
    linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #0f172a 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.scholarship-banner::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(10px);
  animation: blob 9s ease-in-out infinite;
  pointer-events: none;
}

.scholarship-banner h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  max-width: 14ch;
  position: relative;
  z-index: 1;
}

.scholarship-banner .amount {
  color: var(--gold);
}

.scholarship-banner p {
  position: relative;
  z-index: 1;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.78);
}

.scholarship-art {
  position: relative;
  z-index: 1;
  font-size: clamp(3.5rem, 8vw, 5.25rem);
  text-align: center;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
  animation: floating 5.5s ease-in-out infinite;
}

/* ==========================================================================
   15. UNIVERSITY MARQUEE
   ========================================================================== */

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.uni-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 74px;
  padding: 0 1.3rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-soft);
  white-space: nowrap;
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.uni-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   16. TESTIMONIALS
   ========================================================================== */

.testimonial-slide {
  padding: 0.5rem;
  height: auto;
}

.testimonial-card {
  position: relative;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.6rem;
  right: 1.2rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(37, 99, 235, 0.12);
}

.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: var(--primary-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: 1.25rem;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(37, 99, 235, 0.25);
  opacity: 1;
  transition: transform var(--duration-fast) var(--ease);
}

.swiper-pagination-bullet-active {
  background: var(--secondary) !important;
  transform: scale(1.25);
}

/* ==========================================================================
   17. CALCULATOR
   ========================================================================== */

.calc-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.35rem);
  box-shadow: var(--shadow-md);
}

.calc-panel .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.calc-panel .form-control,
.calc-panel .form-select,
.form-card .form-control,
.form-card .form-select {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.85rem 0.95rem;
  background: var(--light);
  transition:
    border-color var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease),
    background var(--duration-fast) var(--ease);
}

.calc-panel .form-control:focus,
.calc-panel .form-select:focus,
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.calc-panel .form-range {
  width: 100%;
  accent-color: var(--secondary);
}

.calc-results {
  display: none;
  margin-top: 1.35rem;
  padding: 1.3rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  border: 1px solid rgba(37, 99, 235, 0.12);
  animation: fadeUp 0.45s var(--ease) both;
}

.calc-results.is-visible {
  display: block;
}

.result-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  margin: 0.35rem 0.35rem 0 0;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-xs);
}

/* ==========================================================================
   18. FAQ
   ========================================================================== */

.faq-modern .accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  margin-bottom: 0.9rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--duration) var(--ease);
}

.faq-modern .accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-modern .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  background: transparent;
  box-shadow: none !important;
  padding: 1.2rem 1.3rem;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.faq-modern .accordion-button:not(.collapsed) {
  color: var(--secondary);
  background: #eff6ff;
}

.faq-modern .accordion-button::after {
  transition: transform var(--duration) var(--ease);
}

.faq-modern .accordion-body {
  color: var(--muted);
  padding: 0 1.3rem 1.25rem;
  line-height: 1.7;
}

/* ==========================================================================
   19. CTA
   ========================================================================== */

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius-xl);
  padding: clamp(2.6rem, 6vw, 4.25rem);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.4), transparent 40%),
    radial-gradient(circle at 82% 80%, rgba(251, 191, 36, 0.22), transparent 35%),
    var(--primary);
  box-shadow: var(--shadow-lg);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.18);
  filter: blur(20px);
  animation: blob 11s ease-in-out infinite;
  pointer-events: none;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 16ch;
  margin-inline: auto;
}

.final-cta p {
  position: relative;
  z-index: 1;
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.final-cta .d-flex,
.final-cta .btn-premium {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.site-footer {
  background: #020617;
  color: rgba(255, 255, 255, 0.78);
  padding: 4.25rem 0 2rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--duration-fast) var(--ease);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.rating-box {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.1rem;
  padding: 0.8rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0.72rem 1.05rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   21. WHATSAPP FLOATING BUTTON + MOBILE CTA BAR
   ========================================================================== */

.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: var(--z-fab);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white) !important;
  box-shadow: var(--shadow-whatsapp);
  transition: transform var(--duration) var(--ease);
  animation: pulse 2.4s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.06);
  animation: none;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

.mobile-cta-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: var(--z-mobile-bar);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.65rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 52px;
  border-radius: 12px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  transition: background var(--duration-fast) var(--ease);
}

.mobile-cta-bar a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-cta-bar a.primary {
  background: var(--gradient-primary);
}

/* ==========================================================================
   INNER PAGE HERO (shared)
   ========================================================================== */

.page-hero {
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + 2.75rem) 0 3.25rem;
  background: var(--gradient-hero);
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  max-width: 14ch;
  margin-bottom: 0.85rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 50ch;
  font-size: 1.1rem;
}

/* Contact panel helpers */
.map-wrap {
  margin-top: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.form-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   22. SCROLL ANIMATIONS (helpers + keyframes)
   ========================================================================== */

[data-animate],
.reveal-up,
.reveal-zoom {
  will-change: transform, opacity;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
}

.anim-fade-up {
  animation: fadeUp 0.9s var(--ease) both;
}

.anim-fade-left {
  animation: fadeLeft 0.9s var(--ease) both;
}

.anim-fade-right {
  animation: fadeRight 0.9s var(--ease) both;
}

.anim-zoom-in {
  animation: zoomIn 0.9s var(--ease) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(14px);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateSlow {
  from {
    transform: translate(-70%, -40%) rotate(0deg);
  }
  to {
    transform: translate(-70%, -40%) rotate(360deg);
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0.65;
  }
  70% {
    transform: scale(3.4);
    opacity: 0;
  }
  100% {
    transform: scale(3.4);
    opacity: 0;
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.whatsapp-fab {
  animation: pulseSoft 2.4s ease-out infinite;
}

@keyframes shine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(18px, -22px) scale(1.06);
  }
  66% {
    transform: translate(-14px, 12px) scale(0.96);
  }
}

.gradient-text-shine {
  background: linear-gradient(90deg, #93c5fd, #fff, #fbbf24, #93c5fd);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 4s linear infinite;
}

/* ==========================================================================
   23. HOVER ANIMATIONS
   ========================================================================== */

.btn-gradient {
  position: relative;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-shine);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  animation: shine 2.8s linear infinite;
  pointer-events: none;
}

.btn-gradient:hover::before {
  opacity: 0.35;
}

.dest-card:hover,
.feature-card:hover,
.service-card:hover,
.testimonial-card:hover {
  border-color: rgba(37, 99, 235, 0.18);
}

.journey-step:hover .step-num {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.uni-chip:hover {
  border-color: rgba(37, 99, 235, 0.25);
  color: var(--secondary);
}

/* ==========================================================================
   SCROLLBAR + SELECTION
   ========================================================================== */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #e2e8f0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563eb, #1e40af);
  border-radius: var(--radius-pill);
  border: 2px solid #e2e8f0;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
}

::selection {
  background: rgba(37, 99, 235, 0.22);
  color: var(--primary);
}

::-moz-selection {
  background: rgba(37, 99, 235, 0.22);
  color: var(--primary);
}

/* ==========================================================================
   24. MOBILE STYLES  (max-width: 575.98px)
   ========================================================================== */

@media (max-width: 575.98px) {
  :root {
    --header-h: 72px;
    --fs-body: 1.05rem;
  }

  .hero {
    align-items: flex-start;
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.2rem);
  }

  .hero-visual,
  .hero-visual--globe {
    min-height: 380px;
  }

  .globe-stage {
    width: min(100%, 360px);
  }

  .flight-jet {
    transform: scale(0.9);
  }

  .globe-pin em {
    display: none;
  }

  .globe-pin {
    padding: 0.35rem 0.45rem;
  }

  .globe-caption {
    font-size: 0.7rem;
    bottom: -0.15rem;
  }

  .trust-bar {
    margin-top: -2.25rem;
  }

  .trust-panel {
    border-radius: var(--radius-lg);
    padding: 1rem 0.5rem;
  }

  .journey-track {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow: visible;
    padding-bottom: 0.5rem;
  }

  .journey-step {
    min-height: auto;
  }

  .journey-step::after {
    display: none;
  }

  .journey-step::before {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
  }

  .dest-card,
  .dest-card .body {
    min-height: 300px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .mobile-cta-bar {
    display: grid;
  }

  .whatsapp-fab {
    bottom: calc(var(--mobile-bar-h) + 1.15rem);
    right: 1rem;
    width: 54px;
    height: 54px;
  }

  .section-title {
    max-width: 18ch;
  }
}

/* ==========================================================================
   25. TABLET STYLES  (min-width: 576px) + (max-width: 991.98px)
   ========================================================================== */

@media (min-width: 576px) {
  :root {
    --gutter: 1.5rem;
  }

  .globe-stage {
    width: min(100%, 460px);
  }
}

@media (max-width: 767.98px) {
  .mobile-cta-bar {
    display: grid;
  }

  .whatsapp-fab {
    bottom: calc(var(--mobile-bar-h) + 1.25rem);
  }

  .hero-visual {
    margin-top: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    padding-bottom: 5.5rem;
  }

  .hero-visual {
    min-height: 440px;
  }

  .journey-track {
    grid-auto-columns: minmax(180px, 1fr);
  }

  .dest-card,
  .dest-card .body {
    min-height: 320px;
  }
}

@media (max-width: 991.98px) {
  .brand-logo-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .navbar-collapse {
    background: rgba(248, 250, 252, 0.98);
    border-radius: 18px;
    margin-top: 0.55rem;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
  }

  .site-header.is-transparent .navbar-collapse .nav-link,
  .site-header.is-transparent .navbar-collapse .brand-text strong {
    color: var(--primary);
  }

  .site-header.is-transparent .navbar-collapse .nav-link::after {
    background: var(--gradient-primary);
  }

  .navbar-nav .nav-link::after {
    left: 0.85rem;
    right: auto;
    width: 28px;
  }
}

/* ==========================================================================
   26. DESKTOP STYLES  (min-width: 992px / 1200px / 1400px)
   ========================================================================== */

@media (min-width: 992px) {
  .hero {
    padding-top: calc(var(--header-h) + 2rem);
  }

  .hero-visual,
  .hero-visual--globe {
    min-height: 580px;
    margin-top: 0;
  }

  .globe-stage {
    width: min(100%, 560px);
  }

  .journey-track {
    grid-auto-columns: minmax(155px, 1fr);
  }

  .brand-text small {
    max-width: 220px;
  }
}

@media (min-width: 1200px) {
  :root {
    --max: 1180px;
  }

  .hero-content {
    padding-right: 1rem;
  }

  .hero h1 {
    letter-spacing: -0.04em;
  }

  .dest-card,
  .dest-card .body {
    min-height: 360px;
  }

  .trust-panel {
    padding: 1.85rem 1.5rem;
  }

  .section {
    padding-block: clamp(5rem, 8vw, 8rem);
  }
}

@media (min-width: 1400px) {
  :root {
    --max: 1240px;
    --header-h: 84px;
  }

  .hero-visual,
  .hero-visual--globe {
    min-height: 620px;
  }

  .globe-stage {
    width: min(100%, 600px);
  }

  .container-premium,
  .site-header .container-premium {
    width: min(100% - 3rem, var(--max));
  }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up,
  .reveal-zoom,
  .marquee-track,
  .airplane,
  .globe-ring,
  .globe-map-strip,
  .globe-earth,
  .globe-clouds,
  .globe-grid,
  .globe-orbit,
  .flight-plane,
  .globe-pin,
  .hero-orb,
  .float-y,
  .float-y-delay,
  .float-x,
  .btn-gradient,
  .gradient-text-shine,
  .whatsapp-fab,
  .scholarship-art {
    animation: none !important;
  }

  .globe-map-strip,
  .globe-earth,
  .globe-clouds,
  .globe-grid,
  .globe-orbit,
  .flight-plane,
  .globe-pin,
  .hero-orb {
    transform: none !important;
    animation: none !important;
  }

  .flight-orbit .flight-jet animateMotion {
    display: none;
  }

  .card-lift:hover,
  .btn-premium:hover {
    transform: none;
  }
}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
  .site-header,
  .whatsapp-fab,
  .mobile-cta-bar,
  .scroll-progress,
  .back-to-top,
  .airplane,
  .globe-ring,
  .globe-flight,
  .globe-orbit,
  .flight-orbit,
  .globe-aura,
  .hero-orb {
    display: none !important;
  }

  body {
    padding: 0;
    background: var(--white);
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}

/* ==========================================================================
   CROSS-BROWSER + FINAL POLISH
   Safari / Firefox / Edge compatibility
   ========================================================================== */

html {
  -webkit-tap-highlight-color: transparent;
  color-scheme: light;
}

@supports (min-height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #2563eb #e2e8f0;
}

/* Safari: backdrop-filter fallback */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass,
  .glass-card,
  .glass-light,
  .feature-card,
  .site-header.is-solid,
  .trust-panel {
    background: rgba(255, 255, 255, 0.96);
  }

  .glass-dark,
  .btn-ghost-light {
    background: rgba(15, 23, 42, 0.92);
  }
}

/* Safari mask composite already set on .dest-card::before */

/* Form controls — Safari/iOS (scoped; keep native selects & ranges) */
.btn-premium,
.btn-ghost-light,
.whatsapp-fab,
.back-to-top,
.navbar-toggler {
  -webkit-appearance: none;
  appearance: none;
}

.form-control,
.form-select {
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230F172A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 14px 10px;
  padding-right: 2.4rem;
}

.form-range,
input[type="range"] {
  -webkit-appearance: auto;
  appearance: auto;
}

/* Utility spacing (replace inline styles) */
.max-w-640 {
  max-width: 640px;
}

.max-w-48ch {
  max-width: 48ch;
}

.max-w-46ch {
  max-width: 46ch;
}

.max-w-faq {
  max-width: 860px;
}

.container-premium.max-w-faq {
  width: min(100% - (var(--container-pad) * 2), 860px);
}

.cta-copy {
  color: rgba(255, 255, 255, 0.75);
}

.btn-compact {
  min-height: 48px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.pill-lg {
  padding: 0.7rem 1rem !important;
  font-size: 0.95rem !important;
}

.media-cover {
  border-radius: var(--radius-lg);
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.contact-aside {
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #0f172a, #1e3a8a);
  color: #fff;
}

.team-tile {
  border-radius: var(--radius);
}

/* Back to top — in stylesheet (not injected) */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 1180;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    visibility var(--duration) var(--ease);
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.back-to-top:hover {
  transform: translate3d(0, -3px, 0);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 767.98px) {
  .back-to-top {
    bottom: calc(var(--mobile-bar-h) + 4.75rem);
    right: 1rem;
  }

  .whatsapp-fab {
    bottom: calc(var(--mobile-bar-h) + 1.15rem);
  }
}

/* Touch targets for nav links on mobile */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Invalid feedback visibility for custom validation */
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--danger);
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--danger);
}

/* Edge/Safari: prevent horizontal overflow from 100vw patterns */
img,
svg,
video,
iframe {
  max-width: 100%;
}

/* ==========================================================================
   END OF AGASTYA OVERSEAS STYLE SYSTEM
   ========================================================================== */
