/* ============================================================
   ESSE INDIA — Immigration Consultancy Website
   Design tokens
=============================================================== */
:root {
  --ink: #150c2e;
  --purple-950: #1a0d3d;
  --purple-900: #221056;
  --purple-800: #321a7a;
  --purple-600: #4b21c4;
  --purple-500: #6a35e6;
  --purple-400: #8b5cf6;
  --lilac-100: #f1ecfc;
  --lilac-50: #f8f6fd;
  --gold: #f5b400;
  --gold-light: #ffd76b;
  --gray: #6d6d80;
  --gray-light: #a6a6b8;
  --white: #ffffff;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 50px -20px rgba(75, 33, 196, .25);
  --shadow-card: 0 10px 30px -12px rgba(26, 13, 61, .18);
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ---------- Loader ---------- */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--purple-950), var(--purple-600));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .25);
  border-top-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  animation: spin 1.1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Background blobs ---------- */
.bg-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  animation: drift 16s ease-in-out infinite;
}

.blob-a {
  width: 420px;
  height: 420px;
  background: var(--purple-400);
  top: -120px;
  left: -100px;
}

.blob-b {
  width: 340px;
  height: 340px;
  background: var(--gold-light);
  top: 120px;
  right: -100px;
  animation-delay: -4s;
}

.blob-c {
  width: 300px;
  height: 300px;
  background: var(--purple-500);
  bottom: -120px;
  left: 35%;
  animation-delay: -8s;
}

.blob-d {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, .15);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.blob-e {
  width: 380px;
  height: 380px;
  background: var(--purple-400);
  top: -100px;
  right: -80px;
  opacity: .35;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.12);
  }
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--purple-950);
  color: #dfd6fb;
  font-size: 13px;
  padding: 9px 0;
  position: relative;
  z-index: 50;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left a {
  margin-right: 22px;
  opacity: .9;
}

.topbar-left a:hover {
  color: var(--gold-light);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right a {
  opacity: .85;
}

.topbar-right a:hover {
  color: var(--gold-light);
}

.social-mini {
  display: flex;
  gap: 10px;
  margin-left: 6px;
}

.social-mini a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: .25s;
}

.social-mini a:hover {
  background: var(--gold);
  color: var(--purple-950);
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(75, 33, 196, .08);
  transition: .3s;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px -14px rgba(26, 13, 61, .2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 44px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
  font-size: 14.5px;
}

.nav-menu>a {
  padding: 8px 2px;
  color: var(--ink);
  position: relative;
}

.nav-menu>a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--purple-500);
  transition: .25s;
}

.nav-menu>a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown>a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown>a i {
  font-size: 10px;
  transition: .25s;
}

.dropdown-panel {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .25s;
}

.dropdown-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ink);
}

.dropdown-panel a:hover {
  background: var(--lilac-100);
  color: var(--purple-600);
}

.dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover>a i {
  transform: rotate(180deg);
}

.burger {
  display: none;
  font-size: 20px;
  color: var(--purple-600);
  cursor: pointer;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .25s, box-shadow .25s, background .25s;
  white-space: nowrap;
}

.btn.sm {
  padding: 9px 18px;
  font-size: 12.5px;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-800));
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(75, 33, 196, .55);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -10px rgba(75, 33, 196, .6);
}

.btn-ghost {
  background: #fff;
  color: var(--purple-600);
  border: 1.5px solid var(--lilac-100);
  box-shadow: var(--shadow-card);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--purple-400);
}

.btn-white {
  background: #fff;
  color: var(--purple-700, var(--purple-600));
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-3px);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-3px);
}

.nav-cta {
  padding: 11px 22px;
  font-size: 13.5px;
}

.magnetic {
  will-change: transform;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, var(--lilac-100), transparent 45%),
    radial-gradient(circle at 85% 0%, #eef0ff, transparent 40%),
    var(--white);
  padding-top: 70px;
}

.hero-plane {
  position: absolute;
  top: 14%;
  left: -60px;
  font-size: 26px;
  color: var(--purple-400);
  animation: fly 18s linear infinite;
  transform: rotate(8deg);
}

@keyframes fly {
  0% {
    left: -60px;
    top: 20%;
  }

  50% {
    left: 60%;
    top: 8%;
  }

  100% {
    left: 120%;
    top: 16%;
  }
}

.hero-passport {
  position: absolute;
  font-size: 30px;
  color: var(--gold);
  opacity: .85;
  animation: floaty 6s ease-in-out infinite;
}

.hero-passport.p1 {
  top: 22%;
  right: 8%;
}

.hero-passport.p2 {
  bottom: 18%;
  right: 20%;
  color: var(--purple-500);
  animation-delay: -3s;
  font-size: 24px;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-16px) rotate(6deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
  padding: 70px 28px 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lilac-100);
  color: var(--purple-600);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.14;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.5px;
}

.grad-text {
  background: linear-gradient(120deg, var(--purple-500), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  margin-top: 18px;
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 38px;
}

.hero-stats .stat b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--purple-600);
}

.hero-stats .stat span {
  font-size: 12.5px;
  color: var(--gray);
}

.rating-pill {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.rating-pill i {
  color: #4285F4;
}

.rating-pill .stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  height: 460px;
}

.glass-frame {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--purple-900), var(--purple-600) 60%, var(--purple-400));
  box-shadow: 0 30px 60px -20px rgba(26, 13, 61, .4);
}

.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .14) 0 16px, transparent 16px 34px);
  clip-path: polygon(0 100%, 0 55%, 5% 55%, 5% 35%, 11% 35%, 11% 50%, 18% 50%, 18% 15%, 24% 15%, 24% 45%, 32% 45%, 32% 25%, 38% 25%, 38% 60%, 46% 60%, 46% 10%, 52% 10%, 52% 40%, 60% 40%, 60% 55%, 68% 55%, 68% 20%, 74% 20%, 74% 50%, 82% 50%, 82% 35%, 88% 35%, 88% 55%, 100% 55%, 100% 100%);
}

.orbit-ring {
  position: absolute;
  border: 1.5px dashed rgba(255, 255, 255, .25);
  border-radius: 50%;
}

.r1 {
  width: 260px;
  height: 260px;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  animation: spin 30s linear infinite;
}

.r2 {
  width: 340px;
  height: 340px;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  animation: spin 40s linear infinite reverse;
}

.people-cluster {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.person {
  border-radius: 50% 50% 0 0;
}

.person.p-dad {
  width: 64px;
  height: 200px;
  background: linear-gradient(180deg, #e9bd93, #20345a 42%);
}

.person.p-mom {
  width: 58px;
  height: 220px;
  background: linear-gradient(180deg, #e9bd93, #f2e3c6 40%);
}

.person.p-kid {
  width: 42px;
  height: 150px;
  background: linear-gradient(180deg, #e9bd93, var(--gold) 44%);
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floaty 5s ease-in-out infinite;
}

.float-card i {
  color: var(--purple-500);
}

.fc-1 {
  top: 10%;
  left: 6%;
}

.fc-2 {
  bottom: 14%;
  right: 6%;
  animation-delay: -2.4s;
}

.hero-wave {
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 100%, 0 40%, 10% 55%, 25% 30%, 40% 55%, 55% 25%, 70% 55%, 85% 30%, 100% 50%, 100% 100%);
  margin-top: -2px;
}

/* ============ TRUSTED ============ */
.trusted {
  padding: 50px 0 70px;
  text-align: center;
}

.trusted h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.trust-card {
  background: #fff;
  border: 1px solid var(--lilac-100);
  border-radius: var(--radius-md);
  padding: 26px 14px;
  transition: .3s;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.trust-card.gold {
  background: linear-gradient(160deg, #fff8e6, #fff);
}

.trust-ic {
  font-size: 22px;
  color: var(--purple-500);
  margin-bottom: 10px;
}

.trust-card b {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.mini-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.trust-card small {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 6px;
}

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 46px;
}

.tag {
  display: inline-block;
  background: var(--lilac-100);
  color: var(--purple-600);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 14px;
}

.tag.light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.section-head h2 {
  font-size: 30px;
  font-weight: 800;
}

/* ============ WHY CHOOSE - ICONS ANIMATED ============ */
.why {
  padding: 80px 0;
  background: var(--lilac-50);  /* Normal light background */
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 26px 28px;
  box-shadow: 0 8px 24px -12px rgba(26, 13, 61, 0.10);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 236, 252, 0.4);
  cursor: default;
}

/* 3D hover effect */
.why-card:hover {
  transform: perspective(1000px) rotateX(3deg) rotateY(5deg) translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px -20px rgba(75, 33, 196, 0.25), 
              0 0 0 1px rgba(139, 92, 246, 0.08);
}

/* Number badge */
.why-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 32px;
  font-weight: 900;
  color: var(--lilac-100);
  letter-spacing: -1px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-display);
  line-height: 1;
  z-index: 1;
}

.why-card:hover .why-number {
  color: var(--purple-400);
  transform: scale(1.1) rotate(-5deg);
  opacity: 0.6;
}

/* ===== ICON - MAIN STYLES ===== */
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lilac-100), #ffffff);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px -8px rgba(75, 33, 196, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Icon hover - 3D rotate + scale + color change */
.why-card:hover .why-icon {
  transform: perspective(400px) rotateX(8deg) rotateY(12deg) translateY(-6px) scale(1.12);
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #ffffff;
  box-shadow: 0 16px 40px -12px rgba(75, 33, 196, 0.4);
  border-color: transparent;
}

/* ===== ICON GLOW EFFECT ===== */
.why-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--purple-400), var(--gold));
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease;
  filter: blur(8px);
}

.why-card:hover .why-icon::before {
  opacity: 0.5;
  animation: iconGlowPulse 1.8s ease-in-out infinite;
}

@keyframes iconGlowPulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 0.4; }
}

/* ===== ICON PULSE RING ===== */
.why-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 26px;
  border: 2px solid var(--purple-400);
  opacity: 0;
  transition: all 0.6s ease;
}

.why-card:hover .why-icon::after {
  opacity: 0.2;
  animation: iconRingPulse 2s ease-in-out infinite;
}

@keyframes iconRingPulse {
  0% { transform: scale(0.8); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===== ICON BOUNCE ENTRY ===== */
.why-card:nth-child(1) .why-icon { animation: iconBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both; }
.why-card:nth-child(2) .why-icon { animation: iconBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s both; }
.why-card:nth-child(3) .why-icon { animation: iconBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.26s both; }
.why-card:nth-child(4) .why-icon { animation: iconBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.34s both; }
.why-card:nth-child(5) .why-icon { animation: iconBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.42s both; }
.why-card:nth-child(6) .why-icon { animation: iconBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.50s both; }

@keyframes iconBounceIn {
  0% { transform: scale(0) rotate(-20deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* ===== SHINE EFFECT ON CARD ===== */
.why-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 30%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  pointer-events: none;
}

.why-card:hover .why-shine {
  left: 130%;
}

/* Text styles - Normal */
.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  color: var(--ink);
  transition: color 0.3s ease;
}

.why-card:hover h4 {
  color: var(--purple-600);
}

.why-card p {
  font-size: 13.5px;
  color: var(--gray);
  position: relative;
  z-index: 1;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.why-card:hover p {
  color: var(--ink);
}

/* ===== AOS Flip animation override ===== */
[data-aos="flip-up"] {
  transform: perspective(800px) rotateX(-10deg) translateY(30px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="flip-up"].aos-animate {
  transform: perspective(800px) rotateX(0) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .why-card {
    padding: 26px 20px 22px;
  }
  
  .why-number {
    font-size: 26px;
  }
  
  .why-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 14px;
  }
  
  .why-card h4 {
    font-size: 15px;
  }
}
/* ============ STATS BANNER ============ */
.stats-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--purple-950), var(--purple-600));
  padding: 54px 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.stat-block b {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
}

.stat-block span {
  font-size: 12.5px;
  opacity: .85;
}

/* ============ DESTINATIONS ============ */
.destinations {
  padding: 80px 0;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: .4s;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.dest-img {
  height: 170px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: .5s;
  position: relative;
  z-index: 1;
}

.dest-card:hover .dest-img img {
  transform: scale(1.08);
}

.dest-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .18));
  z-index: 0;
}

.c-canada {
  background: linear-gradient(160deg, #5f7fbf, #1c2b56);
}

.c-australia {
  background: linear-gradient(160deg, #e08a5f, #3a2454);
}

.c-uk {
  background: linear-gradient(160deg, #7f8db0, #232842);
}

.c-germany {
  background: linear-gradient(160deg, #4a4a52, #1a1a1e);
}

.c-nz {
  background: linear-gradient(160deg, #4fb0a0, #1c3d4a);
}

.c-italy {
  background: linear-gradient(160deg, #5da35a, #1e3a26);
}

.flag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 26px;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .35));
}

.dest-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: .6s;
}

.dest-card:hover .dest-shine {
  left: 130%;
}

.dest-body {
  padding: 20px;
}

.dest-body h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.dest-body p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.5;
}

.explore {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--purple-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .25s;
}

.explore i {
  transition: .25s;
}

.dest-card:hover .explore i {
  transform: translateX(4px);
}

/* ============ PROCESS ============ */
.process {
  padding: 80px 0;
  background: var(--lilac-50);
}

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
}

.timeline-line {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lilac-100);
  z-index: 0;
  border-radius: 3px;
  overflow: hidden;
}

.timeline-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-500), var(--gold));
  transition: width 1.4s ease;
}

.timeline.in-view .timeline-fill {
  width: 100%;
}

.tl-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tl-dot {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--lilac-100);
  transition: .3s;
}

.tl-step:hover .tl-dot {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-800));
  color: #fff;
  transform: translateY(-6px);
}

.tl-step small {
  display: block;
  color: var(--purple-500);
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 4px;
  letter-spacing: .4px;
}

.tl-step b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.tl-step span {
  font-size: 11.5px;
  color: var(--gray);
}

/* ============ SUCCESS STORIES ============ */
.stories {
  padding: 80px 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.stories-left h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 10px 0 14px;
}

.stories-left p {
  color: var(--gray);
  font-size: 14.5px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.glass {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .6);
}

.story-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-card);
  min-height: 200px;
  overflow: hidden;
  transition: .35s;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-500), var(--gold));
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.story-quote {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 52px;
  line-height: 1;
  color: var(--purple-400);
  opacity: .12;
  font-family: Georgia, serif;
  font-style: italic;
}

.story-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-800));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(75, 33, 196, .5);
}

.story-head b {
  display: block;
  font-size: 14.5px;
}

.story-head .flagline {
  font-size: 11.5px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.story-head .flagline .cc {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--purple-500);
  background: var(--lilac-100);
  padding: 1px 6px;
  border-radius: 5px;
}

.story-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.stories-right {
  min-width: 0;
}

.story-carousel {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.story-track {
  display: flex;
  min-width: 0;
  transition: transform .5s ease;
}

.story-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 4px 8px 4px 0;
}

@media (min-width:768px) {
  .story-slide {
    flex: 0 0 50%;
  }
}

.story-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.story-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: .25s;
  flex-shrink: 0;
}

.story-arrow:hover {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-800));
  color: #fff;
  transform: translateY(-2px);
}

.story-dots {
  display: flex;
  gap: 8px;
}

.story-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple-400);
  opacity: .3;
  transition: .25s;
  cursor: pointer;
  border: none;
}

.story-dot.active {
  opacity: 1;
  background: var(--purple-600);
  width: 22px;
  border-radius: 5px;
}
/* ============ EXPERTISE ============ */
.expertise {
  padding: 80px 0;
  background: var(--lilac-50);
  position: relative;
  overflow: hidden;
}

/* Background subtle animation */
.expertise::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.04), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(245, 180, 0, 0.04), transparent 50%);
  animation: expertiseBg 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes expertiseBg {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-5%, -5%) rotate(5deg); }
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.exp-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 16px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Glow effect on hover */
.exp-card .exp-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--purple-400), var(--gold));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.exp-card:hover .exp-glow {
  opacity: 0.08;
}

/* 3D hover effect */
.exp-card:hover {
  transform: perspective(800px) rotateX(4deg) rotateY(6deg) translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px -20px rgba(75, 33, 196, 0.4), 
              0 0 0 1px rgba(139, 92, 246, 0.2);
}

/* Icon container with bounce */
.exp-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lilac-100), #fff);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px -8px rgba(75, 33, 196, 0.2);
}

.exp-card:hover .exp-icon {
  transform: scale(1.12) translateY(-4px) rotate(-4deg);
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #6a11bf;
  box-shadow: 0 12px 30px -8px rgba(75, 33, 196, 0.5);
}

/* Icon pulse ring */
.exp-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 2px solid var(--purple-400);
  opacity: 0;
  transition: all 0.5s ease;
}

.exp-card:hover .exp-icon::after {
  opacity: 0.3;
  animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.3); opacity: 0; }
}

.exp-card b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.exp-card:hover b {
  color: var(--purple-600);
}

.exp-card span {
  font-size: 11.5px;
  color: var(--gray);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.exp-card:hover span {
  color: var(--ink);
}

/* Staggered animation on page load */
.exp-card {
  opacity: 0;
  animation: expCardIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.exp-card:nth-child(1) { animation-delay: 0.05s; }
.exp-card:nth-child(2) { animation-delay: 0.12s; }
.exp-card:nth-child(3) { animation-delay: 0.19s; }
.exp-card:nth-child(4) { animation-delay: 0.26s; }
.exp-card:nth-child(5) { animation-delay: 0.33s; }
.exp-card:nth-child(6) { animation-delay: 0.40s; }

@keyframes expCardIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .exp-card {
    padding: 22px 12px 20px;
  }
  
  .exp-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 14px;
  }
  
  .exp-card b {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ============ AWARDS ============ */
.awards {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--purple-950), var(--purple-800));
  color: #fff;
  padding: 80px 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.awards h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 10px 0 26px;
}

.trophy-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trophy-card {
  position: relative;
  height: 140px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 28px;
  color: var(--gold);
  overflow: hidden;
  padding: 12px 10px;
  text-align: center;
}

.trophy-card small {
  font-size: 11px;
  color: #fff;
  opacity: .85;
  font-weight: 600;
  line-height: 1.3;
}

.trophy-card .shine {
  position: absolute;
  top: 0;
  left: -70%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-20deg);
  animation: shine 3.4s ease-in-out infinite;
}

.trophy-card:nth-child(2) .shine {
  animation-delay: .6s;
}

.trophy-card:nth-child(3) .shine {
  animation-delay: 1.2s;
}

.trophy-card:nth-child(4) .shine {
  animation-delay: 1.8s;
}

@keyframes shine {
  0% {
    left: -70%;
  }

  50%,
  100% {
    left: 130%;
  }
}

.awards-right p {
  opacity: .8;
  font-size: 14px;
}

.awards-right h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 6px 0 14px;
  color: var(--gold-light);
}

.awards-note {
  opacity: .85;
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* ============ OUR AUTHENTICITY ============ */
.authenticity {
  padding: 80px 0;
  background: var(--lilac-50);
  overflow: hidden;
}

.cert-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x proximity;
}

.cert-row::-webkit-scrollbar {
  height: 6px;
}

.cert-row::-webkit-scrollbar-thumb {
  background: var(--purple-400);
  border-radius: 6px;
}

.cert-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: .35s;
  background: #fff;
}

.cert-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-soft);
}

.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 707/1000;
}

/* ============ VIDEO SUCCESS STORIES ============ */
.video-stories {
  padding: 80px 0;
}

.video-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.video-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: .35s;
  aspect-ratio: 224/382;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(220, 38, 38, .92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
  transition: .3s;
}

.video-card:hover .play-badge {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(220, 38, 38, 1);
}

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 0;
  background: linear-gradient(120deg, var(--purple-600), var(--purple-400));
  color: #fff;
}

.cta-inner h2 {
  font-size: 34px;
  font-weight: 800;
}

.cta-inner p {
  margin: 14px 0 30px;
  opacity: .9;
  font-size: 15px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-plane {
  position: absolute;
  font-size: 30px;
  color: rgba(255, 255, 255, .5);
  animation: fly 14s linear infinite;
  top: 20%;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, .14);
  border-radius: 50%;
  filter: blur(2px);
}

.cloud.c1 {
  width: 140px;
  height: 50px;
  top: 12%;
  left: 8%;
  animation: driftx 20s linear infinite;
}

.cloud.c2 {
  width: 100px;
  height: 38px;
  top: 64%;
  left: 70%;
  animation: driftx 26s linear infinite reverse;
}

.cloud.c3 {
  width: 80px;
  height: 30px;
  top: 30%;
  left: 50%;
  animation: driftx 22s linear infinite;
}

@keyframes driftx {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(120px);
  }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: #c9c3dc;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 34px;
  padding-bottom: 40px;
}

.footer-grid h5 {
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 18px;
}

.footer-grid ul li {
  margin-bottom: 10px;
  font-size: 13.5px;
}

.footer-grid ul li a:hover {
  color: var(--gold-light);
}

.footer-about p {
  font-size: 13px;
  margin: 16px 0;
  line-height: 1.65;
  color: #a9a2c2;
}

.newsletter {
  display: flex;
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 18px;
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
}

.newsletter button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-mini.big a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .08);
}

.contact-line {
  font-size: 13.5px;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  color: #a9a2c2;
}

.contact-line i {
  color: var(--gold);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #8b84a3;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-800));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
  z-index: 80;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============ ELIGIBILITY MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(21, 12, 46, .55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 38px 32px 32px;
  transform: translateY(24px) scale(.96);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lilac-100);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: .25s;
}

.modal-close:hover {
  background: var(--purple-500);
  color: #fff;
  transform: rotate(90deg);
}

.modal-head {
  margin-bottom: 22px;
}

.modal-head .tag {
  display: inline-block;
  background: var(--lilac-100);
  color: var(--purple-600);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.modal-head h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-head p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.55;
}

.modal-form .form-row {
  margin-bottom: 16px;
}

.modal-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.modal-form input,
.modal-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--lilac-100);
  background: var(--lilac-50);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: .25s;
  appearance: none;
}

.modal-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%236a35e6' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

.modal-form input:focus,
.modal-form select:focus {
  border-color: var(--purple-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, .12);
}

.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.modal-success {
  display: none;
  text-align: center;
  padding: 10px 0 4px;
}

.modal-success.show {
  display: block;
}

.modal-form.hide {
  display: none;
}

.modal-success-icon {
  font-size: 52px;
  color: var(--purple-500);
  margin-bottom: 14px;
}

.modal-success h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.modal-success p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 340px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .video-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    flex-wrap: wrap;
  }

  .timeline-line {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    transition: .35s;
    gap: 20px;
    z-index: 120;
  }

  .nav-menu.open {
    right: 0;
  }

  .dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: none;
    display: none;
    padding-left: 10px;
  }

  .dropdown.open .dropdown-panel {
    display: block;
  }

  .burger {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 22px;
  }

  .trust-grid,
  .why-grid,
  .dest-grid,
  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-row {
    grid-template-columns: 1fr 1fr;
  }

  .cert-card {
    flex: 0 0 150px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trophy-row {
    grid-template-columns: 1fr 1fr;
  }

  .topbar-left a:nth-child(2) {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width:480px) {

  .trust-grid,
  .why-grid,
  .dest-grid,
  .exp-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}


.hero-visual .glass-frame {
  position: relative;
  overflow: hidden;
}

.award-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Keep float cards on top of the image */
.float-card {
  position: absolute;
  z-index: 2;
}

/* Adjust glass-frame to have a dark overlay if text readability is an issue */
.glass-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.2); */
  pointer-events: none;
  z-index: 1;
}

/* ===== DROPDOWN FIX — Stronger rules for all pages ===== */
.dropdown {
  position: relative !important;
}

.dropdown > a {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  padding: 8px 4px !important;
}

.dropdown > a i {
  transition: transform 0.25s ease !important;
}

.dropdown-panel {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 200px !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 50px -20px rgba(75, 33, 196, 0.25) !important;
  padding: 10px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) !important;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
  z-index: 9999 !important;
  pointer-events: none !important;
}

.dropdown:hover .dropdown-panel,
.dropdown.open .dropdown-panel {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.dropdown:hover > a i,
.dropdown.open > a i {
  transform: rotate(180deg) !important;
}

.dropdown-panel a {
  display: block !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  color: #150c2e !important;
  transition: background 0.2s ease !important;
  text-decoration: none !important;
}

.dropdown-panel a:hover {
  background: #f1ecfc !important;
  color: #4b21c4 !important;
}

/* Mobile view override */
@media (max-width: 760px) {
  .dropdown-panel {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    display: none !important;
    padding-left: 16px !important;
    pointer-events: auto !important;
  }

  .dropdown.open .dropdown-panel {
    display: block !important;
  }

  /* Mobile par hover disable */
  .dropdown:hover .dropdown-panel {
    display: none !important;
  }

  .dropdown.open:hover .dropdown-panel {
    display: block !important;
  }
}



/* ===== DROPDOWN FIX — Mobile + Desktop ===== */
.dropdown {
  position: relative !important;
}

.dropdown > a {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  padding: 8px 4px !important;
}

.dropdown > a i {
  transition: transform 0.25s ease !important;
}

.dropdown-panel {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 200px !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 50px -20px rgba(75, 33, 196, 0.25) !important;
  padding: 10px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) !important;
  transition: opacity 0.25s ease, transform 0.25s ease !important;
  z-index: 9999 !important;
  pointer-events: none !important;
}

/* Desktop hover */
@media (min-width: 761px) {
  .dropdown:hover .dropdown-panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  
  .dropdown:hover > a i {
    transform: rotate(180deg) !important;
  }
}

/* Mobile + Desktop click (via .open class) */
.dropdown.open .dropdown-panel {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.dropdown.open > a i {
  transform: rotate(180deg) !important;
}

.dropdown-panel a {
  display: block !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  color: #150c2e !important;
  transition: background 0.2s ease !important;
  text-decoration: none !important;
}

.dropdown-panel a:hover {
  background: #f1ecfc !important;
  color: #4b21c4 !important;
}

/* Mobile specific */
@media (max-width: 760px) {
  .dropdown-panel {
    position: static !important;
    box-shadow: none !important;
    padding-left: 16px !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
  }

  .dropdown.open .dropdown-panel {
    display: block !important;
  }
}
/* ===== Destinations - Extra Country Colors ===== */
.c-austria {
  background: linear-gradient(160deg, #e63a3a, #6d1a1a);
}
.c-sweden {
  background: linear-gradient(160deg, #1a5fa8, #0d2f5a);
}
.c-uae {
  background: linear-gradient(160deg, #2a6b3a, #1a3a2a);
}
.c-portugal {
  background: linear-gradient(160deg, #1a8a3a, #0d4a2a);
}
.c-hongkong {
  background: linear-gradient(160deg, #cc1a2a, #6d0a1a);
}

/* ===== Dest Grid - Responsive ===== */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .dest-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ===== Destinations - Flag Images ===== */
.dest-img {
  height: 170px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5; /* light gray background */
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
  position: relative;
  z-index: 1;
}

.dest-card:hover .dest-img img {
  transform: scale(1.08);
}

.dest-img .dest-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: .6s;
}

.dest-card:hover .dest-shine {
  left: 130%;
}

/* ===== Dest Grid - Responsive ===== */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .dest-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== See More Button Animation ===== */
#toggleDestBtn {
  transition: all 0.3s ease;
}

#toggleDestBtn i {
  transition: transform 0.3s ease;
}

#toggleDestBtn.active i {
  transform: rotate(180deg);
}
/* ============================================================
   POINTS TABLE - MODERN
============================================================= */
.points-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 4px 30px rgba(26, 13, 61, 0.06);
    border: 1px solid var(--gray-light);
}

.points-table-container {
    overflow-x: auto;
}

.points-table-modern {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.points-table-modern thead th {
    background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
    color: #ffffff;
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.points-table-modern thead th.text-center {
    text-align: center;
}

/* Category Rows */
.points-table-modern .category-row td {
    background: var(--lilac-50);
    font-weight: 800;
    color: var(--purple-700);
    padding: 12px 18px;
    font-size: 14px;
    border-top: 2px solid var(--purple-300);
}

.points-table-modern .category-row .category-icon {
    margin-right: 10px;
    color: var(--purple-500);
}

.points-table-modern .category-row .category-badge {
    float: right;
    background: var(--lilac-100);
    color: var(--purple-600);
    padding: 2px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.points-table-modern .category-row.bonus td {
    background: var(--gold-pale);
    color: #b8860b;
    border-top-color: var(--gold);
}

.points-table-modern .category-row.bonus .category-icon {
    color: var(--gold);
}

/* Point Rows */
.points-table-modern .point-row td {
    padding: 10px 18px;
    border-bottom: 1px solid var(--gray-light);
    color: var(--ink);
    transition: all 0.3s ease;
}

.points-table-modern .point-row:hover td {
    background: var(--lilac-50);
}

.points-table-modern .point-row .points-cell {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--purple-600);
}

.points-table-modern .point-row .points-number {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.points-table-modern .point-row:hover .points-number {
    transform: scale(1.25);
    color: var(--purple-800);
}

/* Highlight rows */
.points-table-modern .point-row.highlight td {
    background: rgba(106, 53, 230, 0.04);
    border-left: 3px solid var(--purple-500);
}

.points-table-modern .point-row.highlight .points-number {
    color: var(--purple-700);
    font-weight: 800;
}

.points-table-modern .point-row.highlight:hover td {
    background: rgba(106, 53, 230, 0.08);
}

/* Bonus rows */
.points-table-modern .point-row.bonus-row td {
    background: rgba(245, 180, 0, 0.04);
}

.points-table-modern .point-row.bonus-row:hover td {
    background: rgba(245, 180, 0, 0.08);
}

.points-table-modern .point-row.bonus-row .points-number {
    color: #b8860b;
}

/* Age range */
.points-table-modern .age-range {
    font-weight: 500;
}

/* Best badge */
.points-table-modern .best-badge {
    background: linear-gradient(135deg, var(--gold), #d4a000);
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 8px;
}

/* Bonus tag */
.points-table-modern .bonus-tag {
    background: var(--gold-pale);
    color: #b8860b;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
}

/* Points note */
.points-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 18px 22px;
    background: var(--lilac-50);
    border-radius: 16px;
    border-left: 4px solid var(--purple-500);
}

.points-note-icon {
    font-size: 22px;
    color: var(--purple-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.points-note strong {
    color: var(--purple-700);
}

.points-note .points-extra {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

/* ============================================================
   DOCUMENTS - MODERN CARDS
============================================================= */
.documents-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.doc-card-modern {
    perspective: 800px;
}

.doc-card-modern .doc-card-inner {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 18px 24px;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 13, 61, 0.04);
    transform-style: preserve-3d;
}

.doc-card-modern .doc-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-500), var(--gold));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 18px;
}

.doc-card-modern:hover .doc-card-inner {
    transform: translateY(-10px) rotateX(4deg) rotateY(4deg) scale(1.02);
    box-shadow: 0 20px 50px -18px rgba(75, 33, 196, 0.25);
    border-color: var(--purple-400);
}

.doc-card-modern:hover .doc-card-inner::before {
    opacity: 0.04;
}

.doc-card-modern .doc-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--lilac-100);
    color: var(--purple-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.doc-card-modern:hover .doc-card-icon {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
    color: #ffffff;
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 12px 30px -8px rgba(75, 33, 196, 0.3);
}

.doc-card-modern .doc-card-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.doc-card-modern:hover .doc-card-text {
    color: var(--purple-600);
}

/* Shine effect */
.doc-card-modern .doc-card-shine {
    position: absolute;
    top: 0;
    left: -60%;
    width: 30%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 2;
}

.doc-card-modern:hover .doc-card-shine {
    left: 130%;
}

/* ============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1024px) {
    .documents-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .points-wrapper {
        padding: 20px 16px;
    }
    .points-table-modern {
        font-size: 12px;
    }
    .points-table-modern thead th,
    .points-table-modern .category-row td,
    .points-table-modern .point-row td {
        padding: 8px 12px;
    }
    .points-table-modern .category-row .category-badge {
        float: none;
        display: inline-block;
        margin-left: 8px;
    }
    .points-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .points-note .points-extra {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .documents-grid-modern {
        grid-template-columns: 1fr;
    }
    .points-table-modern {
        font-size: 11px;
    }
    .points-table-modern thead th,
    .points-table-modern .category-row td,
    .points-table-modern .point-row td {
        padding: 6px 8px;
    }
    .points-table-modern .best-badge,
    .points-table-modern .bonus-tag {
        font-size: 8px;
        padding: 1px 6px;
    }
}
/* ============================================================
   FIX: MOBILE RESPONSIVE - 2 CARDS PER ROW ON MOBILE
   ONLY CSS CHANGES - NO PHP, NO CONTENT CHANGED
============================================================= */

/* ---------- FIX: Trust Grid (2 per row on mobile) ---------- */
@media (max-width: 768px) {
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 0 10px;
  }
  
  .trust-card {
    padding: 14px 10px !important;
    min-height: 100px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  
  .trust-card b {
    font-size: 20px !important;
  }
  
  .trust-card .mini-stars {
    font-size: 12px !important;
  }
  
  .trust-card small {
    font-size: 10px !important;
  }
  
  .trust-card .trust-ic {
    font-size: 22px !important;
    margin-bottom: 4px;
  }
  
  /* Gold card full width on mobile */
  .trust-card.gold {
    grid-column: span 2 !important;
  }
}

/* ---------- FIX: Why Choose Us (2 per row) ---------- */
@media (max-width: 768px) {
  .why-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 0 10px;
  }
  
  .why-card {
    padding: 16px 12px !important;
    min-height: 140px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .why-card .why-number {
    font-size: 18px !important;
  }
  
  .why-card .why-icon {
    font-size: 22px !important;
    width: 44px !important;
    height: 44px !important;
  }
  
  .why-card h4 {
    font-size: 13px !important;
    margin: 6px 0 4px !important;
  }
  
  .why-card p {
    font-size: 11px !important;
  }
}

/* ---------- FIX: Destinations (2 per row) ---------- */
@media (max-width: 768px) {
  .dest-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 0 10px;
  }
  
  .dest-card {
    min-height: 200px !important;
  }
  
  .dest-card .dest-img {
    height: 80px !important;
  }
  
  .dest-card .dest-img img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  
  .dest-card .dest-body {
    padding: 10px 12px !important;
  }
  
  .dest-card .dest-body h4 {
    font-size: 14px !important;
    margin-bottom: 4px !important;
  }
  
  .dest-card .dest-body p {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  
  .dest-card .explore {
    font-size: 11px !important;
  }
  
  /* Show hidden destinations on mobile */
  .hidden-dest {
    display: block !important;
  }
  
  /* Hide "See More" button on mobile since all are visible */
  .dest-see-more {
    display: none !important;
  }
}

/* ---------- FIX: Expertise (2 per row) ---------- */
@media (max-width: 768px) {
  .exp-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 10px;
  }
  
  .exp-card {
    padding: 14px 10px !important;
    min-height: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .exp-card .exp-icon {
    font-size: 24px !important;
    width: 48px !important;
    height: 48px !important;
  }
  
  .exp-card b {
    font-size: 12px !important;
    margin: 4px 0 2px !important;
  }
  
  .exp-card span {
    font-size: 10px !important;
  }
}

/* ---------- FIX: Process/Timeline on mobile ---------- */
@media (max-width: 768px) {
  .timeline {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    padding: 0 10px;
    position: relative !important;
  }
  
  .timeline-line {
    display: none !important;
  }
  
  .tl-step {
    padding: 14px !important;
    text-align: center !important;
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
    border: 1px solid #f1ecfc !important;
  }
  
  .tl-step .tl-dot {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto 8px !important;
    font-size: 16px !important;
  }
  
  .tl-step small {
    font-size: 10px !important;
  }
  
  .tl-step b {
    font-size: 13px !important;
    display: block !important;
  }
  
  .tl-step span {
    font-size: 10px !important;
  }
}

/* ---------- FIX: Stats Banner (2 per row) ---------- */
@media (max-width: 768px) {
  .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 0 10px;
  }
  
  .stat-block {
    padding: 14px 10px !important;
    text-align: center !important;
  }
  
  .stat-block b {
    font-size: 24px !important;
  }
  
  .stat-block span {
    font-size: 11px !important;
  }
}

/* ---------- FIX: Awards section on mobile ---------- */
@media (max-width: 768px) {
  .awards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 15px;
  }
  
  .trophy-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  
  .trophy-card {
    padding: 12px 8px !important;
    text-align: center !important;
  }
  
  .trophy-card i {
    font-size: 24px !important;
  }
  
  .trophy-card small {
    font-size: 10px !important;
  }
}

/* ---------- FIX: Certificates (2 per row) ---------- */
@media (max-width: 768px) {
  .cert-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 10px;
  }
  
  .cert-card {
    padding: 6px !important;
  }
  
  .cert-card img {
    width: 100% !important;
    height: auto !important;
  }
}

/* ---------- FIX: Video Stories (2 per row) ---------- */
@media (max-width: 768px) {
  .video-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 10px;
  }
  
  .video-card {
    min-height: 120px !important;
  }
  
  .video-card img {
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .video-card .play-badge {
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
  }
}

/* ---------- FIX: Stories/Carousel on mobile ---------- */
@media (max-width: 768px) {
  .stories-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 15px;
  }
  
  .stories-left {
    text-align: center !important;
  }
  
  .story-card {
    padding: 16px !important;
  }
  
  .story-card .story-head {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .story-card .avatar {
    width: 44px !important;
    height: 44px !important;
    font-size: 14px !important;
  }
  
  .story-card p {
    font-size: 13px !important;
  }
}

/* ---------- FIX: Hero section on mobile ---------- */
@media (max-width: 768px) {
  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 15px;
  }
  
  .hero-copy h1 {
    font-size: 28px !important;
  }
  
  .hero-copy .lead {
    font-size: 14px !important;
  }
  
  .hero-ctas {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  .hero-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 8px !important;
  }
  
  .hero-stats .stat b {
    font-size: 18px !important;
  }
  
  .hero-stats .stat span {
    font-size: 10px !important;
  }
  
  .rating-pill {
    font-size: 12px !important;
    padding: 6px 14px !important;
  }
  
  .hero-visual {
    display: none !important;
  }
}

/* ---------- FIX: Final CTA on mobile ---------- */
@media (max-width: 768px) {
  .cta-inner {
    padding: 30px 20px !important;
  }
  
  .cta-inner h2 {
    font-size: 24px !important;
  }
  
  .cta-inner p {
    font-size: 14px !important;
  }
  
  .cta-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  .cta-btns .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ---------- FIX: Section headings on mobile ---------- */
@media (max-width: 768px) {
  .section-head {
    padding: 0 15px !important;
  }
  
  .section-head h2 {
    font-size: 24px !important;
  }
  
  .section-head .tag {
    font-size: 10px !important;
    padding: 4px 12px !important;
  }
}

/* ---------- FIX: Topbar on mobile (show 2 per row) ---------- */
@media (max-width: 768px) {
  .topbar .wrap {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4px 8px !important;
    padding: 6px 10px !important;
  }
  
  .topbar-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: flex-start !important;
  }
  
  .topbar-left a {
    font-size: 9px !important;
  }
  
  .topbar-left a i {
    font-size: 10px !important;
    width: 16px !important;
  }
  
  .topbar-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: flex-end !important;
    border-top: none !important;
    padding-top: 0 !important;
  }
  
  .topbar-right > a {
    font-size: 9px !important;
  }
  
  .social-mini {
    display: flex !important;
    gap: 4px !important;
  }
  
  .social-mini a {
    width: 20px !important;
    height: 20px !important;
    font-size: 9px !important;
  }
}

/* ---------- FIX: Navbar on mobile ---------- */
@media (max-width: 992px) {
  .nav-inner {
    padding: 0 12px !important;
  }
  
  .brand-logo {
    max-height: 32px !important;
  }
  
  .burger {
    font-size: 18px !important;
    padding: 4px 8px !important;
  }
}