:root {
  /* Color Palette - Modern & Vibrant */
  --color-primary: #0F172A; /* Deep Slate */
  --color-primary-light: #1E293B;
  --color-secondary: #10B981; /* Vibrant Emerald */
  --color-secondary-hover: #059669;
  --color-accent: #3B82F6; /* Electric Blue */
  --color-accent-purple: #8B5CF6; /* Violet */
  
  --color-bg: #F8FAFC; 
  --color-white: #FFFFFF;
  --color-text-main: #1E293B;
  --color-text-muted: #64748B;
  
  /* Modern Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 8px 16px -4px rgba(0,0,0,0.05), 0 4px 8px -4px rgba(0,0,0,0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.4);
  --shadow-glow-blue: 0 0 20px rgba(59, 130, 246, 0.4);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.5);
  --glass-blur: blur(16px);

  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
  --border-radius-pill: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.section-padding { padding: 120px 0; }
.section-title {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 64px auto;
  font-weight: 400;
}

/* Enhancing gradients on text */
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  font-family: 'Outfit', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary), #0ea5e9);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #0ea5e9, var(--color-secondary));
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid rgba(15, 23, 42, 0.1);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-4px);
}

/* Play Video Button */
.play-btn {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-white);
}

.play-btn i {
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 0;
  border-bottom: var(--glass-border);
  transition: all 0.4s ease;
}

.navbar .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.announcement-banner {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.announcement-banner strong {
  color: var(--color-secondary);
}

.announcement-banner a {
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
  color: var(--color-white);
  transition: color 0.3s;
}

.announcement-banner a:hover {
  color: var(--color-secondary);
}

/* Animated Flight Path Scroll Progress */
.flight-scroll-path {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(to right, rgba(16, 185, 129, 0.2) 0, rgba(16, 185, 129, 0.2) 8px, transparent 8px, transparent 16px);
  z-index: 1000;
}

.flight-scroll-fill {
  height: 100%;
  background: var(--color-secondary);
  width: 0%;
  position: relative;
  transition: width 0.1s linear;
}

.flight-scroll-icon {
  position: absolute;
  right: -16px;
  top: -10px;
  color: #F59E0B; /* Golden/Amber */
  -webkit-text-stroke: 1.5px #1E3A8A; /* Deep Blue Contrast Border */
  font-size: 1.6rem;
  transform: rotate(45deg);
  animation: planePulse 1.2s infinite alternate ease-in-out;
}

@keyframes planePulse {
  0% { 
    filter: drop-shadow(0 0 5px #F59E0B) drop-shadow(0 0 8px rgba(30, 58, 138, 0.6)); 
    transform: rotate(45deg) scale(1); 
  }
  100% { 
    filter: drop-shadow(0 0 15px #FCD34D) drop-shadow(0 0 25px rgba(37, 99, 235, 0.9)); 
    transform: rotate(45deg) scale(1.2); 
  }
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.logo i {
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  background: rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  border-radius: var(--border-radius-pill);
  border: var(--glass-border);
  white-space: nowrap;
}

.nav-links a {
  font-weight: 600;
  color: #475569;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--color-accent);
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
}

.nav-actions .btn {
  padding: 12px 24px;
  font-size: 0.95rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 180px 0 120px 0;
  background-color: #0F172A; /* Fallback */
  background-image: radial-gradient(circle at top right, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
                    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.globe-bg {
  position: absolute;
  top: -10%; left: -10%;
  width: 120%; height: 120%;
  background-image: url('../images/glowing_globe.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.8;
  animation: slowPan 60s linear infinite alternate;
}

@keyframes slowPan {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.15) rotate(3deg); }
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* 3D Parallax Tilt */
  transform: perspective(1000px) rotateX(calc(var(--mouse-y, 0) * -3deg)) rotateY(calc(var(--mouse-x, 0) * 3deg));
  translate: calc(var(--mouse-x, 0) * 10px) calc(var(--mouse-y, 0) * 10px);
  transition: transform 0.2s ease-out, translate 0.2s ease-out;
  transform-style: preserve-3d;
}

/* Floating Testimonials */
.hero-floater {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px 10px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255,255,255,0.05);
  z-index: 10;
  pointer-events: none;
  animation: fadeUp 0.8s ease-out backwards;
  /* Parallax Shift */
  translate: calc(var(--mouse-x, 0) * var(--parallax-speed, -30px)) calc(var(--mouse-y, 0) * var(--parallax-speed, -30px));
  transition: translate 0.2s ease-out;
}

/* Boarding Pass Testimonial */
.hero-floater.boarding-pass {
  border-radius: 12px;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.bp-left {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
}
.bp-icon {
  width: 40px; height: 40px;
  background: var(--color-secondary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.bp-info { display: flex; flex-direction: column; text-align: left; }
.bp-label { font-size: 0.65rem; color: #94a3b8; font-weight: 700; letter-spacing: 1px; }
.bp-info strong { color: white; font-size: 0.95rem; line-height: 1.2; }
.bp-divider {
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.2) 0, rgba(255,255,255,0.2) 4px, transparent 4px, transparent 8px);
  margin: 8px 0;
}
.bp-right {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.bp-right strong { color: var(--color-secondary); font-size: 1rem; font-weight: 800; }

/* Golden Ticket / Scholarship */
.hero-floater.golden-ticket {
  border-radius: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
}
.gt-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #F59E0B;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}
.gt-info { display: flex; flex-direction: column; text-align: left; }
.gt-label { font-size: 0.65rem; color: #FCD34D; font-weight: 700; letter-spacing: 1px; }
.gt-info strong { color: white; font-size: 0.95rem; line-height: 1.2; }
.gt-value { color: #F59E0B; font-weight: 800; font-size: 0.85rem; margin-top: 2px;}

/* Passport Stamp */
.hero-floater.passport-stamp {
  border-radius: 50%;
  width: 120px; height: 120px;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.stamp-ring {
  width: 100%; height: 100%;
  border: 3px solid rgba(59, 130, 246, 0.5);
  border-style: dashed;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-15deg);
  animation: pulse-stamp 3s infinite;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(4px);
}
.stamp-content {
  text-align: center;
  display: flex; flex-direction: column;
}
.stamp-status { font-size: 0.65rem; font-weight: 800; color: #60A5FA; letter-spacing: 2px; margin-bottom: 2px; }
.stamp-content strong { color: white; font-size: 0.9rem; line-height: 1.2; }
.stamp-type { font-size: 0.6rem; color: #93C5FD; margin-top: 2px; }

@keyframes pulse-stamp {
  0% { transform: rotate(-15deg) scale(1); }
  50% { transform: rotate(-15deg) scale(1.05); }
  100% { transform: rotate(-15deg) scale(1); }
}

/* Specific Positions & Bobbing Animations */
.floater-1 {
  --parallax-speed: -40px;
  top: 25%;
  left: 6%;
  animation-name: float1, fadeUp;
  animation-duration: 6s, 0.8s;
  animation-delay: 0s, 0.4s;
  animation-iteration-count: infinite, 1;
  animation-timing-function: ease-in-out, ease-out;
}

.floater-2 {
  --parallax-speed: 25px;
  top: 65%;
  left: 10%;
  animation-name: float2, fadeUp;
  animation-duration: 7s, 0.8s;
  animation-delay: 1s, 0.6s;
  animation-iteration-count: infinite, 1;
  animation-timing-function: ease-in-out, ease-out;
}

.floater-3 {
  --parallax-speed: -60px;
  top: 35%;
  right: 5%;
  animation-name: float3, fadeUp;
  animation-duration: 8s, 0.8s;
  animation-delay: 0.5s, 0.8s;
  animation-iteration-count: infinite, 1;
  animation-timing-function: ease-in-out, ease-out;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@media (max-width: 1200px) {
  .hero-floater,
  .hero-floater.boarding-pass,
  .hero-floater.golden-ticket,
  .hero-floater.passport-stamp { 
    display: none !important; 
  }
}

/* Glass Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 8px 24px;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeUp 0.8s ease-out;
}

.hero-badge .pulse {
  width: 10px;
  height: 10px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-secondary);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 24px;
  color: var(--color-white); /* High contrast white text */
  text-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Deep shadow for pop */
  animation: fadeUp 0.8s ease-out 0.1s backwards;
}

.cursor {
  display: inline-block;
  color: var(--color-white);
  animation: blink 1s step-end infinite;
  margin-left: 4px;
  font-weight: 300;
  opacity: 1;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 40px;
  color: #E2E8F0; /* Brighter legible text */
  font-weight: 500;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: fadeUp 0.8s ease-out 0.2s backwards;
}

@media (max-width: 768px) {
  .hero {
    padding: 130px 20px 60px 20px;
  }
  .hero h1 {
    font-size: 2.3rem;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
    margin-bottom: 24px;
  }
}

/* Journey Selector UI */
.journey-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 50px;
  margin: 30px auto 0;
  max-width: 850px;
  flex-wrap: wrap;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.js-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-white);
}

.js-select {
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 36px 10px 16px;
  border-radius: 24px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 14px top 50%;
  background-size: 10px auto;
  transition: all 0.3s;
}

.js-select:focus, .js-select:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.js-select option {
  background: var(--color-primary);
  color: white;
}

.journey-selector .btn {
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 24px;
  margin-left: 8px;
}

.hero-secondary-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .journey-selector {
    border-radius: 20px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .js-select {
    width: 100%;
  }
  .js-text {
    align-self: flex-start;
    margin-left: 8px;
    margin-bottom: -4px;
    font-size: 0.95rem;
  }
  .journey-selector .btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }
  .hero-secondary-actions {
    gap: 20px;
    margin-top: 24px;
  }
}

/* Live Success Ticker */
.success-ticker-wrap {
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  display: flex;
  padding: 12px 0;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.success-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}

.success-ticker:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 40px;
  position: relative;
}

.ticker-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.ticker-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Avatar Stack */
.avatar-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  animation: fadeUp 0.8s ease-out backwards;
}

.avatar-images {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-images img, .avatar-images .avatar-ph {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #0F172A; /* Match hero bg so they overlap seamlessly */
  margin-left: -12px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.avatar-images *:first-child {
  margin-left: 0;
}

.avatar-text {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.avatar-text strong {
  color: var(--color-white);
}

/* Floating Particles (using JS later) */
.particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Trust Bar - Glassmorphism */
.trust-bar {
  position: relative;
  margin-top: -60px;
  z-index: 10;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: var(--glass-border);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(15, 23, 42, 0.1);
}

.stat-item h3 {
  font-size: 2.75rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Services */
.services-section {
  position: relative;
  overflow: hidden;
}

/* Background Abstract Shape */
.services-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--color-white);
  padding: 48px 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: 0;
  pointer-events: none;
}

.service-card:hover::before {
  animation: shineSweep 0.8s ease-in-out forwards;
}

@keyframes shineSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
  color: var(--color-secondary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: rotate(-5deg);
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.2);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
  transform: rotate(10deg) scale(1.15);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4), inset 0 0 0 1px rgba(255,255,255,0.2);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--color-primary);
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.service-card p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-link {
  color: var(--color-primary);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--color-secondary);
}

.service-link i {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-link i {
  transform: translateX(8px) scale(1.2);
}

/* Destinations - Modern Botoom Cards */
.destinations {
  padding: 120px 0;
  background-color: #0F172A;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.destinations::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.destinations .section-title {
  color: var(--color-white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.dest-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  background: var(--color-primary-light);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease, border-color 0.5s ease;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dest-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--color-secondary);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
}

.dest-card:hover img {
  transform: scale(1.1) rotate(2deg);
}

.dest-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 3;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.dest-card:hover .dest-badge {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-5px);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
  z-index: 2;
  transition: all 0.5s ease;
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.7) 60%, transparent 100%);
}

.dest-card h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: white;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dest-card p {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.1s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dest-card:hover h3 {
  transform: translateY(0);
}

.dest-card:hover p {
  transform: translateY(0);
  opacity: 1;
}

/* Success Story with Glass Layout */
.success-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EEF2FF 0%, #F8FAFC 100%);
}

.success-content {
  display: flex;
  align-items: center;
  gap: 80px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.success-image {
  flex: 1;
  position: relative;
}

.success-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

.success-image::after {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: var(--border-radius-md);
  z-index: -1;
}

.success-text {
  flex: 1.2;
}

.quote-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 24px;
  background: -webkit-linear-gradient(var(--color-accent), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.student-avatar {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
}

.student-info h4 {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.scholarship-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: var(--border-radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 12px;
  box-shadow: var(--shadow-glow);
}

/* CTA Section - Ultra Modern */
.cta-section {
  padding: 160px 0;
  background-color: var(--color-bg);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, #0F172A, #1E1B4B);
  padding: 80px 60px;
  border-radius: 40px; /* Extra rounded */
  color: var(--color-white);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* Decorative circles */
.cta-box::before, .cta-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.cta-box::before {
  width: 400px; height: 400px;
  top: -200px; left: -100px;
  background: var(--color-secondary);
  animation: floatOrb 8s ease-in-out infinite alternate;
}

.cta-box::after {
  width: 350px; height: 350px;
  bottom: -150px; right: -50px;
  background: var(--color-primary-light);
  animation: floatOrb 6s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

.cta-box h2 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cta-box p {
  font-size: 1.25rem;
  margin-bottom: 48px;
  color: #94a3b8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.lead-form {
  display: flex;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 12px;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

.input-wrapper {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
}

.input-wrapper i {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.15rem;
  z-index: 3;
  transition: color 0.3s ease;
  pointer-events: none;
}

.input-wrapper:focus-within i {
  color: var(--color-secondary);
}

.lead-form input, .lead-form select {
  padding: 18px 20px 18px 56px;
  border: none;
  background: rgba(255,255,255,0.9);
  border-radius: var(--border-radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  color: var(--color-primary);
  text-overflow: ellipsis;
}

.lead-form input:focus, .lead-form select:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.5);
  background: #fff;
}

.lead-form button {
  white-space: nowrap;
  padding: 18px 32px;
  flex-shrink: 0;
}

.pulse-btn {
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 4s infinite 2s;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Footer modern look */
.footer {
  background-color: var(--color-primary);
  color: #94A3B8;
  padding: 100px 0 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-size: 2.25rem;
  color: var(--color-white);
}

.social-links a {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* Floating WhatsApp Widget */
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 2rem;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  color: #FFF;
}

/* Floating Call Widget */
.call-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px; /* Opposite side of WhatsApp */
  background-color: #4285F4; /* Google Blue */
  color: #FFF;
  border-radius: 50%;
  font-size: 1.35rem;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.call-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #4285F4;
  z-index: -1;
  animation: radar-pulse 2s infinite ease-out;
}

.call-float:hover {
  transform: translateY(-5px) scale(1.05);
  background: #3367D6;
  box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
  color: white;
}

/* Infinite Marquee */
.marquee-container {
  background: linear-gradient(90deg, var(--color-primary) 0%, #1e3a8a 50%, var(--color-primary) 100%);
  color: rgba(255,255,255,0.8);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-content {
  display: flex;
  gap: 30px;
  animation: marquee 30s linear infinite;
  min-width: 200%;
}

.marquee-content a {
  color: inherit;
  transition: color 0.3s ease;
  text-decoration: none;
  padding: 0 10px;
  letter-spacing: 0.5px;
}

.marquee-content a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.marquee-content.hover-pause:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.show {
  opacity: 1;
  pointer-events: all;
}

.video-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: var(--border-radius-md);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.show .video-modal-content {
  transform: scale(1);
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

.video-close:hover {
  color: white;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Interactive Program Filter */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 32px;
  border-radius: var(--border-radius-pill);
  border: 1px solid #cbd5e1;
  background: var(--color-white);
  color: var(--color-text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.program-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.program-card.hidden {
  display: none;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.3);
}

.prog-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.program-card h4 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.prog-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent);
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 24px;
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 115px;
  right: 45px;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: var(--border-radius-pill);
  border: 1px solid #cbd5e1;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.go-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dash {
  100% { stroke-dashoffset: 0; }
}

@keyframes radar-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-item:nth-child(2)::after { display: none; }
  .success-content { flex-direction: column; gap: 40px; padding: 32px; }
  .success-image::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { padding: 140px 0 80px 0; }
  .hero h1 { font-size: 2.75rem; color: var(--color-primary); text-shadow: none; }
  .trust-stats { grid-template-columns: 1fr 1fr; padding: 24px; }
  
  .lead-form { flex-direction: column; background: transparent; padding: 0; border: none; }
  .lead-form input, .lead-form select { width: 100%; border-radius: var(--border-radius-sm); border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: var(--color-white); }
  .lead-form input::placeholder { color: rgba(255,255,255,0.6); }
  .lead-form select option { color: #000; }
  .lead-form button { border-radius: var(--border-radius-sm); }
  
  .cta-box { padding: 40px 24px; border-radius: var(--border-radius-lg); }
  .cta-box h2 { font-size: 2.25rem; }
}

/* About Page Styles */
.about-hero {
  padding: 180px 0 100px 0;
  background-color: var(--color-primary);
  background-image: radial-gradient(circle at top right, rgba(59, 130, 246, 0.4) 0%, transparent 50%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
  pointer-events: none;
  z-index: 0;
}

.about-hero h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.about-hero p {
  font-size: 1.25rem;
  color: #E2E8F0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  padding-top: 40px;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
}

.team-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-social {
  position: absolute;
  bottom: 20px; right: 20px;
  display: flex;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 40px; height: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.team-social a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.team-info {
  padding: 32px;
  text-align: left;
}

.team-info h3 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.team-role {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-summary {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.75rem; }
  .team-grid { grid-template-columns: 1fr; }
}

/* Destinations Page Specific Styles */
.destinations-hero {
  padding: 180px 0 100px 0;
  background-color: var(--color-primary);
  background-image: radial-gradient(circle at top right, rgba(16, 185, 129, 0.3) 0%, transparent 60%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.destinations-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
  pointer-events: none;
  z-index: 0;
}

.destinations-hero h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.destinations-hero p {
  font-size: 1.25rem;
  color: #E2E8F0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Work Permits Section */
.work-permits {
  background-color: var(--color-bg);
  padding: 100px 0;
}

.permit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.permit-card {
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.permit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.permit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.permit-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.permit-card:hover .permit-icon {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: rotate(10deg);
}

.permit-card h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.permit-duration {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--color-primary);
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.permit-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .destinations-hero h1 { font-size: 2.75rem; }
}

/* Services Page Specific Styles */
.services-hero {
  padding: 180px 0 100px 0;
  background-color: var(--color-primary);
  background-image: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.3) 0%, transparent 60%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.services-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
  pointer-events: none;
  z-index: 0;
}

.services-hero h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.services-hero p {
  font-size: 1.25rem;
  color: #E2E8F0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .services-hero h1 { font-size: 2.75rem; }
}

/* Cinematic Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: var(--color-primary);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 10;
}

.video-modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
}

.close-modal-btn:hover {
  background: #EF4444;
  border-color: #EF4444;
  transform: rotate(90deg);
}

/* Dynamic Text Cycler */
.dynamic-text {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
