/* 
 * SkyBridge EduCare - Main Frontend Design System, Full-Page Screenshot Recalibration, Universal Options & Dynamic Logo Sizing
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --primary-color: #1a4bd6;
  --primary-hover: #1237a8;
  --primary-gradient: linear-gradient(135deg, #1a4bd6 0%, #3b82f6 100%);
  --secondary-color: #0f172a;
  --accent-gold: #f5a623;
  --accent-gold-hover: #e09214;
  
  --bg-light: #f8fafd;
  --bg-glow-blue: rgba(26, 75, 214, 0.05);
  --bg-dark: #07153b;
  --bg-dark-card: rgba(15, 30, 75, 0.7);
  
  --text-heading: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  --card-bg: #ffffff;
  --card-border: rgba(226, 232, 240, 0.8);
  
  /* Rich Multi-Layered Ambient Shadows */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 25px 50px -12px rgba(26, 75, 214, 0.22), 0 12px 24px -8px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(26, 75, 214, 0.18);
  --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
  
  /* Ultra-Smooth Cubic-Bezier Transition Curves */
  --transition-smooth: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.35s ease, background-color 0.35s ease;
  --transition-bounce: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  --transition-img: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* FLOATING BOTTOM-TO-TOP BUTTON */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(26, 75, 214, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, visibility 0.4s ease, background 0.3s ease;
  will-change: transform, opacity;
}

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

.scroll-to-top:hover {
  background: var(--accent-gold);
  color: #0f172a;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 14px 30px rgba(245, 166, 35, 0.5);
}

/* COLORFUL GRADIENT ICONS SYSTEM */
.colorful-icons .icon-gradient-1 {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35) !important;
}

.colorful-icons .icon-gradient-2 {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35) !important;
}

.colorful-icons .icon-gradient-3 {
  background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35) !important;
}

.colorful-icons .icon-gradient-4 {
  background: linear-gradient(135deg, #f43f5e, #e11d48) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.35) !important;
}

.colorful-icons .icon-gradient-5 {
  background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35) !important;
}

.colorful-icons .icon-gradient-6 {
  background: linear-gradient(135deg, #ec4899, #db2777) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.35) !important;
}

/* Badge Tags & Pill Styling with Glow Pulse */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(245, 166, 35, 0.12);
  color: #d97706;
  border: 1px solid rgba(245, 166, 35, 0.3);
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(245, 166, 35, 0.15);
  animation: pulseGlow 3s infinite ease-in-out;
}

.badge-pill-blue {
  background: rgba(26, 75, 214, 0.08);
  color: var(--primary-color);
  border-color: rgba(26, 75, 214, 0.2);
  box-shadow: 0 0 15px rgba(26, 75, 214, 0.1);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(245, 166, 35, 0.15); }
  50% { box-shadow: 0 0 25px rgba(245, 166, 35, 0.35); }
}

/* Common Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.section-header .badge-pill {
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Buttons with Smooth Pop Hover */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(26, 75, 214, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(26, 75, 214, 0.38);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.25);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  color: #0f172a;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(245, 166, 35, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid rgba(15, 23, 42, 0.2);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.05);
  border-color: var(--text-heading);
  transform: translateY(-4px) scale(1.02);
}

/* BACK TO HOME BUTTON PILL */
.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  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);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.btn-back-home:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Navbar Header & Dynamic Logo Sizing */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  padding: 16px 0;
  transition: var(--transition-fast);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
}

.brand-logo img {
  max-width: var(--skybridge-logo-width, 180px);
  max-height: var(--skybridge-logo-height, 50px);
  width: auto;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-logo:hover img {
  transform: scale(1.04);
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.main-navigation a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-heading);
  position: relative;
  transition: color 0.3s ease;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
  width: 100%;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--primary-color);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-heading);
  cursor: pointer;
}

/* HERO SECTION & ANIMATED GRADIENT HEADLINE */
.hero-section {
  position: relative;
  padding: 80px 0 100px 0;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(26, 75, 214, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 span.highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 50%, var(--accent-gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 8px solid #ffffff;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
  will-change: transform;
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-img);
  will-change: transform;
}

.hero-visual:hover .hero-image-wrapper img {
  transform: scale(1.06);
}

/* Floating Badges with Gentle Animation */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatAnim 4s ease-in-out infinite;
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}

.floating-badge.top-badge {
  top: -20px;
  left: -20px;
}

.floating-badge.stat-badge-left {
  bottom: 20px;
  left: -30px;
  animation-delay: 1s;
}

.floating-badge.stat-badge-right {
  bottom: 40px;
  right: -20px;
  animation-delay: 2s;
  background: #ffffff;
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(26, 75, 214, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.badge-icon.gold {
  background: rgba(245, 166, 35, 0.15);
  color: #d97706;
}

.badge-text .val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-heading);
  line-height: 1.2;
}

.badge-text .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* WHY CHOOSE US & RIPPLE PULSE PLAY BUTTON */
.why-choose-section {
  padding: 100px 0;
  background: #ffffff;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
  will-change: transform;
}

.video-thumbnail-wrap {
  position: relative;
  width: 100%;
  height: 460px;
}

.video-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-img);
  will-change: transform;
}

.video-container:hover .video-thumbnail-wrap img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding-left: 4px;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
  animation: ripplePulse 2s infinite;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.play-btn::before, .play-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  opacity: 0;
  animation: rippleRing 2.5s infinite;
}

.play-btn::after {
  animation-delay: 1.25s;
}

@keyframes ripplePulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6); }
  70% { box-shadow: 0 0 0 25px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

@keyframes rippleRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.video-container:hover .play-btn {
  transform: scale(1.18);
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-light);
  border: 1px solid var(--card-border);
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card:hover::before {
  transform: translateX(350%);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: #ffffff;
  box-shadow: var(--shadow-glow) !important;
  border-color: rgba(26, 75, 214, 0.35);
}

.feature-card .feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(245, 166, 35, 0.15);
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.feature-card:hover .feat-icon {
  transform: scale(1.15) rotate(6deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* SERVICES SECTION ("Everything you need, in one place") */
.services-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  padding: 36px 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

/* Soft Ambient Glow in Bottom Right Corner */
.service-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scale(1.4);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow) !important;
  border-color: rgba(26, 75, 214, 0.4);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(26, 75, 214, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.service-card:hover .service-icon {
  transform: rotate(6deg) scale(1.15);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card-link {
  color: var(--primary-hover);
  transform: translateX(4px);
}

/* ABOUT & STATS SECTION */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-box {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-img);
  will-change: transform;
}

.about-img-box:hover img {
  transform: scale(1.06);
}

.about-floating-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
  animation: floatAnim 4s ease-in-out infinite;
}

.about-content-col h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content-col p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 20px;
  border: 1px solid var(--card-border);
}

.stat-item {
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-item .stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ========================================================
   EXACT SCREENSHOT MATCHING DESTINATIONS SECTION (NO BUTTON)
   ======================================================== */
.destinations-section {
  padding: 100px 0;
  background: radial-gradient(circle at 10% 20%, rgba(26, 75, 214, 0.05) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.06) 0%, transparent 50%),
              var(--bg-light);
}

.exact-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

/* Clickable Destination Card (Matching Screenshot Pixel-for-Pixel) */
.exact-dest-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 36px 30px 32px 30px;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.35s ease;
  will-change: transform;
}

/* Gradient Ambient Aura in Top Right Corner */
.exact-dest-card.glow-card-1 {
  background: radial-gradient(circle at 95% 5%, rgba(26, 75, 214, 0.1) 0%, transparent 45%), #ffffff;
}

.exact-dest-card.glow-card-2 {
  background: radial-gradient(circle at 95% 5%, rgba(245, 166, 35, 0.14) 0%, transparent 45%), #ffffff;
}

.exact-dest-card.glow-card-3 {
  background: radial-gradient(circle at 95% 5%, rgba(244, 63, 94, 0.12) 0%, transparent 45%), #ffffff;
}

.exact-dest-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(26, 75, 214, 0.2), 0 12px 24px -8px rgba(15, 23, 42, 0.1);
  border-color: rgba(26, 75, 214, 0.35);
}

/* Top Right Gold Badge Pill */
.card-top-gold-pill {
  position: absolute;
  top: 28px;
  right: 24px;
  background: var(--accent-gold);
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
  letter-spacing: 0.02em;
}

/* Flag Icon Square Box */
.flag-square-box {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: rgba(26, 75, 214, 0.06);
  border: 1px solid rgba(26, 75, 214, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.exact-dest-card:hover .flag-square-box {
  transform: scale(1.1) rotate(-4deg);
}

.flag-square-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.exact-dest-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.exact-dest-card p.card-dest-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  min-height: 44px;
}

/* Dashed Separator Line */
.dest-dashed-divider {
  border-top: 1px dashed rgba(203, 213, 225, 0.9);
  margin: 18px 0;
  width: 100%;
}

/* Stat Row Items List */
.dest-stat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dest-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(26, 75, 214, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.stat-item-text {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
}

/* SINGLE DESTINATION PAGE STYLES */
.single-dest-hero {
  padding: 100px 0 80px 0;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs a:hover {
  color: var(--accent-gold);
}

.dest-hero-content h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.dest-hero-content p.hero-excerpt {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
}

/* Key Facts Bar */
.dest-facts-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  padding: 24px 0;
}

.dest-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-fact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  border: 1px solid var(--card-border);
}

.dest-fact-card .fact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26, 75, 214, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.dest-fact-card .fact-text label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.dest-fact-card .fact-text span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-heading);
}

/* Single Destination Main Layout */
.single-dest-layout {
  padding: 70px 0;
}

.dest-grid-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.dest-main-content .content-box {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
  line-height: 1.7;
}

.dest-main-content h3 {
  font-size: 1.6rem;
  margin: 30px 0 16px 0;
}

.dest-main-content h4 {
  font-size: 1.25rem;
  margin: 24px 0 12px 0;
}

.dest-main-content ul {
  margin: 16px 0 24px 20px;
}

.dest-main-content li {
  margin-bottom: 8px;
}

.dest-highlights-box {
  background: var(--bg-light);
  border: 1px solid rgba(26, 75, 214, 0.2);
  border-radius: var(--radius-md);
  padding: 30px;
  margin: 40px 0 30px 0;
}

.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.highlight-item {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-item i {
  color: #10b981;
}

.dest-cta-banner {
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.dest-cta-banner h3 {
  color: #ffffff;
  margin: 0 0 8px 0;
  font-size: 1.35rem;
}

.dest-cta-banner p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Sidebar Consultation Form */
.dest-sidebar-col {
  position: sticky;
  top: 90px;
}

.dest-sidebar-card {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.dest-sidebar-card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dest-sidebar-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.dest-sidebar-card .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.related-dest-section {
  padding: 70px 0 100px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--card-border);
}

/* PROCESS SECTION (3 STEPS TO OFFER LETTER) */
.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #07153b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.process-section .section-header h2 {
  color: #ffffff;
}

.process-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.process-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition-smooth);
  will-change: transform;
}

.process-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(245, 166, 35, 0.6);
  background: rgba(20, 40, 100, 0.9);
  box-shadow: 0 20px 45px rgba(245, 166, 35, 0.25) !important;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.process-card:hover .step-num {
  transform: scale(1.1) translateX(4px);
}

.process-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.process-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* CONTACT SECTION */
.contact-section {
  padding: 100px 0;
  background: #081742;
  color: #ffffff;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.contact-info-col .badge-pill {
  background: rgba(245, 166, 35, 0.15);
  color: var(--accent-gold);
  border-color: rgba(245, 166, 35, 0.3);
}

.contact-info-col h2 {
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-info-col p.lead-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-item:hover {
  transform: translateX(6px);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.15) rotate(6deg);
}

.contact-item-text label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.contact-item-text span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}

/* Contact Form Card */
.contact-form-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--glass-shadow);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.contact-form-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(245, 166, 35, 0.2);
}

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

.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #34d399;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* SCROLL REVEAL ANIMATION CLASSES */
.reveal-on-scroll {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

.reveal-fade-up {
  transform: translateY(40px);
}

.reveal-fade-left {
  transform: translateX(-40px);
}

.reveal-fade-right {
  transform: translateX(40px);
}

.reveal-zoom {
  transform: scale(0.9);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* FOOTER */
.site-footer {
  background: #040c24;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.6;
  margin-top: 16px;
  font-size: 0.9rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, color 0.3s ease;
  will-change: transform;
}

.social-btn:hover {
  background: var(--accent-gold);
  color: #0f172a;
  transform: translateY(-4px) scale(1.1);
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Modal Video Popup */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* COMPREHENSIVE RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .dest-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .dest-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .exact-dest-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .floating-badge.stat-badge-left {
    left: 10px;
  }

  .floating-badge.stat-badge-right {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0 70px 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .dest-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .dest-facts-grid {
    grid-template-columns: 1fr;
  }

  .highlights-list {
    grid-template-columns: 1fr;
  }

  .dest-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header {
    margin-bottom: 36px;
  }
  
  .feature-cards-grid,
  .services-grid,
  .exact-dest-grid,
  .process-grid {
    grid-template-columns: 1fr !important;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .main-navigation {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: none;
    border-bottom: 2px solid var(--primary-color);
  }
  
  .main-navigation.active {
    display: block;
  }
  
  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-image-wrapper img {
    height: 340px;
  }

  .floating-badge {
    padding: 8px 14px;
  }

  .floating-badge .badge-text .val {
    font-size: 0.95rem;
  }

  .floating-badge .badge-text .lbl {
    font-size: 0.68rem;
  }

  .badge-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-form-card,
  .dest-main-content .content-box {
    padding: 24px 18px;
  }
}
