/* ============================================================
   GLOBICOR STUDY ABROAD — PREMIUM MODERN DESIGN SYSTEM 2.0
   Brand Colors: #283277 (Blue) | #D7262A (Red)
   ============================================================ */

/* Import Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,500&display=swap');

/* ============================================================
   CSS DESIGN TOKENS
   ============================================================ */
:root {
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Brand Colors */
  --primary: #283277;
  --primary-light: #3a46a0;
  --primary-dark: #1b2252;
  --primary-glow: rgba(40, 50, 119, 0.12);
  --primary-glow-strong: rgba(40, 50, 119, 0.25);

  --accent: #D7262A;
  --accent-light: #e8484c;
  --accent-glow: rgba(215, 38, 42, 0.2);
  --accent-hover: #283277;

  --secondary: #283277;
  --secondary-glow: rgba(40, 50, 119, 0.1);

  /* Hero Light Theme */
  --hero-bg: #f0f4ff;
  --hero-surface: rgba(255, 255, 255, 0.75);
  --hero-border: rgba(40, 50, 119, 0.15);
  --hero-text: #0d1117;
  --hero-muted: rgba(13, 17, 23, 0.6);

  /* Light Body Theme */
  --bg-body: #ffffff;
  --bg-alt: #f7f9fc;
  --bg-card: #ffffff;
  --bg-dark-card: #0d1428;

  /* Text */
  --text-dark: #0d1117;
  --text-body: #374151;
  --text-muted: #6b7280;

  /* Borders */
  --border-color: #e5e9f2;
  --border-hover: #D7262A;
  --border-focus: #283277;

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(40, 50, 119, 0.15);
  --glass-blur: blur(20px);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.14);
  --shadow-blue: 0 8px 30px rgba(40, 50, 119, 0.2);
  --shadow-red: 0 8px 30px rgba(215, 38, 42, 0.25);

  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-body);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0f4ff; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 4px;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

/* Hero mesh gradient shift */
@keyframes meshShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating particle dots in hero */
@keyframes particleDrift {
  0%   { transform: translateY(0px) translateX(0px); opacity: 0.4; }
  33%  { transform: translateY(-30px) translateX(20px); opacity: 0.8; }
  66%  { transform: translateY(-15px) translateX(-15px); opacity: 0.5; }
  100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
}

/* Ambient glow orb float */
@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, 50px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

/* CTA button glow pulse ring */
@keyframes glowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(215, 38, 42, 0.5), 0 6px 20px rgba(215, 38, 42, 0.3); }
  50%  { box-shadow: 0 0 0 10px rgba(215, 38, 42, 0), 0 10px 30px rgba(215, 38, 42, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(215, 38, 42, 0), 0 6px 20px rgba(215, 38, 42, 0.3); }
}

/* Pulsing live dot */
@keyframes pulseDot {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* Widget card gentle float */
@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Rotating gradient border */
@keyframes borderGlow {
  0%   { border-color: rgba(40, 50, 119, 0.6); box-shadow: 0 0 20px rgba(40, 50, 119, 0.15); }
  50%  { border-color: rgba(215, 38, 42, 0.5); box-shadow: 0 0 20px rgba(215, 38, 42, 0.15); }
  100% { border-color: rgba(40, 50, 119, 0.6); box-shadow: 0 0 20px rgba(40, 50, 119, 0.15); }
}

/* Shimmer sweep */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Counter bar fill */
@keyframes fillBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* Viewport scroll-in animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   HEADER & NAVIGATION — Modern Sticky
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(40, 50, 119, 0.08);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

/* Red accent bar at top of header */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 60%, var(--primary) 100%);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6%;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  letter-spacing: 0.01em;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.8rem);
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav ul li a:hover {
  color: var(--text-dark);
  background: rgba(40, 50, 119, 0.05);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  transform: translateX(-50%) scaleX(1);
}

nav ul li a.active {
  color: var(--primary);
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.cta-btn {
  background: var(--accent);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

/* Shimmer on button */
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.cta-btn:hover::before {
  left: 150%;
}

.cta-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* Primary hero CTA — glowing pulse */
.cta-btn.btn-primary-glow {
  animation: glowPulse 2.5s infinite;
}

.cta-btn.btn-primary-glow:hover {
  animation: none;
  box-shadow: var(--shadow-blue);
}

/* Secondary ghost button */
.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(40, 50, 119, 0.25);
  color: var(--text-dark);
  box-shadow: none;
}

.btn-secondary::before { display: none; }

.btn-secondary:hover {
  background: rgba(40, 50, 119, 0.06);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: none;
  transform: translateY(-2px);
}

/* Outline button for light backgrounds */
.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-outline-primary::before { display: none; }

.btn-outline-primary:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

/* White ghost button for dark backgrounds */
.btn-ghost-white {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.btn-ghost-white::before { display: none; }

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION — Light Premium
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 9rem 6% 5rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 40%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}

/* Soft decorative gradient mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(40, 50, 119, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 5% 75%, rgba(215, 38, 42, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 95% 85%, rgba(40, 50, 119, 0.06) 0%, transparent 55%);
  animation: meshShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Subtle dot grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(40, 50, 119, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Floating light orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(40, 50, 119, 0.18), transparent 70%);
  top: -15%;
  right: 5%;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(215, 38, 42, 0.12), transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(40, 50, 119, 0.10), transparent 70%);
  top: 50%;
  left: 40%;
  animation: floatOrb 15s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(215, 38, 42, 0.08);
  border: 1px solid rgba(215, 38, 42, 0.25);
  color: var(--accent);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2.5px;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero-content h1 .accent-word {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
}

.hero-content h1 .highlight-word {
  color: var(--accent);
  position: relative;
}

.hero-content p {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(40, 50, 119, 0.12);
  padding-top: 2rem;
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  display: flex;
  gap: 0.15rem;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rating-text strong {
  color: var(--text-dark);
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ============================================================
   ELIGIBILITY WIDGET — Glass Card
   ============================================================ */
.hero-widget-container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(40, 50, 119, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow:
    0 20px 60px rgba(40, 50, 119, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: floatCard 6s ease-in-out infinite;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(40, 50, 119, 0.1);
  padding-bottom: 1.25rem;
}

.widget-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(5, 150, 105, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #059669;
  border-radius: 50%;
  animation: pulseDot 1.8s infinite;
}

/* Widget field labels */
.calc-field label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

/* Country selector buttons */
.country-selector-btn {
  transition: var(--transition-fast);
  border: 1px solid rgba(40, 50, 119, 0.2) !important;
  color: var(--text-body) !important;
  background: rgba(40, 50, 119, 0.04) !important;
  font-family: var(--font-heading);
}

.country-selector-btn.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(40, 50, 119, 0.35) !important;
}

.country-selector-btn:hover:not(.active) {
  background: rgba(40, 50, 119, 0.08) !important;
  color: var(--primary) !important;
}

/* PCB Slider */
.calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: rgba(40, 50, 119, 0.15);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(215, 38, 42, 0.2);
  transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(215, 38, 42, 0.15);
}

.calc-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 60px;
  text-align: right;
}

/* Neet checkbox */
#neetCheck {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
  cursor: pointer;
}

/* Results display */
.calc-results {
  background: rgba(40, 50, 119, 0.04);
  border: 1px solid rgba(40, 50, 119, 0.12);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-status {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.result-status strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 0.2rem;
}

.result-badge {
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  border: 1px solid;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTIONS LAYOUT
   ============================================================ */
section {
  padding: 7rem 6%;
  position: relative;
}

/* Section Titles */
.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.badge {
  display: inline-block;
  background: var(--primary-glow);
  border: 1px solid rgba(40, 50, 119, 0.2);
  color: var(--primary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: var(--text-dark);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section divider wave */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-wave svg {
  display: block;
  width: 100%;
}

/* ============================================================
   STATS SECTION — Angled Modern
   ============================================================ */
.stats {
  padding: 4rem 6% 5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0% 100%);
  margin: -2rem 0;
  z-index: 1;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================================
   ABOUT PREVIEW SECTION
   ============================================================ */
#about-preview {
  background: var(--bg-body);
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 0 0 0 0;
}

.about-card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
  border-color: rgba(40, 50, 119, 0.2);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.check-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.check-list li h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.check-list li p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================================
   DESTINATION CARDS — Modern Cards
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.destination-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  position: relative;
}

/* Country colored top stripe */
.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.destination-card:hover::before {
  transform: scaleX(1);
}

.destination-card:hover {
  transform: translateY(-10px);
  border-color: rgba(40, 50, 119, 0.15);
  box-shadow: var(--shadow-blue);
}

.dest-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dest-name h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.dest-tag {
  font-size: 0.7rem;
  background: var(--primary-glow);
  border: 1px solid rgba(40, 50, 119, 0.15);
  color: var(--primary);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dest-flag-icon {
  font-size: 2.8rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transition: var(--transition-smooth);
}

.destination-card:hover .dest-flag-icon {
  transform: scale(1.1) rotate(-5deg);
}

.dest-body {
  padding: 2rem 2.5rem;
  flex: 1;
}

.dest-stats-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dest-stats-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-color);
}

.dest-stats-list li:last-child {
  border-bottom: none;
}

.dest-stats-list li span.label {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dest-stats-list li span.label i {
  color: var(--primary);
  width: 16px;
}

.dest-stats-list li span.val {
  font-weight: 700;
  color: var(--text-dark);
}

.dest-universities {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.dest-universities h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.univ-chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.univ-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-body);
  font-weight: 500;
  transition: var(--transition-fast);
}

.univ-chip:hover {
  background: var(--primary-glow);
  border-color: rgba(40, 50, 119, 0.2);
  color: var(--primary);
}

.dest-footer {
  padding: 1.5rem 2.5rem 2.5rem;
}

.dest-footer .cta-btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   PROCESS TIMELINE — Modern Vertical
   ============================================================ */
.timeline-section {
  background: var(--bg-alt);
  position: relative;
}

.timeline-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 21px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 72px;
  margin-bottom: 2.5rem;
  transition: var(--transition-smooth);
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-body);
  border: 2.5px solid var(--primary);
  color: var(--primary);
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
  font-family: var(--font-heading);
  transition: var(--transition-smooth);
  box-shadow: 0 0 0 4px rgba(40, 50, 119, 0.08);
}

.timeline-item:hover .timeline-number {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 0 6px rgba(40, 50, 119, 0.12), var(--shadow-blue);
  transform: scale(1.1);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.5s ease;
}

.timeline-item:hover .timeline-content {
  border-color: rgba(40, 50, 119, 0.2);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-content::before {
  width: 100%;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   SERVICES GRID — Glass Cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.75rem 2.25rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Gradient reveal on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40, 50, 119, 0.04), rgba(215, 38, 42, 0.03));
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(40, 50, 119, 0.2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  background: var(--primary-glow);
  border: 1px solid rgba(40, 50, 119, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-blue);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FEEDBACK & TESTIMONIALS SECTION — ULTRA MODERN DESIGN
   ============================================================ */

.feedback-masonry {
  column-count: 3;
  column-gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feedback Card Base */
.feedback-card {
  display: inline-block; /* Crucial for masonry flow */
  width: 100%;
  break-inside: avoid; /* Prevents cards from breaking across columns */
  margin-bottom: 2rem;
  background: #ffffff;
  border: 1px solid rgba(40, 50, 119, 0.06);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feedback-card::after {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3.5rem;
  color: rgba(40, 50, 119, 0.025);
  pointer-events: none;
  line-height: 1;
}

.feedback-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40, 50, 119, 0.12);
  box-shadow: var(--shadow-md);
}

.feedback-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.85rem;
  color: #ffb800;
  font-size: 0.82rem;
}

.feedback-badge {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.35rem 0.75rem;
  border-radius: 30px;
  line-height: 1;
  z-index: 2;
}

.feedback-badge.parent-badge {
  background: rgba(215, 38, 42, 0.06);
  color: var(--accent);
  border: 1px solid rgba(215, 38, 42, 0.12);
}

.feedback-badge.student-badge {
  background: rgba(40, 50, 119, 0.05);
  color: var(--primary);
  border: 1px solid rgba(40, 50, 119, 0.1);
}

.feedback-text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.feedback-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(40, 50, 119, 0.15);
  flex-shrink: 0;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(40, 50, 119, 0.08);
  color: var(--primary);
  text-transform: uppercase;
}

.feedback-card:hover .feedback-avatar {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(40, 50, 119, 0.08);
}

.feedback-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
  display: block;
}

.feedback-author-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ============================================================
   ARRIVALS SWIPER SECTION
   ============================================================ */
.arrivals-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.arrivals-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.arrivals-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.arrivals-swiper-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.arrivals-swiper {
  width: 320px;
  height: 420px;
  overflow: visible !important;
}

.arrivals-swiper-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  background-color: var(--bg-alt);
}

.arrivals-swiper-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arrivals-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #ffffff;
}

.arrivals-card-badge {
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.arrivals-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   CONTACT LAYOUT & FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-xs);
}

.contact-item:hover {
  border-color: rgba(40, 50, 119, 0.2);
  box-shadow: var(--shadow-blue);
  transform: translateX(6px);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-glow);
  border: 1px solid rgba(40, 50, 119, 0.15);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.contact-item:hover .contact-item-icon {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.contact-item-text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-item-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--bg-body);
  box-shadow: 0 0 0 4px rgba(40, 50, 119, 0.08);
}

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

.submit-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  justify-content: center;
}

/* ============================================================
   OFFICE GALLERY
   ============================================================ */
.office-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.office-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  background: var(--bg-card);
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(40, 50, 119, 0.2);
}

.office-img-wrap {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.office-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 24, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.office-card:hover .office-img-wrap::after {
  opacity: 1;
}

.office-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.office-card:hover .office-img-wrap img {
  transform: scale(1.06);
}

.office-meta {
  padding: 1.5rem;
}

.office-meta h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.office-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER — Dark Premium
   ============================================================ */
footer {
  background: #070c1b;
  border-top: 1px solid transparent;
  padding: 5rem 6% 3rem;
  color: #fff;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: #ffffff;
  filter: brightness(1.3);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  margin-top: 1.2rem;
  margin-bottom: 1.8rem;
  max-width: 320px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(215, 38, 42, 0.35);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.92rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links li a::before {
  content: '→';
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition-fast);
}

.footer-links li a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c5e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 99;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.whatsapp-bubble:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   PAGE HERO BANNER (Secondary Pages)
   ============================================================ */
.page-hero-banner {
  text-align: center;
  padding: 9rem 6% 5rem;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 60%, rgba(40, 50, 119, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(215, 38, 42, 0.15) 0%, transparent 50%);
}

.page-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-hero-banner .badge {
  background: rgba(215, 38, 42, 0.15);
  border-color: rgba(215, 38, 42, 0.3);
  color: #ff9a9c;
  position: relative;
  z-index: 2;
}

.page-hero-banner h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -1.5px;
  position: relative;
  z-index: 2;
}

.page-hero-banner p {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

/* ============================================================
   SCROLL ANIMATIONS SYSTEM
   ============================================================ */
.scroll-animate {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay utilities */
.delay-50  { transition-delay: 0.05s; }
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-250 { transition-delay: 0.25s; }
.delay-300 { transition-delay: 0.3s; }
.delay-350 { transition-delay: 0.35s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── 1100px: Tablet Landscape ── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
    gap: 3rem;
  }
  .hero-content p { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .rating-badge {
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: none;
    padding-left: 0;
    padding-top: 2rem;
    display: inline-flex;
  }
  .hero-widget-container { max-width: 520px; margin: 0 auto; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 700px; }
  .arrivals-layout { grid-template-columns: 1fr; text-align: center; }
  .arrivals-content p { margin: 0 auto 2.5rem; max-width: 600px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── 900px: Tablet ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-two-col { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px: Mobile ── */
@media (max-width: 768px) {
  /* Header */
  header { padding: 0; }
  .header-inner { padding: 0.85rem 5%; }

  /* Show Hamburger, hide desktop nav links and header CTA buttons */
  .hamburger { display: flex !important; }
  .header-inner > nav { display: none !important; }   /* only the desktop header nav */
  .header-cta-group { display: none !important; }

  /* Sections */
  section { padding: 5rem 5% 3.5rem; }
  .page-hero-banner { padding: 7rem 5% 4rem; }

  /* Hero */
  .hero { padding: 7rem 5% 4rem; gap: 2.5rem; }
  .hero-content h1 { font-size: 2.6rem; letter-spacing: -1.5px; }
  .hero-widget-container { padding: 1.75rem; }

  /* Stats */
  .stats { clip-path: none; margin: 0; padding: 4rem 5%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2.8rem; }
  .stat-card { padding: 1.75rem 1rem; }

  /* About two-column grid */
  .about-two-col { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }

  /* Destinations */
  .destinations-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Testimonials & Feedback */
  .feedback-masonry { column-count: 2; column-gap: 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-card { padding: 2rem 1.5rem; }

  /* Office Gallery */
  .office-gallery { grid-template-columns: 1fr; }
  .office-img-wrap { height: 250px; }

  /* Typography */
  h2 { font-size: 1.9rem; letter-spacing: -0.8px; }
  .page-hero-banner h1 { font-size: 2.2rem; }
  .section-title-wrap { margin-bottom: 2.5rem; }
}

/* ── 480px: Small Mobile ── */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; letter-spacing: -1.2px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .cta-btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr !important; }
  .stat-number { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-banner h1 { font-size: 1.8rem; }
  h2 { font-size: 1.7rem; }
  .hero-widget-container { padding: 1.25rem; border-radius: 16px; }
  .contact-form-card { padding: 1.5rem 1rem; }
  .timeline-content { padding: 1.5rem; }
  .timeline-item { padding-left: 60px; }
  .feedback-masonry { column-count: 1 !important; column-gap: 0; }
  .feedback-card { margin-bottom: 1.5rem; }
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  z-index: 10000;          /* above mobile-nav overlay */
  position: relative;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(40, 50, 119, 0.08);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #ffffff;
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #ffffff;
}

/* ============================================================
   ABOUT PAGE — OUR STORY SECTION
   ============================================================ */

/* Two-column grid — stacks on tablet/mobile */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Mission card (right column) */
.about-mission-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-mission-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Stats row inside the card */
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.about-stat-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.about-stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* ── Responsive overrides ── */
@media (max-width: 1100px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-story-grid {
    gap: 2rem;
  }
  .about-mission-card {
    padding: 2rem 1.5rem;
  }
  .about-mission-title {
    font-size: 1.1rem;
  }
  .about-stat-num {
    font-size: 2rem;
  }
  .about-stat-item {
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .about-mission-card {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }
  .about-stat-num {
    font-size: 1.8rem;
  }
  .about-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.8px;
  }
}


/* ============================================================
   MOBILE NAV — RIGHT SLIDE-IN DRAWER
   ============================================================ */

/* Dark backdrop behind the drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* The drawer panel itself */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  max-width: 82vw;
  background: #09111f;
  border-left: 1px solid rgba(255,255,255,0.07);
  box-shadow: -30px 0 80px rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex !important;
  flex-direction: column;
  padding: 0;
  transform: translateX(110%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0) !important;
}

/* Drawer header bar */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

.mobile-nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.3);
}

/* Close button */
.mobile-nav-close {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.mobile-nav-close:hover {
  background: rgba(215,38,42,0.2);
  border-color: rgba(215,38,42,0.4);
  color: #fff;
}

/* Nav links list */
.mobile-nav ul {
  list-style: none;
  padding: 1.5rem 1.25rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav ul li a {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  letter-spacing: -0.2px;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  position: relative;
}

.mobile-nav ul li a::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 2px;
  margin-right: 0.75rem;
  transition: height 0.2s ease;
  flex-shrink: 0;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  padding-left: 1.25rem;
}

.mobile-nav ul li a:hover::before,
.mobile-nav ul li a.active::before {
  height: 18px;
}

/* Divider */
.mobile-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.25rem 1.25rem;
  flex-shrink: 0;
}

/* CTA buttons */
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 1.25rem;
}

.mobile-nav-actions a {
  text-align: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

/* Contact info at bottom */
.mobile-nav-contact {
  margin-top: auto;
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  line-height: 1.8;
  flex-shrink: 0;
}

.mobile-nav-contact a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
  transition: color 0.2s;
  font-size: 0.82rem;
}

.mobile-nav-contact a:hover { color: #fff; }

.mobile-nav-contact a i {
  width: 16px;
  color: var(--accent);
  font-size: 0.75rem;
}

/* ============================================================
   VERIFIED ADMISSIONS SECTION
   ============================================================ */
.admissions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.admission-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

.admission-card.hidden {
  display: none;
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  overflow: hidden;
}

.admission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(9, 17, 36, 0.1);
  border-color: rgba(40, 50, 119, 0.15);
}

.admission-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f8fafc;
  cursor: pointer;
}

.admission-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.admission-card:hover .admission-img-wrap img {
  transform: scale(1.06);
}

.admission-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 24, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.admission-img-wrap:hover .admission-overlay {
  opacity: 1;
}

.admission-overlay .zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admission-img-wrap:hover .zoom-icon {
  transform: scale(1);
}

.admission-info {
  padding: 1.25rem;
}

.admission-info .univ-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.admission-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
  font-family: var(--font-heading);
}

.admission-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* Lightbox Modal */
#admission-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 24, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#admission-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

#admission-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#admission-lightbox.active img {
  transform: scale(1);
}

#lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.8rem;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  user-select: none;
}

#lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .admissions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .admissions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .admissions-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ============================================================
   PAGE HERO BANNER — Dark (About, Destinations, Contact pages)
   ============================================================ */
.page-hero-banner {
  background: linear-gradient(135deg, #0d1428 0%, #1b2252 50%, #0d1428 100%);
  padding: 9rem 6% 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(40, 50, 119, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(215, 38, 42, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.page-hero-banner > * {
  position: relative;
  z-index: 2;
}

.page-hero-banner .badge {
  background: rgba(215, 38, 42, 0.15);
  border-color: rgba(215, 38, 42, 0.3);
  color: #ff8b8e;
}

.page-hero-banner h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #ffffff;
  margin: 1rem 0 1.25rem;
}

.page-hero-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .page-hero-banner {
    padding: 8rem 5% 4rem;
  }
  .page-hero-banner h1 {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }
}

/* ============================================================
   LEADERSHIP TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(40, 50, 119, 0.15);
}

.team-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f8fafc;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.team-info p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.team-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.team-social-link:hover {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 580px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
