/* =========================================================
   MARVEL — Landing page animations & extras
   Layers on top of styles.css
   ========================================================= */

/* ===========================================================
   1. PAGE LOADER — full-screen, logo sizes correctly everywhere
   =========================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #f0f1f2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  position: relative;
  text-align: center;
  /* width caps via vw + max-width so it scales naturally on every screen */
  width: min(60vw, 240px);
  max-width: 100%;
}

.loader-word {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--red);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

/* Image inside the loader — responsive, never overflows */
.loader-logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;     /* desktop cap */
  max-height: 120px;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.loader-line {
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lighter-blue), transparent);
  margin: 14px auto 0;
  border-radius: 2px;
  animation: loaderLine 1.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.04); }
}
@keyframes loaderLine {
  0%   { width: 0;    opacity: 0; }
  50%  { width: 80%;  opacity: 1; }
  100% { width: 100%; opacity: 0; }
}

/* ===========================================================
   2. NAVBAR — scrolled state
   =========================================================== */
.navbar {
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(34, 40, 49, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.navbar.scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }

/* ===========================================================
   3. HERO ANIMATED BACKGROUND
   =========================================================== */
.hero-landing {
  position: relative;
  isolation: isolate;
}
.hero-anim-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-landing::before,
.hero-landing::after { display: none; }

.anim-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.anim-orb.orb-a {
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  background: var(--grad);
  opacity: 0.18;
  animation: orbDrift 16s ease-in-out infinite;
}
.anim-orb.orb-b {
  bottom: -150px; left: -100px;
  width: 340px; height: 340px;
  background: var(--lighter-blue);
  opacity: 0.18;
  animation: orbDrift 18s ease-in-out infinite reverse;
}
.anim-orb.orb-c {
  top: 30%; left: 35%;
  width: 280px; height: 280px;
  background: var(--red);
  opacity: 0.08;
  animation: orbDrift 22s ease-in-out infinite;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(28px, -28px) scale(1.08); }
}

.drift-car {
  position: absolute;
  color: var(--primary-blue);
  opacity: 0.06;
  pointer-events: none;
}
.drift-car.dc-1 {
  top: 25%; left: -10%;
  font-size: 3.6rem;
  animation: driftAcross 24s linear infinite;
}
.drift-car.dc-2 {
  top: 72%; left: -12%;
  font-size: 3rem;
  animation: driftAcross 28s linear infinite;
  animation-delay: 10s;
}
@keyframes driftAcross {
  0%   { transform: translateX(0) translateY(0); }
  50%  { transform: translateX(60vw) translateY(-10px); }
  100% { transform: translateX(120vw) translateY(0); }
}

.hero-road-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
  pointer-events: none;
}
.lane-dashes rect { animation: laneRush 1.4s linear infinite; }
.lane-dashes rect:nth-child(1) { animation-delay: 0s;    }
.lane-dashes rect:nth-child(2) { animation-delay: 0.35s; }
.lane-dashes rect:nth-child(3) { animation-delay: 0.7s;  }
.lane-dashes rect:nth-child(4) { animation-delay: 1.05s; }
@keyframes laneRush {
  0%   { transform: translateY(-80px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.8; }
  100% { transform: translateY(80px);  opacity: 0; }
}

.hero-landing .container { position: relative; z-index: 1; }

/* ===========================================================
   4. REVEAL ANIMATIONS
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.word-stagger {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordRise 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.word-stagger:nth-child(1) { animation-delay: 0.4s;  }
.word-stagger:nth-child(2) { animation-delay: 0.55s; }
.word-stagger:nth-child(3) { animation-delay: 0.7s;  }
@keyframes wordRise {
  to { opacity: 1; transform: translateY(0); }
}

.typewriter-text {
  display: inline-block;
  background: linear-gradient(90deg, #1F9ED8 0%, #4BB5E8 25%, #1F9ED8 50%, #4BB5E8 75%, #1F9ED8 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.star-flicker {
  display: inline-block;
  color: var(--red);
  margin-left: 2px;
  animation: starPulse 2.4s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { transform: scale(1) rotate(0deg);    opacity: 1; }
  50%      { transform: scale(1.15) rotate(-3deg); opacity: 0.85; }
}

/* ===========================================================
   5. HERO IMAGE CAROUSEL
   =========================================================== */
.hero-visual { transition: transform 0.4s ease; }
.hero-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-card:hover { box-shadow: 0 24px 60px rgba(10, 38, 56, 0.25); }

.hero-slider {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-foot { transition: opacity 0.2s ease; }
.hero-card-foot.updating { opacity: 0.3; }

.slider-dots {
  position: absolute;
  bottom: 84px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}
.dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--white);
  border-color: var(--white);
}
.dot:hover { background: var(--white); }

.hero-card > img { display: none; }

/* ===========================================================
   6. FLOATING BADGE + DECORATIVE TAG
   =========================================================== */
.bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: translateY(20px) scale(0.6); }
  60%  { opacity: 1; transform: translateY(-8px) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.floating-badge { animation: floatBob 4s ease-in-out infinite 2s; }
@keyframes floatBob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -6px; }
}

.floating-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--red);
  color: var(--white);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.35);
  z-index: 3;
  animation: tagPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s both;
}
.floating-tag i {
  font-size: 0.85rem;
  animation: zap 1.4s ease-in-out infinite;
}
.float-tag-tr { top: -16px; right: -8px; }
@keyframes tagPop {
  0%   { opacity: 0; transform: scale(0.4) rotate(-15deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes zap {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.25) rotate(8deg); }
}

/* ===========================================================
   7. BUTTON SHINE
   =========================================================== */
.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}
.btn-shine:hover::after { left: 130%; }

/* ===========================================================
   8. SCROLL CUE
   =========================================================== */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 50px auto 0;
  color: var(--light-gray);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  animation: cuePulse 2.4s ease-in-out infinite;
  transition: color 0.2s ease;
}
.scroll-cue:hover { color: var(--primary-blue); }
.cue-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--primary-blue));
  position: relative;
}
.cue-line::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--primary-blue);
  border-bottom: 1.5px solid var(--primary-blue);
  transform: translateX(-50%) rotate(45deg);
}
@keyframes cuePulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ===========================================================
   9. TRUST MARQUEE
   =========================================================== */
.trust-marquee {
  background: linear-gradient(180deg, var(--white) 0%, rgba(31, 158, 216, 0.04) 100%);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(34, 40, 49, 0.05);
  border-bottom: 1px solid rgba(34, 40, 49, 0.05);
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.trust-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.trust-marquee:hover .trust-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-set {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-text);
  white-space: nowrap;
}
.trust-item i {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(24, 127, 176, 0.08);
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ===========================================================
   10. FLEET CARD HOVERS
   =========================================================== */
.fleet-card img { transition: transform 0.6s ease; }
.fleet-card:hover img { transform: scale(1.07); }
.fleet-card-body { position: relative; z-index: 1; }

.fleet-card { position: relative; }
.fleet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.fleet-card:hover::before { opacity: 1; }

.fleet-card .badge { transition: transform 0.3s ease; }
.fleet-card:hover .badge { transform: translateY(-2px); }

/* ===========================================================
   11. HOW IT WORKS — rotating accent
   =========================================================== */
.step { position: relative; }
.step .step-num {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step .step-num::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 255, 255, 0.35) 90deg, transparent 180deg);
  animation: stepRotate 4s linear infinite;
  z-index: 0;
}
.step:hover .step-num {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(31, 158, 216, 0.45);
}
.step .step-num > * { position: relative; z-index: 1; }
@keyframes stepRotate {
  to { transform: rotate(360deg); }
}

@media (min-width: 850px) {
  .steps { position: relative; }
  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(24, 127, 176, 0.3), rgba(24, 127, 176, 0.3) 6px, transparent 6px, transparent 14px);
    z-index: 0;
  }
}

/* ===========================================================
   12. VEHICLE CATEGORIES — pill tabs + grid
   =========================================================== */
.categories-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(31, 158, 216, 0.02) 0%, var(--white) 100%);
  position: relative;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--white);
  color: var(--dark-text);
  border: 1.5px solid #e5e7eb;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.cat-pill i { font-size: 0.8rem; color: var(--primary-blue); }
.cat-pill:hover {
  border-color: var(--light-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(31, 158, 216, 0.15);
}
.cat-pill.active {
  background: var(--grad);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(31, 158, 216, 0.35);
}
.cat-pill.active i { color: var(--white); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.cat-card {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(34, 40, 49, 0.06);
  box-shadow: 0 4px 14px rgba(34, 40, 49, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              opacity 0.4s ease;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(34, 40, 49, 0.1);
}
.cat-card:hover::before { opacity: 1; }

.cat-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(31, 158, 216, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.cat-card:hover .cat-card-icon {
  background: var(--grad);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}

.cat-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-text);
  margin: 0;
  letter-spacing: -0.3px;
}
.cat-card > p {
  color: var(--light-gray);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.cat-card-foot {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed #e5e7eb;
}
.cat-card-foot span {
  font-size: 0.75rem;
  color: var(--light-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.cat-card-foot strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-blue);
}
.cat-card-foot strong small {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light-gray);
}

.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.2s ease;
}
.cat-card-link:hover {
  gap: 12px;
  color: var(--light-blue);
}

/* Featured ribbon */
.cat-card-featured {
  background: linear-gradient(135deg, #fafdff 0%, #f0f8fd 100%);
  border-color: rgba(31, 158, 216, 0.3);
}
.cat-card-featured::before { opacity: 1; }
.cat-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}

.cat-card.cat-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

/* ===========================================================
   13. DESTINATIONS — image cards bento grid
   =========================================================== */
.destinations-section {
  padding: 80px 0;
  background: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(34, 40, 49, 0.12);
}
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 158, 216, 0) 0%, rgba(31, 158, 216, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease, background 0.4s ease;
  pointer-events: none;
}
.dest-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 40px rgba(34, 40, 49, 0.2);
}
.dest-card:hover::after {
  opacity: 1;
  background: linear-gradient(135deg, rgba(31, 158, 216, 0.15) 0%, rgba(227, 6, 19, 0.1) 100%);
}

.dest-large {
  grid-column: span 2;
}

.dest-content {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: var(--white);
  width: 100%;
}
.dest-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dest-meta i { font-size: 0.7rem; }
.dest-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.dest-large .dest-content h3 { font-size: 1.6rem; }
.dest-content > p {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  max-width: 460px;
}
.dest-stat {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.dest-stat span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.dest-stat i { font-size: 0.72rem; color: var(--lighter-blue); }

/* ===========================================================
   14. SHOWCASE SECTION (split layout)
   =========================================================== */
.showcase-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(31, 158, 216, 0.03) 100%);
}

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

.showcase-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.showcase-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(34, 40, 49, 0.18);
}

.showcase-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(34, 40, 49, 0.15);
  animation: floatBob 4s ease-in-out infinite;
}
.showcase-float-card > i {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.showcase-float-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark-text);
}
.showcase-float-card span {
  display: block;
  font-size: 0.74rem;
  color: var(--light-gray);
}
.sc-card-1 { top: 24px; left: -20px; animation-delay: 0s; }
.sc-card-2 { bottom: 24px; right: -20px; animation-delay: 1.5s; }

.showcase-text h2 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--dark-text);
  margin: 14px 0 16px;
}
.showcase-text > p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--light-gray);
  margin-bottom: 26px;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.showcase-list li > i {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(31, 158, 216, 0.12);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.showcase-list strong {
  display: block;
  font-size: 0.98rem;
  color: var(--dark-text);
  margin-bottom: 2px;
}
.showcase-list span {
  display: block;
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.55;
}

/* ===========================================================
   15. STATS BAND — gradient full-bleed
   =========================================================== */
.stats-band {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2638 0%, #14516e 60%, #187FB0 100%);
  color: var(--white);
  overflow: hidden;
}
.stats-band-bg { position: absolute; inset: 0; pointer-events: none; }
.sb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.sb-orb-1 {
  top: -100px; right: -50px;
  width: 320px; height: 320px;
  background: var(--lighter-blue);
  opacity: 0.25;
  animation: orbDrift 14s ease-in-out infinite;
}
.sb-orb-2 {
  bottom: -120px; left: -80px;
  width: 280px; height: 280px;
  background: var(--red);
  opacity: 0.18;
  animation: orbDrift 18s ease-in-out infinite reverse;
}

.stats-band .container { position: relative; z-index: 1; }
.stats-band-head {
  text-align: center;
  margin-bottom: 50px;
}
.stats-band-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin: 12px 0 0;
}

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

.band-stat {
  text-align: center;
  padding: 26px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.band-stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}
.band-stat-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 14px;
  box-shadow: 0 8px 18px rgba(31, 158, 216, 0.35);
}
.band-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.band-stat span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

/* ===========================================================
   16. REVIEWS SECTION
   =========================================================== */
.reviews-section {
  padding: 80px 0;
  background: var(--white);
}

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

.review-card {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  padding: 32px 26px 26px;
  border: 1px solid rgba(34, 40, 49, 0.06);
  box-shadow: 0 6px 18px rgba(34, 40, 49, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(34, 40, 49, 0.1);
}

.review-quote-mark {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(31, 158, 216, 0.35);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  font-size: 0.92rem;
}

.review-card > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed #e5e7eb;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark-text);
}
.review-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--light-gray);
}

.review-card-featured {
  background: linear-gradient(135deg, #fafdff 0%, #f0f8fd 100%);
  border-color: rgba(31, 158, 216, 0.25);
  box-shadow: 0 10px 28px rgba(31, 158, 216, 0.12);
}
.review-card-featured .review-quote-mark { background: var(--red); }

/* ===========================================================
   17. FAQ ACCORDION
   =========================================================== */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(31, 158, 216, 0.03) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover { border-color: var(--lighter-blue); }
.faq-item[open] {
  border-color: var(--light-blue);
  box-shadow: 0 8px 20px rgba(31, 158, 216, 0.12);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark-text);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.faq-item summary > span > i {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(31, 158, 216, 0.1);
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.faq-item[open] summary > span > i {
  background: var(--grad);
  color: var(--white);
}
.faq-item .chev {
  color: var(--light-gray);
  font-size: 0.85rem;
  transition: transform 0.3s ease, color 0.25s ease;
}
.faq-item[open] .chev {
  transform: rotate(180deg);
  color: var(--primary-blue);
}
.faq-item p {
  margin: 0;
  padding: 0 22px 20px 64px;
  font-size: 0.92rem;
  color: var(--light-gray);
  line-height: 1.65;
}

/* ===========================================================
   18. CTA BANNER
   =========================================================== */
.cta-banner {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(135deg, #0a2638 0%, #14516e 50%, #187FB0 100%);
  color: var(--white);
  overflow: hidden;
}
.cta-banner-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.cta-orb-1 {
  top: -80px; left: -60px;
  width: 280px; height: 280px;
  background: var(--lighter-blue);
  opacity: 0.3;
}
.cta-orb-2 {
  bottom: -100px; right: -60px;
  width: 280px; height: 280px;
  background: var(--red);
  opacity: 0.2;
}
.cta-road {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.6;
  animation: ctaRoadShift 12s ease-in-out infinite;
}
@keyframes ctaRoadShift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-20px); }
}

.cta-banner .container { position: relative; z-index: 1; }
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 30px;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 14px;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 10px;
}
.cta-text > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.cta-actions .btn-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* ===========================================================
   19. FLOATING WHATSAPP FAB
   =========================================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fabBob 3s ease-in-out infinite;
}
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: fabRing 2.4s ease-out infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
  color: var(--white);
}
.fab-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: var(--dark-text);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.fab-tooltip::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 5px 5px 5px 0;
  border-color: transparent var(--dark-text) transparent transparent;
}
.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes fabBob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -4px; }
}
@keyframes fabRing {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===========================================================
   20. REDUCED MOTION
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  .anim-orb, .drift-car, .lane-dashes rect,
  .typewriter-text, .star-flicker, .scroll-cue,
  .floating-badge, .fab-whatsapp, .fab-whatsapp::before,
  .step .step-num::after, .trust-track, .loader-word, .loader-line,
  .floating-tag, .floating-tag i,
  .showcase-float-card, .sb-orb, .cta-road, .cta-orb {
    animation: none !important;
  }
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  .word-stagger { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-card:hover { transform: none !important; }
}

/* ===========================================================
   21. RESPONSIVE — tablet + mobile
   =========================================================== */
@media (max-width: 1100px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-large { grid-column: span 1; }

  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}

@media (max-width: 950px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-img-wrap img { height: 380px; }
  .showcase-text h2 { font-size: 2rem; }
}

@media (max-width: 850px) {
  /* Loader logo on tablets */
  .loader-logo { width: min(55vw, 200px); }
  .loader-logo-img { max-width: 180px; max-height: 100px; }
  .loader-word { font-size: 2.2rem; letter-spacing: 3px; }

  /* Hero background — lighter */
  .anim-orb.orb-c, .drift-car.dc-2 { display: none; }
  .hero-road-svg { opacity: 0.3; }

  .scroll-cue { margin-top: 36px; }
  .slider-dots { bottom: 78px; }

  .floating-tag { font-size: 0.78rem; padding: 8px 14px; }
  .float-tag-tr { top: -12px; right: -4px; }

  .trust-marquee { padding: 18px 0; }
  .trust-item { font-size: 0.85rem; }
  .trust-set { gap: 22px; padding-right: 22px; }

  /* Categories */
  .categories-section { padding: 60px 0; }
  .category-pills { gap: 8px; }
  .cat-pill {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  /* Destinations */
  .destinations-section { padding: 60px 0; }
  .destinations-grid { grid-auto-rows: 200px; }
  .dest-content { padding: 18px; }
  .dest-content h3 { font-size: 1.25rem; }
  .dest-large .dest-content h3 { font-size: 1.4rem; }

  /* Showcase */
  .showcase-section { padding: 60px 0; }
  .sc-card-1 { left: 12px; top: 12px; }
  .sc-card-2 { right: 12px; bottom: 12px; }

  /* Stats band */
  .stats-band { padding: 60px 0; }
  .stats-band-head h2 { font-size: 1.7rem; }
  .band-stat strong { font-size: 1.65rem; }

  /* Reviews */
  .reviews-section { padding: 60px 0; }

  /* FAQ */
  .faq-section { padding: 60px 0; }
  .faq-item summary { padding: 16px 18px; font-size: 0.92rem; }
  .faq-item p { padding: 0 18px 18px 60px; font-size: 0.88rem; }

  /* CTA banner — stack */
  .cta-banner { padding: 50px 0; }
  .cta-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .cta-actions { flex-direction: column; max-width: 360px; margin: 0 auto; }

  .fab-whatsapp {
    width: 52px; height: 52px;
    font-size: 1.5rem;
    bottom: 20px; left: 20px;
  }
  .fab-tooltip { display: none; }
}

@media (max-width: 600px) {
  /* Loader on phones */
  .loader-logo { width: min(50vw, 180px); }
  .loader-logo-img { max-width: 160px; max-height: 88px; }
  .loader-word { font-size: 2rem; }

  .category-grid { grid-template-columns: 1fr; gap: 16px; }
  .destinations-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .dest-large { grid-column: span 1; }
  .dest-content h3,
  .dest-large .dest-content h3 { font-size: 1.25rem; }

  .showcase-img-wrap img { height: 300px; }
  .showcase-float-card { padding: 10px 12px; }
  .showcase-float-card > i { width: 32px; height: 32px; font-size: 0.85rem; }
  .showcase-float-card strong { font-size: 0.8rem; }
  .showcase-float-card span { font-size: 0.68rem; }

  .stats-band-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .band-stat { padding: 20px 14px; }
  .band-stat strong { font-size: 1.4rem; }
  .band-stat-icon { width: 42px; height: 42px; font-size: 1rem; }

  .review-card { padding: 28px 20px 20px; }
  .review-quote-mark { width: 34px; height: 34px; font-size: 0.85rem; left: 18px; }
}

@media (max-width: 480px) {
  /* Loader on very small phones */
  .loader-logo { width: min(45vw, 140px); }
  .loader-logo-img { max-width: 130px; max-height: 70px; }
  .loader-word { font-size: 1.7rem; letter-spacing: 2px; }

  .hero-slider { height: 280px; }
  .slider-dots { bottom: 72px; }
  .dot { width: 7px; height: 7px; }
  .dot.active { width: 24px; }

  .drift-car { display: none; }
  .anim-orb.orb-c { display: none; }

  .scroll-cue { font-size: 0.72rem; margin-top: 28px; }
  .cue-line { height: 28px; }

  .floating-tag { font-size: 0.72rem; padding: 7px 12px; }
  .float-tag-tr {
    top: auto;
    bottom: -14px;
    right: 12px;
  }

  .trust-track { animation-duration: 28s; }
  .trust-set { gap: 18px; padding-right: 18px; }
  .trust-item { font-size: 0.8rem; }
  .trust-item i { width: 24px; height: 24px; font-size: 0.7rem; }

  /* Category pills scroll horizontally on tiny screens */
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    scrollbar-width: none;
  }
  .category-pills::-webkit-scrollbar { display: none; }
  .cat-pill { flex-shrink: 0; }

  .faq-item summary > span > i { width: 26px; height: 26px; font-size: 0.78rem; }
  .faq-item p { padding-left: 56px; }

  .fab-whatsapp {
    width: 48px; height: 48px;
    font-size: 1.35rem;
    bottom: 16px; left: 16px;
  }
}