/* ============================================================
   ROAMING TOURS AND TRAVELS — style.css
   Colors: #10112E (Navy), #00B99E (Teal)
   Font: Inter
============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy: #10112E;
  --navy-light: #1a1c42;
  --navy-mid: #141530;
  --teal: #00B99E;
  --teal-light: #00d4b5;
  --teal-dark: #009f87;
  --white: #ffffff;
  --off-white: #f4f7f9;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #374151;
  --border-color: rgba(0,0,0,0.08);
  --card-bg: #ffffff;
  --card-border: rgba(0,185,158,0.18);
  --shadow-sm: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

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

a { text-decoration: none; color: inherit; }

.section-padding { padding: 100px 0; }

.mb-60 { margin-bottom: 60px; }

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  display: none;
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub-text {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 50%, #5ef0dd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-teal { color: var(--teal) !important; }

/* ---------- BUTTONS ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,185,158,0.35);
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,185,158,0.5);
  color: var(--white);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(0,185,158,0.4);
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: rgba(0,185,158,0.1);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-lg-custom { padding: 16px 36px; font-size: 16px; }
.btn-sm-custom { padding: 10px 22px; font-size: 14px; }

/* ---------- NAVBAR ---------- */
#mainNav {
  padding: 20px 0;
  transition: var(--transition);
  z-index: 1000;
  background: transparent;
}
#mainNav.scrolled {
  background: rgba(16,17,46,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border-color);
}

.brand-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 40px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.06);
}

.toggler-icon {
  color: var(--white);
  font-size: 20px;
}
.navbar-toggler { border: none; outline: none; box-shadow: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- NAVBAR ---------- */
#mainNav {
  background: transparent;
  padding: 20px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,185,158,0.1);
}
#mainNav.scrolled .nav-link { color: rgba(16,17,46,0.7) !important; }
#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active { color: var(--navy) !important; background: rgba(0,185,158,0.07); }

/* ---------- HERO SECTION — full-viewport slideshow ---------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background carousel fills entire section */
.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-carousel .carousel,
.hero-bg-carousel .carousel-inner,
.hero-bg-carousel .carousel-item {
  height: 100%;
}
.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,12,35,0.35) 0%,
    rgba(10,12,35,0.55) 45%,
    rgba(10,12,35,0.75) 100%
  );
  z-index: 1;
}

/* Flight.webp doodle */
.hero-doodle-plane {
  position: absolute;
  top: 110px;
  right: 3%;
  z-index: 3;
  pointer-events: none;
  animation: floatY 4.5s ease-in-out infinite 0.8s;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}
.hero-doodle-plane img {
  width: 170px;
  height: auto;
  display: block;
}

/* Centered content sits above overlay */
.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-center-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,185,158,0.15);
  border: 1px solid rgba(0,185,158,0.35);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero-heading {
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 22px;
  animation: blurFadeIn 0.8s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}

/* Earth.webp inline in heading */
.hero-earth-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  vertical-align: middle;
  margin: 0 6px -6px;
  animation: floatY 4s ease-in-out infinite;
  display: inline-block;
}

.hero-subtext {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 36px;
  animation: blurFadeIn 0.8s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}

/* Explore Now button */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00B99E 0%, #009f87 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 30px rgba(0,185,158,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0,185,158,0.55);
  color: #fff;
  background: linear-gradient(135deg, #00d4b5 0%, #00B99E 100%);
}

/* Ghost outline button beside Explore Now */
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-2px);
}

/* Carousel prev / next arrows */
.hero-carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.carousel-control-prev:hover .hero-carousel-arrow,
.carousel-control-next:hover .hero-carousel-arrow {
  background: rgba(255,255,255,0.3);
  transform: scale(1.08);
}
.carousel-control-prev { width: 70px; z-index: 3; }
.carousel-control-next { width: 70px; z-index: 3; }
.carousel-control-prev-icon,
.carousel-control-next-icon { display: none; }

/* Dot indicators */
.hero-carousel-dots {
  bottom: 32px;
  z-index: 3;
}
.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
  opacity: 1;
}
.hero-carousel-dots button.active {
  background: #00B99E;
  width: 26px;
  border-radius: 4px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.scroll-dot {
  width: 6px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--teal);
  border-radius: 50px;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---------- HERO WAVE ---------- */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* ---------- SERVICES STRIP ---------- */
.services-strip {
  background: var(--navy);
  border-top: none;
  border-bottom: none;
  padding: 28px 0;
  position: relative;
}
.services-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,185,158,0.4), transparent);
}
.services-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,185,158,0.2), transparent);
}
.strip-inner { gap: 12px; }
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  cursor: default;
}
.strip-item i { color: var(--teal); font-size: 15px; }
.strip-item:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,185,158,0.35);
}

/* ---------- ABOUT SNAPSHOT ---------- */
.about-snapshot {
  background: linear-gradient(135deg, #f4f7fb 0%, #eef9f6 100%);
  position: relative;
  overflow: hidden;
}
.about-snapshot::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,185,158,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.about-snapshot::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(16,17,46,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.about-images-wrap { position: relative; height: 480px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 390px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 230px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  border: 4px solid #fff;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
  position: absolute;
  top: 52%; left: 63%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,185,158,0.45);
  min-width: 130px;
  backdrop-filter: blur(8px);
  z-index: 5;
}
.exp-num {
  display: block;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.exp-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.92;
  line-height: 1.3;
  white-space: nowrap;
}

/* Curved route line connecting Flight → Earth */
.about-route-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* About doodles */
.about-doodle-earth {
  position: absolute;
  top: -18px; right: -18px;
  width: 90px;
  z-index: 4;
  animation: floatY 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0,185,158,0.25));
}
.about-doodle-earth img { width: 100%; }
.about-doodle-plane {
  position: absolute;
  bottom: 10px; left: -24px;
  width: 120px;
  z-index: 4;
  animation: floatY 5s ease-in-out infinite 1.2s;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}
.about-doodle-plane img { width: 100%; }

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,185,158,0.08);
  border: 1px solid rgba(0,185,158,0.2);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
.feature-pill i { color: var(--teal); }
.feature-pill:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ---------- SERVICES SECTION ---------- */
.services-section {
  background: linear-gradient(155deg, #f6f9ff 0%, #eef9f6 60%, #f6f9ff 100%);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(0,185,158,0.13) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.services-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(16,17,46,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.service-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,185,158,0.05);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(0,185,158,0.25);
  transform: translateY(-7px);
  box-shadow: 0 20px 56px rgba(0,185,158,0.15), 0 4px 16px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,185,158,0.15), rgba(0,185,158,0.05));
  border: 1px solid rgba(0,185,158,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(0,185,158,0.25), rgba(0,185,158,0.1));
  transform: scale(1.05);
}

.service-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.service-desc { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 24px; }
.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; }

/* ---------- DESTINATIONS ---------- */
.destinations-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.destinations-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,185,158,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.destinations-section .section-heading { color: var(--white); }
.destinations-section .section-label { color: var(--teal); }
.destinations-section .btn-outline-custom {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.destinations-section .btn-outline-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--teal);
  color: var(--teal);
}
.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 200px;
  cursor: default;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 4px 20px rgba(16,17,46,0.10);
}
.dest-card-large { height: 420px; }
.dest-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1) translateZ(0);
  transform-origin: center center;
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16,17,46,0.88) 0%, rgba(16,17,46,0.1) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.45s cubic-bezier(0.4,0,0.2,1);
}

.dest-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0,185,158,0.15);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.dest-name { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.dest-card:not(.dest-card-large) .dest-name { font-size: 18px; }
.dest-desc { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,185,158,0.8);
  padding: 8px 18px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.dest-card:hover .dest-btn { opacity: 1; transform: translateY(0); }

/* ---------- HOW IT WORKS ---------- */
.how-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,185,158,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.how-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,17,46,0.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.how-section .section-heading { color: var(--navy); }
.how-section .section-label { color: var(--teal); }
.how-section .section-sub-text { color: var(--text-muted); }

.step-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 4px 24px rgba(16,17,46,0.07);
}
.step-card:hover {
  border-color: rgba(0,185,158,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,185,158,0.13);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,185,158,0.12), rgba(0,185,158,0.04));
  border: 1px solid rgba(0,185,158,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--teal);
  margin: 0 auto 20px;
}
.step-number {
  font-size: 72px;
  font-weight: 900;
  color: rgba(0,185,158,0.08);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  letter-spacing: -2px;
  user-select: none;
}
.step-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

/* ---------- STATS — Creative Milestone Banner ---------- */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0a0c26 60%, #0d1128 100%);
  position: relative;
  overflow: hidden;
}

/* Dotted grid overlay */
.stats-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,185,158,0.18) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.6;
}

/* Ambient glow orbs */
.stats-glow-left {
  position: absolute;
  top: -80px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,185,158,0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.stats-glow-right {
  position: absolute;
  bottom: -80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,185,158,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-label { color: var(--teal) !important; }
.stats-heading { color: var(--white); }

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

.milestone-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,185,158,0.18);
  border-radius: var(--radius-md);
  padding: 44px 24px 36px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.milestone-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: var(--transition);
}
.milestone-card:hover {
  background: rgba(0,185,158,0.07);
  border-color: rgba(0,185,158,0.45);
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(0,185,158,0.22), 0 4px 16px rgba(0,0,0,0.3);
}
.milestone-card:hover::before { opacity: 1; }

.milestone-icon-ring {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(0,185,158,0.22), rgba(0,185,158,0.06));
  border: 2px solid rgba(0,185,158,0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--teal);
  margin: 0 auto 28px;
  box-shadow: 0 0 24px rgba(0,185,158,0.18), inset 0 0 12px rgba(0,185,158,0.08);
  transition: var(--transition);
}
.milestone-card:hover .milestone-icon-ring {
  background: linear-gradient(135deg, rgba(0,185,158,0.35), rgba(0,185,158,0.12));
  box-shadow: 0 0 40px rgba(0,185,158,0.38), inset 0 0 16px rgba(0,185,158,0.12);
  transform: scale(1.1) rotate(-5deg);
}

.milestone-counter {
  margin-bottom: 10px;
  line-height: 1;
}

.stat-big-num { font-size: clamp(40px, 6vw, 62px); font-weight: 900; color: var(--teal); display: inline; }
.stat-big-plus { font-size: 32px; font-weight: 900; color: var(--teal); }
.stat-big-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); margin-top: 4px; margin-bottom: 0; letter-spacing: 0.5px; text-transform: uppercase; }

.milestone-bar { display: none; }

@media (max-width: 767.98px) {
  .milestone-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .milestone-grid { grid-template-columns: 1fr; }
}

/* ---------- PACKAGES ---------- */
.packages-section {
  background: linear-gradient(155deg, #f6f9ff 0%, #eef9f6 60%, #f6f9ff 100%);
  position: relative;
  overflow: hidden;
}
.packages-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,185,158,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.package-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.package-card:hover {
  border-color: rgba(0,185,158,0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,185,158,0.14), 0 4px 16px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.95);
}

.package-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.package-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .package-img-wrap img { transform: scale(1.06); }

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(16,17,46,0.85);
  backdrop-filter: blur(8px);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(0,185,158,0.3);
}
.package-badge-teal { background: var(--teal); color: var(--white); border: none; }
.package-badge-gold { background: #f59e0b; color: var(--white); border: none; }

.package-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(16,17,46,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.package-wishlist:hover { background: rgba(239,68,68,0.8); }

.package-body { padding: 24px; }
.package-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.package-meta i { color: var(--teal); margin-right: 4px; }
.package-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.package-desc { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin-bottom: 20px; }
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  gap: 12px;
  flex-wrap: wrap;
}
.price-from { display: block; font-size: 11px; color: var(--text-muted); font-weight: 500; }
.price-amount { font-size: 22px; font-weight: 800; color: var(--navy); }
.price-per { font-size: 12px; color: var(--text-muted); margin-left: 2px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,185,158,0.09) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.testimonials-section .section-heading { color: var(--white); }
.testimonials-section .section-label { color: var(--teal); }

.testi-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.testi-card:hover {
  border-color: rgba(0,185,158,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,185,158,0.12);
  background: rgba(255,255,255,0.08);
}
.testi-card-featured {
  background: rgba(0,185,158,0.08);
  border-color: rgba(0,185,158,0.25);
}

.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 24px; font-style: italic; }
.testi-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(0,185,158,0.35);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0,185,158,0.25);
}
.testi-name { font-size: 15px; font-weight: 700; color: var(--white); margin: 0 0 4px; }
.testi-location { font-size: 12px; color: rgba(255,255,255,0.45); margin: 0; }
.testi-location i { color: var(--teal); margin-right: 4px; }

/* ---------- CTA SECTION ---------- */
.cta-section { padding: 80px 0; background: #f4f7fb; }
.cta-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1c42 50%, #0d1128 100%);
  border: 1px solid rgba(0,185,158,0.15);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,185,158,0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,185,158,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-bg-shape { display: none; }
.cta-heading { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; color: var(--white); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.62); }
.cta-contact { margin-top: 16px; }
.cta-phone {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.cta-phone i { color: var(--teal); }
.cta-phone:hover { color: var(--white); }

/* ---------- FOOTER ---------- */
.site-footer { background: #07081c; position: relative; }
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal) 30%, var(--teal-light) 50%, var(--teal) 70%, transparent);
}
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-desc { font-size: 14px; line-height: 1.8; color: var(--text-muted); }
.footer-heading { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links i { font-size: 10px; color: var(--teal); }
.footer-links a:hover { color: var(--teal); gap: 12px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-contact i { color: var(--teal); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: var(--text-muted); transition: var(--transition); }
.footer-contact a:hover { color: var(--teal); }

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom { padding: 20px 0; }
.footer-copy { font-size: 13px; color: var(--text-muted); margin: 0; }
.footer-dev-link { color: var(--teal); font-weight: 600; transition: var(--transition); }
.footer-dev-link:hover { color: var(--teal-light); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 36px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 36px rgba(37,211,102,0.65);
  color: #fff;
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.85), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 6px 24px rgba(0,185,158,0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,185,158,0.5); }

/* ---------- ANIMATIONS ---------- */
@keyframes blurFadeIn {
  from { opacity: 0; filter: blur(12px); transform: translateY(20px); }
  to { opacity: 1; filter: blur(0px); transform: translateY(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-img-main { animation: floatY 4s ease-in-out infinite; }

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(14px); opacity: 0.3; }
}

/* Particle dots */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.12;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.12; }
  90% { opacity: 0.12; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* AOS custom override — blur effect */
[data-aos="blur-up"] {
  filter: blur(8px);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}
[data-aos="blur-up"].aos-animate {
  filter: blur(0);
  transform: translateY(0);
  opacity: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .hero-heading { font-size: clamp(32px, 8vw, 50px); letter-spacing: -1px; }
  .about-images-wrap { height: 360px; }
  .cta-inner { padding: 40px 32px; }
  .hero-earth-img { width: 54px; height: 54px; }
  .hero-carousel-dots { bottom: 24px; }
  .about-doodle-earth { width: 70px; top: -10px; right: -10px; }
  .about-doodle-plane { width: 90px; left: -12px; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 70px 0; }
  .cta-inner { padding: 32px 24px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px !important; }
  .stat-divider { display: none; }
  .stat-item { min-width: 80px; }
  .about-images-wrap { height: 280px; }
  .about-img-main { width: 80%; height: 280px; }
  .about-img-secondary { width: 55%; height: 180px; }
  .dest-card-large { height: 280px; }
  .strip-inner { gap: 8px; }
  .strip-item { padding: 8px 14px; font-size: 13px; }
  .hero-earth-img { width: 44px; height: 44px; }
  .hero-subtext { font-size: 15px; }
  .btn-outline-hero { display: none; }
  .hero-carousel-dots { bottom: 20px; }
  .about-doodle-earth { width: 60px; }
  .about-doodle-plane { width: 80px; bottom: 0; left: -8px; }
}

@media (max-width: 575.98px) {
  .hero-heading { font-size: 32px; }
  .hero-subtext { font-size: 15px; }
  .section-heading { font-size: 26px; }
  .cta-inner { padding: 28px 20px; border-radius: var(--radius-lg); }
  .footer-top { padding: 50px 0 40px; }
  .package-footer { flex-direction: column; align-items: flex-start; }
  .back-to-top { bottom: 24px; right: 24px; }
}

/* ---------- NAVBAR COLLAPSE (mobile) ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(16,17,46,0.97);
    backdrop-filter: blur(20px);
    margin-top: 16px;
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-color);
  }
  .nav-link { padding: 10px 12px !important; }
  .navbar-nav .ms-2 { margin-left: 0 !important; margin-top: 8px; }
}

/* ---------- RESPONSIVE — FULL COVERAGE ---------- */

/* Prevent any element from causing horizontal scroll */
section, footer, nav { max-width: 100%; overflow-x: hidden; }

@media (max-width: 767.98px) {
  /* Hero */
  .hero-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .btn-explore, .btn-outline-hero {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin-left: 0 !important;
    display: inline-flex !important;
  }

  /* About images */
  .about-images-wrap { height: 300px; }
  .about-img-main { width: 78%; height: 280px; }
  .about-img-secondary { width: 52%; height: 175px; }
  .about-exp-badge { padding: 14px 18px; min-width: 110px; }
  .exp-num { font-size: 30px; }

  /* Destinations */
  .dest-card-large { height: 260px; }

  /* Stats */
  .stats-section { padding: 70px 0; }
  .milestone-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .milestone-card { padding: 32px 16px 28px; }
  .milestone-icon-ring { width: 60px; height: 60px; font-size: 24px; }

  /* CTA */
  .cta-inner { padding: 32px 24px; }
  .col-lg-4.text-lg-end { text-align: center !important; }

  /* Footer */
  .footer-top { padding: 50px 0 36px; }

  /* WhatsApp & back-to-top */
  .whatsapp-float { bottom: 96px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 575.98px) {
  /* Spacing */
  .section-padding { padding: 60px 0; }
  .mb-60 { margin-bottom: 40px; }

  /* Typography */
  .section-heading { font-size: 24px; }
  .hero-heading { font-size: 30px; letter-spacing: -0.5px; }
  .hero-subtext { font-size: 14px; }

  /* About */
  .about-images-wrap { height: 260px; }
  .about-img-main { width: 82%; height: 240px; }
  .about-img-secondary { width: 56%; height: 155px; }
  .about-doodle-earth { width: 54px; }
  .about-doodle-plane { width: 72px; }

  /* Services */
  .service-card { padding: 28px 22px; }

  /* Stats */
  .milestone-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-big-num { font-size: 36px; }

  /* Testimonials */
  .testi-card { padding: 24px 20px; }

  /* CTA */
  .cta-inner { padding: 28px 18px; border-radius: var(--radius-lg); }
  .cta-heading { font-size: 22px; }

  /* Step cards */
  .step-card { padding: 28px 20px; }
}

@media (max-width: 400px) {
  .milestone-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .milestone-card { padding: 28px 12px 22px; }
  .milestone-icon-ring { width: 52px; height: 52px; font-size: 20px; margin-bottom: 18px; }
  .stat-big-num { font-size: 32px; }
  .stat-big-plus { font-size: 24px; }
  .about-images-wrap { height: 220px; }
  .about-img-main { height: 210px; }
  .about-img-secondary { height: 135px; }
  .hero-heading { font-size: 26px; }
}
