/* =============================================
   KGC Study Abroad — style.css
   Vibrant Color Palette + Slider
   ============================================= */

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- CSS VARIABLES (Vibrant Palette) ---- */
:root {
  /* Core Colors */
  --indigo: #4f46e5;
  --indigo-dark: #3730a3;
  --indigo-light: #818cf8;
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-light: #fcd34d;
  --pink: #ec4899;
  --pink-dark: #be185d;
  --green: #10b981;
  --green-dark: #059669;
  --orange: #f97316;

  /* Neutrals */
  --dark: #0f172a;
  --dark2: #1e293b;
  --mid: #64748b;
  --light: #f1f5f9;
  --lighter: #f8faff;
  --white: #ffffff;
  --border: #e2e8f0;

  /* Gradients */
  --grad-main: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --grad-cyan: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --grad-pink: linear-gradient(135deg, #ec4899 0%, #7c3aed 100%);
  --grad-green: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --grad-dark: linear-gradient(135deg, #0f172a 0%, #1e3a6e 100%);
  --grad-hero: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(79, 70, 229, 0.55) 100%
  );

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(79, 70, 229, 0.12);
  --sh-md: 0 8px 32px rgba(79, 70, 229, 0.16);
  --sh-lg: 0 20px 60px rgba(79, 70, 229, 0.2);
  --sh-xl: 0 32px 80px rgba(79, 70, 229, 0.25);

  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  font-weight: 700;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: 1.2rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-lg {
  padding: 16px 38px;
  font-size: 1.02rem;
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.84rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: var(--grad-main);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(79, 70, 229, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.5);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-glass-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-glass-dark:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-white {
  background: var(--white);
  color: var(--indigo);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.pulse-btn {
  animation: pulseBtnAnim 2.5s ease-in-out infinite;
}
@keyframes pulseBtnAnim {
  0%,
  100% {
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(245, 158, 11, 0.6),
      0 0 0 10px rgba(245, 158, 11, 0.1);
  }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.light-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.section-title {
  margin-bottom: 16px;
}
.text-white {
  color: var(--white) !important;
}
.text-light-muted {
  color: rgba(255, 255, 255, 0.7) !important;
  max-width: 560px;
  margin: 0 auto;
}
.section-desc {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: linear-gradient(90deg, #0f172a 0%, #1e3a6e 100%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.79rem;
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar span i {
  margin-right: 6px;
  color: var(--gold);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(79, 70, 229, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  background: var(--grad-main);
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  box-shadow: var(--sh-sm);
}
.logo-words {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}
.logo-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
}
.logo-sub {
  font-size: 0.72rem;
  color: var(--mid);
  font-weight: 500;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}
.logo-primary {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
}
.logo-secondary {
  font-size: 18px;
  color: var(--mid);
  font-weight: 500;
}

/* ---- RICKYY NAME BRAND STYLING ---- */
.rickyy-name {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
}
.logo-secondary .rickyy-name {
  font-size: 1em;
  font-style: italic;
  font-weight: 700;
}

/* Nav */
.nav {
  margin-left: auto;
}
.nav ul {
  display: flex;
  gap: 2px;
}
.nav ul li a {
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--dark2);
  transition: var(--transition);
}
.nav ul li a:hover {
  background: rgba(79, 70, 229, 0.08);
  color: var(--indigo);
}
.active-nav {
  color: var(--indigo) !important;
  background: rgba(79, 70, 229, 0.1) !important;
}

.header-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   BANNER SLIDER
   ============================================= */
.slider-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slide */
.slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  display: flex;
  align-items: center;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.slide.prev {
  opacity: 0;
  transform: scale(0.97);
  z-index: 1;
}

/* Overlays */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(79, 70, 229, 0.45) 100%
  );
}
.slide-overlay-green {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(6, 182, 212, 0.4) 100%
  );
}
.slide-overlay-red {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(239, 68, 68, 0.35) 100%
  );
}
.slide-overlay-orange {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(249, 115, 22, 0.4) 100%
  );
}
.slide-overlay-indigo {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(124, 58, 237, 0.45) 100%
  );
}

/* Slide content */
.slide-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding-top: 40px;
  max-width: 760px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  animation: slideTagIn 0.6s ease 0.3s both;
}
@keyframes slideTagIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: slideTitleIn 0.6s ease 0.15s both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.slide-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes slideTitleIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.7;
  animation: slideDescIn 0.6s ease 0.25s both;
}
.slide-desc strong {
  color: var(--gold-light);
}
@keyframes slideDescIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: slideStatsIn 0.6s ease 0.35s both;
}
@keyframes slideStatsIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.s-stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 100px;
}
.s-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.s-stat span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideActionsIn 0.6s ease 0.45s both;
}
@keyframes slideActionsIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Country badge */
.slide-country-badge {
  position: absolute;
  right: 60px;
  bottom: 80px;
  font-size: 6rem;
  z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover {
  background: var(--grad-gold);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}
.slider-prev {
  left: 28px;
}
.slider-next {
  right: 28px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  width: 32px;
  border-radius: 5px;
  background: var(--gold);
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  width: 0;
  background: var(--grad-gold);
  transition: none;
}
.slider-progress-bar.animating {
  transition: width 5s linear;
}

/* =============================================
   STATS RIBBON
   ============================================= */
.stats-ribbon {
  background: var(--grad-main);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.stats-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
}
.stats-ribbon-inner {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.ribbon-stat {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  color: var(--white);
}
.ribbon-stat > i {
  font-size: 1.6rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.ribbon-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.ribbon-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}
.ribbon-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  flex-shrink: 0;
}

/* =============================================
   DESTINATIONS
   ============================================= */
.destinations {
  padding: 100px 0;
  background: var(--lighter);
}

.country-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
}
.country-search-icon {
  position: absolute;
  left: 18px;
  color: var(--indigo);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
}
.country-search-input {
  width: 100%;
  padding: 14px 48px 14px 46px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
  box-shadow: var(--sh-sm);
}
.country-search-input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}
.country-search-input::placeholder {
  color: var(--mid);
}
.country-search-clear {
  position: absolute;
  right: 14px;
  background: rgba(79, 70, 229, 0.1);
  border: none;
  color: var(--indigo);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: var(--transition);
}
.country-search-clear:hover {
  background: var(--indigo);
  color: var(--white);
}
.country-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 20px;
  color: var(--mid);
}
.country-no-results i {
  font-size: 2.5rem;
  color: var(--border);
  display: block;
  margin-bottom: 14px;
}
.country-no-results p {
  font-size: 1rem;
  font-weight: 500;
}

.country-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--mid);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--grad-main);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 24px;
}

/* Country Card */
.country-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--indigo);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  /* clip image zoom to card bounds */
  transform: translateZ(0);
}
.country-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
}
.country-card.featured {
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-dark);
}
.country-card.hidden {
  display: none;
}

/* Per-country left border accent colors */
.cc-usa {
  border-left-color: #1a56db;
}
.cc-uk {
  border-left-color: #c0392b;
}
.cc-canada {
  border-left-color: #e74c3c;
}
.cc-australia {
  border-left-color: #0891b2;
}
.cc-germany {
  border-left-color: #2c3e50;
}
.cc-france {
  border-left-color: #002395;
}
.cc-ireland {
  border-left-color: #169b62;
}
.cc-singapore {
  border-left-color: #c0392b;
}
.cc-dubai {
  border-left-color: #c5a748;
}
.cc-hongkong {
  border-left-color: #8b0000;
}
.cc-china {
  border-left-color: #c0392b;
}
.cc-spain {
  border-left-color: #c60b1e;
}
.cc-nz {
  border-left-color: #00247d;
}
.cc-india {
  border-left-color: #ff9933;
}

.card-img {
  height: 170px;
  background-image: var(--cimg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.country-card:hover .card-img {
  transform: scale(1.06);
}
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(15, 23, 42, 0.35) 100%
  );
}

.featured-ribbon {
  position: absolute;
  top: 14px;
  right: 0;
  background: var(--grad-gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 14px 5px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px 0 0 4px;
  z-index: 10;
  box-shadow: -2px 2px 8px rgba(245, 158, 11, 0.4);
}

.card-body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.card-body h3 {
  font-size: 1.15rem;
}

.rank-pill {
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border: 1px solid rgba(79, 70, 229, 0.18);
}
.cc-canada .rank-pill {
  background: rgba(231, 76, 60, 0.08);
  color: #c0392b;
  border-color: rgba(231, 76, 60, 0.2);
}
.cc-germany .rank-pill {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green-dark);
  border-color: rgba(16, 185, 129, 0.25);
}

.card-body > p {
  color: var(--mid);
  font-size: 0.875rem;
  line-height: 1.55;
}

.country-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.country-meta span {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 500;
}

.country-benefits {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.country-benefits li {
  font-size: 0.84rem;
  color: var(--dark2);
  padding-left: 14px;
  position: relative;
}
.country-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
}

.cost-tag {
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(79, 70, 229, 0.06);
  color: var(--indigo);
  padding: 7px 12px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(79, 70, 229, 0.15);
}

.card-ctas {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  margin-top: 4px;
}

.btn-call {
  background: var(--white);
  color: var(--indigo);
  border: 2px solid var(--indigo);
  font-weight: 700;
  justify-content: center;
}
.btn-call:hover {
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.card-ctas .btn-primary {
  justify-content: center;
}
.country-card:hover .card-ctas .btn-primary {
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}
.country-card:hover .card-ctas .btn-gold {
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* =============================================
   WHY SPLIT (light two-column section)
   ============================================= */
.why-split {
  padding: 100px 0;
  background: var(--white);
}
.why-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-split-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.why-split-desc {
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.why-split-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-split-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.wsl-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #c8102e;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2px;
}
.why-split-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-split-list li p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}
.why-split-visual {
  position: relative;
}
.why-split-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  box-shadow: var(--sh-md);
}
.why-split-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #c8102e;
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.35);
}
.wsb-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.wsb-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .why-split-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-split-badge {
    left: 16px;
    bottom: -20px;
  }
  .why-split-visual {
    padding-bottom: 24px;
  }
}

/* =============================================
   WHY KGC
   ============================================= */
.why-kgc {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 50%, #7c3aed 100%);
  position: relative;
  overflow: hidden;
}
.why-kgc::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 0% 100%,
      rgba(6, 182, 212, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 100% 0%,
      rgba(236, 72, 153, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
}
.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.why-icon-wrap.cyan {
  background: rgba(6, 182, 212, 0.25);
  color: #67e8f9;
}
.why-icon-wrap.purple {
  background: rgba(124, 58, 237, 0.25);
  color: var(--violet-light);
}
.why-icon-wrap.gold {
  background: rgba(245, 158, 11, 0.25);
  color: var(--gold-light);
}
.why-icon-wrap.pink {
  background: rgba(236, 72, 153, 0.25);
  color: #f9a8d4;
}
.why-icon-wrap.green {
  background: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
}
.why-icon-wrap.orange {
  background: rgba(249, 115, 22, 0.25);
  color: #fed7aa;
}
.why-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.why-card p {
  font-size: 0.88rem;
  opacity: 0.82;
  line-height: 1.65;
}

/* =============================================
   MAJORS
   ============================================= */
.majors {
  padding: 80px 0;
  background: var(--white);
}
.majors-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.major-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.pill-blue {
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo);
  border-color: rgba(79, 70, 229, 0.2);
}
.pill-violet {
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet);
  border-color: rgba(124, 58, 237, 0.2);
}
.pill-pink {
  background: rgba(236, 72, 153, 0.1);
  color: var(--pink);
  border-color: rgba(236, 72, 153, 0.2);
}
.pill-gold {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-dark);
  border-color: rgba(245, 158, 11, 0.2);
}
.pill-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  border-color: rgba(16, 185, 129, 0.2);
}
.pill-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan-dark);
  border-color: rgba(6, 182, 212, 0.2);
}
.major-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.2);
}
.pill-blue:hover {
  background: var(--indigo);
  color: var(--white);
}
.pill-violet:hover {
  background: var(--violet);
  color: var(--white);
}
.pill-pink:hover {
  background: var(--pink);
  color: var(--white);
}
.pill-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.pill-green:hover {
  background: var(--green);
  color: var(--white);
}
.pill-cyan:hover {
  background: var(--cyan-dark);
  color: var(--white);
}

/* =============================================
   COST COMPARISON
   ============================================= */
.costs {
  padding: 80px 0;
  background: var(--lighter);
}
.costs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.cost-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.cost-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.highlight-card {
  border: 2px solid var(--green);
}
.cost-flag {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.cost-country {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.cost-range {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 14px;
  font-weight: 500;
}
.cost-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.cost-fill {
  height: 100%;
  width: var(--pct);
  background: var(--grad-main);
  border-radius: 3px;
  animation: fillBar 1.8s ease-out both;
  animation-play-state: paused;
}
.cost-fill-green {
  background: var(--grad-green);
}
.cost-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--green);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 0 var(--radius) 0 var(--radius-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: var(--pct);
  }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
}

/* Visual */
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.about-avatar-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 12px rgba(79, 70, 229, 0.1),
    0 0 0 24px rgba(79, 70, 229, 0.05),
    var(--sh-xl);
  animation: avatarPulse 3s ease-in-out infinite;
}
@keyframes avatarPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 12px rgba(79, 70, 229, 0.1),
      0 0 0 24px rgba(79, 70, 229, 0.05),
      var(--sh-xl);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(79, 70, 229, 0.15),
      0 0 0 34px rgba(79, 70, 229, 0.07),
      var(--sh-xl);
  }
}
.about-avatar-inner {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.5);
  background: var(--lighter);
}
.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 50%;
}

.about-title-card {
  background: var(--grad-main);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 28px;
  text-align: center;
  box-shadow: var(--sh-md);
  width: 100%;
}
.about-title-card strong {
  display: block;
  font-size: 1.1rem;
}
.about-title-card span {
  font-size: 0.82rem;
  opacity: 0.8;
}

.about-credentials {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark2);
}
.cred-item i {
  color: var(--indigo);
  font-size: 0.85rem;
}
.cred-gold i {
  color: var(--gold-dark);
}
.cred-gold {
  background: rgba(245, 158, 11, 0.07);
  border-color: rgba(245, 158, 11, 0.25);
}

/* Content */
.about-content .section-tag {
  display: inline-block;
  margin-bottom: 12px;
}
.about-content h2 {
  margin-bottom: 8px;
}
.about-content p {
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-content strong {
  color: var(--dark);
}

.highlight-quote {
  display: block;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.07) 0%,
    rgba(6, 182, 212, 0.07) 100%
  );
  border-left: 4px solid var(--indigo);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--indigo);
  margin-bottom: 8px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.astat-card {
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.astat-card:hover {
  transform: translateY(-4px);
}
.purple-glow {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.2);
}
.cyan-glow {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.2);
}
.gold-glow {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
}
.green-glow {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}
.astat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.purple-glow .astat-num {
  color: var(--indigo);
}
.cyan-glow .astat-num {
  color: var(--cyan-dark);
}
.gold-glow .astat-num {
  color: var(--gold-dark);
}
.green-glow .astat-num {
  color: var(--green);
}
.astat-card small {
  font-size: 0.72rem;
  color: var(--mid);
  font-weight: 500;
  line-height: 1.3;
}

.disclaimer-box {
  font-size: 0.8rem !important;
  color: var(--mid) !important;
  background: var(--lighter);
  border: 1px solid var(--border);
  border-left: 3px solid var(--mid);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.disclaimer-box i {
  color: var(--cyan-dark);
  margin-right: 6px;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 100px 0;
  background: var(--lighter);
}
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: var(--sh-md);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--indigo);
}
.faq-item.open .faq-question {
  color: var(--indigo);
}
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--grad-main);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 28px 22px;
}
.faq-answer p {
  color: var(--mid);
  line-height: 1.75;
  font-size: 0.94rem;
}
.faq-answer strong {
  color: var(--dark);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1562774053-701939374585?w=1600&q=85&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.82) 0%,
    rgba(79, 70, 229, 0.88) 50%,
    rgba(124, 58, 237, 0.9) 100%
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}
.cta-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 500px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag {
  display: inline-block;
  margin-bottom: 12px;
}
.contact-info h2 {
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--mid);
  margin-bottom: 32px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-icon-wrap.purple {
  background: rgba(79, 70, 229, 0.12);
  color: var(--indigo);
}
.contact-icon-wrap.cyan {
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan-dark);
}
.contact-icon-wrap.gold {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-dark);
}
.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-item strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
}
.contact-item a,
.contact-item span {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.93rem;
}
.contact-item a:hover {
  color: var(--indigo);
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  color: var(--white);
}
.soc-fb {
  background: #1877f2;
}
.soc-ig {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.soc-li {
  background: #0a66c2;
}
.soc-yt {
  background: #ff0000;
}
.soc-wa {
  background: #25d366;
}
.soc-tw {
  background: #1da1f2;
}
.social-links a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.map-header {
  background: var(--grad-main);
  color: var(--white);
  padding: 20px 24px;
}
.map-header h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-header h3 i {
  color: var(--gold-light);
}
.map-header p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.map-frame {
  height: 400px;
  position: relative;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.map-footer {
  background: var(--lighter);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.map-directions-btn {
  flex-shrink: 0;
}
.map-offices {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.map-offices span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 5px;
}
.map-offices span i {
  font-size: 0.45rem;
  color: var(--indigo);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 0 0 0;
}
.footer-gradient-top {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--cyan) 0%,
    var(--indigo) 35%,
    var(--violet) 65%,
    var(--pink) 100%
  );
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand .logo-title {
  color: rgba(255, 255, 255, 0.9);
}
.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-offices {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-offices i {
  color: var(--gold);
  margin-right: 5px;
}

.footer-links-group h4 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  display: inline-block;
}
.footer-links-group:nth-child(2) h4 {
  border-color: var(--cyan);
}
.footer-links-group:nth-child(3) h4 {
  border-color: var(--violet);
}
.footer-links-group:nth-child(4) h4 {
  border-color: var(--gold);
}
.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links-group ul li a {
  font-size: 0.84rem;
  transition: var(--transition);
}
.footer-links-group ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.81rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a:hover {
  color: var(--white);
}

/* =============================================
   BACK TO TOP / WHATSAPP
   ============================================= */
.enquire-float {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-90deg) translateX(calc(100% - 44px));
  transform-origin: bottom right;
  background: var(--grad-main);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: -3px 0 16px rgba(0, 0, 0, 0.18);
  z-index: 998;
  transition: var(--transition);
  white-space: nowrap;
}
.enquire-float:hover {
  transform: translateY(-50%) rotate(-90deg) translateX(calc(100% - 52px));
  box-shadow: -5px 0 22px rgba(0, 0, 0, 0.26);
}
.enquire-float i {
  transform: rotate(90deg);
  font-size: 0.95rem;
}

.call-float {
  position: fixed;
  bottom: 104px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-main);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.call-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}
.call-tooltip {
  position: absolute;
  right: 66px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.call-float:hover .call-tooltip {
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .topbar-loc {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: var(--sh-md);
  }
  .nav.open {
    max-height: 400px;
  }
  .nav ul {
    flex-direction: column;
    padding: 12px 16px;
    gap: 4px;
  }
  .nav ul li a {
    display: block;
    padding: 12px 16px;
  }

  .slider-section {
    height: 88vh;
    min-height: 500px;
  }
  .slide-content {
    padding-top: 20px;
  }
  .slide-stats {
    gap: 12px;
  }
  .s-stat {
    padding: 10px 14px;
    min-width: 80px;
  }
  .slide-country-badge {
    display: none;
  }
  .slide-actions {
    flex-direction: column;
  }
  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .stats-ribbon-inner {
    justify-content: center;
  }
  .ribbon-stat {
    min-width: 120px;
    padding: 18px 12px;
  }
  .ribbon-divider {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  .countries-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-visual {
    flex-direction: column;
    align-items: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .costs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
  .slider-prev {
    left: 14px;
  }
  .slider-next {
    right: 14px;
  }
}

@media (max-width: 480px) {
  .costs-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .slide-title {
    font-size: 2rem;
  }
  .slide-stats {
    display: none;
  }
  .stats-ribbon-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .ribbon-stat {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* =============================================
   ONLOAD POPUP
   ============================================= */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.popup-overlay.popup-visible {
  display: flex;
}
.popup-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  animation: popupIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
.popup-close:hover {
  color: #333;
}
.popup-header {
  margin-bottom: 24px;
}
.popup-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 6px;
}
.popup-header p {
  font-size: 0.88rem;
  color: #666;
}
.popup-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.popup-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.popup-input:focus {
  border-color: #8b3777;
}
.popup-submit {
  width: 100%;
  padding: 13px;
  background: #6f3eeb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.popup-submit:hover {
  background: #6d2b5d;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .popup-box {
    padding: 32px 20px 24px;
    margin: 16px;
  }
}
