/* ================= PRELOADER ================= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e9f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader .earth {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00d4ff, #007bff);
  animation: spin 2s linear infinite;
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.4);
  margin-bottom: 15px;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.loader p {
  font-weight: 500;
  color: #007bff;
}

/* ================= ROOT + BODY ================= */
:root {
  --text-dark: #0a2540;
  --bg-light: #f5f9ff;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  scroll-behavior: smooth;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded {
  opacity: 1;
}

/* ================= NAVBAR ================= */
.navbar {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.text-gradient {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ================= BUTTONS ================= */
.btn-gradient {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: #fff;
  border: none;
  transition: all 0.4s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #ff7b00, #ffb700);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
}

/* ================= HERO SECTION ================= */
#hero {
  padding: 150px 0 100px;
  background: linear-gradient(180deg, #e9f5ff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
  animation: floatParallax 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatParallax {
  0%,
  100% {
    transform: translateY(0) rotateY(0deg);
  }

  50% {
    transform: translateY(-10px) rotateY(3deg);
  }
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.45), rgba(0, 123, 255, 0.7));
  filter: blur(100px);
  animation: pulse 5s ease-in-out infinite;
  z-index: 1;
  will-change: transform, opacity;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.hero-img {
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: fadeInFloat 1.4s ease forwards, float 3s ease-in-out infinite;
  transition: all 0.5s ease;
  border-radius: 20px;
  will-change: transform, opacity;
}

@keyframes fadeInFloat {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-img:hover {
  box-shadow: 0 15px 45px rgba(0, 150, 255, 0.3);
  filter: drop-shadow(0 12px 40px rgba(0, 180, 255, 0.6));
}

.hero-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transition: all 0.5s ease;
}

.hero-img:hover::after {
  left: 100%;
  transition: left 1s ease;
}

/*---------video ----------------*/
.hero-video {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 580px;
  height: 380px;
  border-radius: 25px;
  object-fit: cover;
  opacity: 0;
  animation: fadeInFloat 1.4s ease forwards, float 3s ease-in-out infinite;
  box-shadow: 0 15px 45px rgba(0, 150, 255, 0.25);
  filter: drop-shadow(0 12px 40px rgba(0, 180, 255, 0.4));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-video:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 55px rgba(0, 150, 255, 0.35);
}

/* ================= HERO FLOATING ELEMENTS ================= */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: -1px solid rgba(182, 43, 43, 0.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeUp 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  will-change: transform, opacity;
}

/* continues... */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(45deg, #fdffff, #f1f3f5, #f0f5f7);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderGlow 3s linear infinite;
}

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

/* Floating elements positions */
.profile-card {
  bottom: 15%;
  left: -15%;
  width: 220px;
  animation-delay: 0.8s;
}

.stats-card {
  right: -10%;
  top: 20%;
  width: 120px;
  animation-delay: 1s;
}

.profile-card,
.stats-card {
  z-index: 5;
  transition: transform 0.4s ease, box-shadow 0.5s ease;
}

.profile-card:hover,
.stats-card:hover {
  transform: scale(1.08) translateY(-6px);
  box-shadow: 0 15px 40px rgba(235, 183, 72, 0.18);
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-card .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(247, 249, 250, 0.3);
  transition: transform 0.4s ease;
}

.profile-card:hover .avatar {
  transform: rotate(-8deg) scale(1.1);
}

/* ================= STATS CARD ================= */
.stats-card .circle {
  position: relative;
  width: 70px;
  height: 70px;
  margin: auto;
  will-change: transform;
}

.stats-card svg {
  transform: rotate(-90deg);
  width: 70px;
  height: 70px;
}

.stats-card .bg {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 2.8;
}

.stats-card .progress {
  fill: none;
  stroke: url(#grad);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: progressAnim 2.5s ease-out forwards;
  filter: drop-shadow(0 0 6px rgba(255, 77, 77, 0.32));
}

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

.stats-card .percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  color: #ff4d4d;
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeInNum 1.2s ease forwards 0.8s;
}

@keyframes fadeInNum {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.stats-card small {
  display: block;
  color: #6c757d;
  margin-top: 0.5rem;
}

/* ================= FEATURES ================= */
#features {
  background: linear-gradient(180deg, #f8fbff 0, #fff 100%);
  position: relative;
  overflow: hidden;
}

#features::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 150px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 180, 255, 0.15), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

#features h2,
#features p.text-gradient {
  position: relative;
  z-index: 2;
}

#features .feature-box {
  position: relative;
  padding: 40px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.45s ease;
  overflow: hidden;
  will-change: transform, opacity;
}

#features .feature-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #007bff, #00d4ff, #007bff, #00d4ff);
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: spinGradient 8s linear infinite;
  z-index: 0;
}

@keyframes spinGradient {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

#features .feature-box:hover::before {
  opacity: 0.1;
}

#features .feature-box i,
#features .feature-box h5,
#features .feature-box p {
  position: relative;
  z-index: 2;
}

/* Icon Glow */
#features i {
  display: inline-block;
  font-size: 50px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: transform 0.5s ease, filter 0.5s ease;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(0, 180, 255, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(0, 180, 255, 0.7));
    transform: scale(1.06);
  }
}

#features h5 {
  font-weight: 600;
  margin-top: 8px;
  color: #0a2540;
  transition: color 0.3s;
}

#features p {
  color: #666;
  font-size: 15px;
  transition: color 0.3s;
}

/* Hover lift */
#features .feature-box:hover {
  transform: translateY(-12px) rotate3d(1, 1, 0, 4deg) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 180, 255, 0.16);
}

#features .feature-box:hover h5 {
  color: #007bff;
}

#features .feature-box {
  animation: featureFadeUp 1s ease forwards;
  opacity: 0;
}

@keyframes featureFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#features .feature-box:nth-child(1) {
  animation-delay: 0.2s;
}
#features .feature-box:nth-child(2) {
  animation-delay: 0.4s;
}
#features .feature-box:nth-child(3) {
  animation-delay: 0.6s;
}
#features .feature-box:nth-child(4) {
  animation-delay: 0.8s;
}

/* Smooth fade-in on scroll */
#features .feature-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

#features .feature-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* small helpers */
.w-100-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================= DESTINATIONS / SLIDER ================= */
#destinations {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0, #fff 100%);
}

.destination-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.destination-track {
  display: flex;
  gap: 30px;
  transition: transform 1s cubic-bezier(.25, 1, .3, 1);
  will-change: transform;
}

.destination-card {
  position: relative;
  min-width: 300px;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
  transition: all .5s ease;
  flex-shrink: 0;
  cursor: pointer;
  transform-style: preserve-3d;
}

.destination-card:hover {
  transform: translateY(-15px) rotate3d(1, 1, 0, 4deg) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 180, 255, .18);
}

.destination-card img {
  transition: transform .8s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.image-wrapper img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.image-wrapper .shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0));
  transform: skewX(-25deg);
}

.image-wrapper:hover .shine {
  animation: shineMove 1s ease forwards;
}

@keyframes shineMove {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.price-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #00c6d4, #00d4ff);
  color: #ec0707;
  font-weight: 600;
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  opacity: 0;
  animation: bounceIn .9s ease forwards .4s;
}

@keyframes bounceIn {
  0% {
    transform: translateY(-15px) scale(.8);
    opacity: 0;
  }
  60% {
    transform: translateY(5px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.explore {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #3568f3, #69f3e1);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  opacity: 0;
  animation: bounceIn .9s ease forwards .4s;
}

.explore a {
  text-decoration: none;
  color: white;
}

.destination-card .card-body {
  padding: 18px;
  text-align: left;
}

.destination-card h5 {
  font-weight: 600;
  margin-bottom: 6px;
  color: #0a2540;
  transition: color .3s;
}

.destination-card:hover h5 {
  color: #007bff;
}

.destination-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
}

/* slide buttons */
.slide-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #8aece4;
  color: #007bff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0 6px 25px rgba(0, 123, 255, .12);
  cursor: pointer;
  transition: all .4s ease;
  z-index: 10;
}

.slide-btn:hover {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: #fff;
  transform: translateY(-50%) scale(1.12);
}

.slide-btn.prev {
  left: 6px;
}

.slide-btn.next {
  right: 6px;
}

@media (max-width: 768px) {
  .destination-card {
    min-width: 250px;
  }

  .slide-btn.prev {
    left: 5px;
  }

  .slide-btn.next {
    right: 5px;
  }
}

/* ================= PLANE ANIMATION ================= */
.plane-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.plane {
  position: absolute;
  width: 50px;
  filter: drop-shadow(0 0 10px rgba(0, 180, 255, .6));
  animation: flyPlane 8s cubic-bezier(.4, 0, .2, 1) infinite;
  z-index: 5;
  will-change: transform, opacity;
}

@keyframes flyPlane {
  0% {
    top: 75%;
    left: -10%;
    transform: rotate(15deg) scale(.95);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    top: 20%;
    left: 60%;
    transform: rotate(-10deg) scale(1.05);
  }
  70% {
    top: 10%;
    left: 110%;
    transform: rotate(-15deg) scale(.98);
    opacity: 1;
  }
  100% {
    top: 10%;
    left: 110%;
    opacity: 0;
  }
}

.plane::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 5px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 212, 255, .8), transparent);
  filter: blur(2px);
  animation: trailPulse 1s ease-in-out infinite;
}

@keyframes trailPulse {
  0%, 100% {
    opacity: .6;
    width: 80px;
  }
  50% {
    opacity: 1;
    width: 100px;
  }
}

/* ================= CTA ================= */
#cta {
  position: relative;
  overflow: visible;
  z-index: 1;
}

#cta .bg-gradient {
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 40%, #7be7ff 100%);
  background-size: 200% 200%;
  animation: ctaGradient 8s ease infinite;
  box-shadow: 0 20px 60px rgba(3, 85, 155, .18),
              inset 0 -8px 30px rgba(255, 255, 255, .04);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

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

#cta .bg-gradient.entered {
  transform: translateY(0) scale(1);
  opacity: 1;
}

#cta h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: #04203b;
  margin-bottom: .6rem;
}

#cta p {
  color: rgba(4, 32, 59, .85);
  max-width: 720px;
  margin: 0 auto 1.2rem;
}

#cta .btn-light {
  background: linear-gradient(135deg, #fff, #f0fbff);
  color: #007bff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(3, 123, 255, .18);
  border: none;
  transition: transform .28s cubic-bezier(.2, .9, .2, 1),
              box-shadow .28s ease,
              filter .28s ease;
  position: relative;
  overflow: hidden;
}

#cta .btn-light:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 45px rgba(3, 123, 255, .28);
  filter: saturate(1.05);
}

#cta .btn-light i {
  transition: transform .28s ease;
}

#cta .btn-light:hover i {
  transform: translateX(6px);
}

/* ================= TESTIMONIALS ================= */
#testimonials {
  background: #f9fbff;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  border: none;
  transition: all .4s ease;
  background: #fff;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, .12);
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e9f5ff;
  margin-top: -60px;
  transition: transform .4s ease;
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.1);
}

.stars i {
  font-size: 1rem;
  margin: 0 2px;
}

#testimonials .btn-light {
  font-size: 14px;
  letter-spacing: .5px;
}

/* ================= ABOUT / STATS ================= */
#about {
  background: #f9fbff;
  overflow: hidden;
}

.about-img-wrapper {
  position: relative;
  display: inline-block;
}

.about-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffb6b6, #ff7b7b);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(60px);
  animation: pulseSoft 6s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes pulseSoft {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.about-img {
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
  will-change: transform;
}

.stats-mini {
  position: absolute;
  bottom: 4%;
  right: -10%;
  background: #92eefa;
  z-index: 5;
  transition: all .4s ease;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.stats-mini:hover {
  transform: scale(1.05);
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 40%;
  border: 2px solid #ebcdcd;
  margin-right: -5px;
}

/* counters (JS-driven) */
.counter {
  font-weight: 700;
  color: #0d6efd;
}

.about-video {
  position: relative;
  z-index: 1;
  width: 150%;
  height: 480px;
  max-width: 480px;
  border-radius: 25px;
  object-fit: cover;
  animation: float 5s ease-in-out infinite, fadeInFloat 1.2s ease forwards;
  box-shadow: 0 12px 40px rgba(0, 150, 255, 0.25);
  filter: drop-shadow(0 10px 30px rgba(0, 180, 255, 0.4));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-video:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 150, 255, 0.35);
}

/* ================= CONTACT SECTION ================= */
#contact {
  background: linear-gradient(180deg, #f8fbff 0, #fff 100%);
  position: relative;
  overflow: hidden;
}

.contact-card {
  background: #fff;
  border: none;
  transition: all .4s ease;
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 123, 255, .12), rgba(0, 212, 255, .12));
  z-index: 0;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 123, 255, .12);
}

#contact .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 18px;
  transition: all .3s ease;
  font-size: 15px;
}

#contact .form-control:focus {
  border-color: #00b4ff;
  box-shadow: 0 0 10px rgba(0, 180, 255, .16);
}

#contact .form-label {
  font-weight: 500;
  color: #0a2540;
}

#contact .btn-gradient {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border: none;
  color: #fff;
  transition: all .4s ease;
}

#contact .btn-gradient:hover {
  background: linear-gradient(135deg, #00d4ff, #007bff);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 180, 255, .14);
}

/* floating circles */
#contact::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 180, 255, .2), transparent);
  border-radius: 50%;
  animation: floatUpDown 6s ease-in-out infinite;
}

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

/* ================= FOOTER ================= */
footer {
  background: transparent;
}

footer ul li {
  transition: color .3s ease;
}

footer ul li:hover {
  color: #007bff;
  cursor: pointer;
}

footer .small {
  color: #6c757d;
}

/* ================= UTILITIES / SELECT / MISC ================= */
.styled-select {
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 8px 16px;
  width: 200px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.svg#chevron-down');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  transition: all .3s ease;
  box-shadow: none;
}

.styled-select:hover {
  border-color: #0d6efd;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(13, 110, 253, .12);
}

.styled-select:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 8px rgba(13, 110, 253, .14);
}

select::-ms-expand {
  display: none;
}

/* small helpers */
.text-muted {
  color: #6c757d;
}

.bg-white {
  background: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  #hero {
    padding: 110px 0 70px;
  }
  .hero-bg {
    width: 360px;
    height: 360px;
  }
  .destination-track {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 90px 0 60px;
  }
  .profile-card,
  .stats-card,
  .hero-bg {
    display: none;
  }
  .destination-card {
    min-width: 250px;
  }
  .contact-card {
    padding: 20px;
  }
}

/* ================= TRAVEL ANIMATIONS ================= */
.sky-plane {
  position: fixed;
  top: 30%;
  left: -120px;
  width: 80px;
  height: 80px;
  background: url("../assets/plane-icon1.png") no-repeat center/contain;
  z-index: 3000;
  animation: flyAcross 15s cubic-bezier(.4, 0, .2, 1) infinite;
  filter: drop-shadow(0 0 15px rgba(0, 180, 255, 0.6));
  pointer-events: none;
}

@keyframes flyAcross {
  0% {
    transform: translateX(0) translateY(0) rotate(10deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(60vw) translateY(-10vh) rotate(-5deg);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(110vw) translateY(-20vh) rotate(-15deg);
    opacity: 0;
  }
}

/* Moving Bus */
.road-bus {
  position: fixed;
  bottom: 30px;
  left: -200px;
  width: 150px;
  height: 80px;
  background: url("../assets/bus1.png") no-repeat center/contain;
  z-index: 2000;
  animation: driveBus 18s linear infinite;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.25));
  pointer-events: none;
  transform: scaleX(-1);
}

@keyframes driveBus {
  0% {
    transform: translateX(-200px) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    transform: translateX(60vw) rotate(-1deg);
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(110vw) rotate(1deg);
    opacity: 0;
  }
}

/* =====================================================
   🌍 TRAVEL XPLORER RESPONSIVE STYLES
   Makes every section adaptive for all screen sizes
   ===================================================== */

/* =============== GLOBAL =============== */
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* =============== NAVBAR =============== */
@media (max-width: 992px) {
  .navbar {
    padding: 10px 20px;
    backdrop-filter: blur(10px);
  }
  .navbar-brand img {
    width: 120px;
  }
  .navbar-nav {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
  }
}

/* =============== HERO SECTION =============== */
@media (max-width: 1200px) {
  #hero {
    padding: 120px 0 80px;
  }
  .hero-video {
    max-width: 500px;
    height: 320px;
  }
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
    padding: 100px 0 60px;
  }
  .hero-video {
    width: 90%;
    height: 300px;
  }
  .hero-bg {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 80px 0 50px;
  }
  .hero-bg,
  .profile-card,
  .stats-card {
    display: none;
  }
  .hero-video {
    width: 100%;
    max-width: 420px;
    height: 250px;
  }
}

@media (max-width: 576px) {
  .hero-video {
    max-width: 95%;
    height: 220px;
  }
}

/* =============== FEATURES SECTION =============== */
@media (max-width: 1200px) {
  #features .feature-box {
    padding: 30px 20px;
  }
}

@media (max-width: 992px) {
  #features .feature-box {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  #features .feature-box {
    padding: 25px 16px;
    text-align: center;
  }
  #features i {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  #features .feature-box {
    padding: 20px 12px;
  }
}

/* =============== DESTINATIONS SECTION =============== */
@media (max-width: 1200px) {
  .destination-card {
    min-width: 280px;
  }
}

@media (max-width: 992px) {
  .destination-card {
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .destination-card {
    min-width: 220px;
  }
  .slide-btn {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .destination-card {
    min-width: 180px;
  }
  .slide-btn {
    display: none;
  }
}

/* =============== ABOUT / STATS SECTION =============== */
@media (max-width: 1200px) {
  .about-video {
    width: 100%;
    max-width: 420px;
    height: 360px;
  }
}

@media (max-width: 992px) {
  #about {
    text-align: center;
    padding: 80px 0;
  }
  .about-video {
    width: 80%;
    height: 320px;
  }
  .stats-mini {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .about-video {
    width: 100%;
    height: 260px;
  }
  .stats-mini {
    display: none;
  }
}

/* =============== CTA SECTION =============== */
@media (max-width: 992px) {
  #cta .bg-gradient {
    padding: 30px 20px;
  }
  #cta h2 {
    font-size: 1.8rem;
  }
  #cta p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  #cta h2 {
    font-size: 1.4rem;
  }
  #cta p {
    font-size: 0.9rem;
  }
}

/* =============== TESTIMONIALS SECTION =============== */
@media (max-width: 992px) {
  .testimonial-card {
    margin-bottom: 30px;
  }
  .testimonial-img {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-img {
    width: 60px;
    height: 60px;
  }
}

/* =============== CONTACT SECTION =============== */
@media (max-width: 1200px) {
  .contact-card {
    padding: 30px;
  }
}

@media (max-width: 992px) {
  #contact form {
    width: 90%;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .contact-card {
    padding: 20px 16px;
  }
  #contact .form-control {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #contact .btn-gradient {
    width: 100%;
    font-size: 14px;
  }
}

/* =============== FOOTER SECTION =============== */
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  footer ul {
    padding: 0;
  }
  footer ul li {
    display: inline-block;
    margin: 0 8px;
  }
}

/* =============== ANIMATIONS / PLANES / BUS =============== */
@media (max-width: 992px) {
  .sky-plane {
    display: none;
  }
  .road-bus {
    display: none;
  }
}




