/* ==========================================
   VARSHI TOURS & TRAVELS — Global Styles
   Palette: Vibrant Saffron-Coral + Deep Navy + Gold
   ========================================== */

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

:root {
  --primary:       #FF7A59;   /* soft coral */
  --primary-light: #FF9478;
  --secondary:     #FFF3EA;   /* light peach surface */
  --dark:          #4A443D;   /* warm charcoal-brown (no more navy) */
  --dark-mid:      #5C554C;
  --accent:        #FFC857;   /* soft golden yellow */
  --teal:          #5EC8D8;   /* soft sky teal */
  --teal-light:    #E8F7F9;
  --bg:            #FFFBF7;   /* warm off-white */
  --text:          #3A3530;
  --text-light:    #8A8079;
  --white:         #FFFFFF;
  --shadow:        0 4px 24px rgba(74,68,61,0.08);
  --shadow-lg:     0 12px 48px rgba(15,23,42,0.18);
  --shadow-color:  0 8px 32px rgba(255,90,31,0.25);
  --radius:        16px;
  --radius-lg:     24px;
  --nav-h:         150px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; padding: 0 5%;
  background: rgba(255,251,247,0.7);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,251,247,0.96);
  box-shadow: 0 2px 24px rgba(74,68,61,0.1);
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--dark);
}
.nav__logo-icon {
  width: 38px; height: 38px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-icon svg { width: 20px; height: 20px; color: var(--dark); }

.nav__links {
  display: flex; align-items: center; gap: 36px;
  margin-left: auto; list-style: none;
}
.nav__links a {
  color: var(--text); font-size: 0.93rem; font-weight: 500;
  position: relative; transition: color 0.2s;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta {
  margin-left: 20px; padding: 10px 22px;
  background: var(--primary); color: var(--white) !important;
  border-radius: 50px; font-weight: 600; font-size: 0.88rem;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 16px rgba(255,122,89,0.35);
}
.nav__cta:hover { background: var(--primary-light) !important; transform: translateY(-2px); }
.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto; padding: 6px;
  background: none; border: none; outline: none;
  -webkit-appearance: none; appearance: none;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all 0.3s var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #FFFBF7; padding: 20px 5% 28px; z-index: 999;
  box-shadow: 0 12px 24px rgba(74,68,61,0.1);
  transform: translateY(-110%); opacity: 0;
  transition: all 0.35s var(--ease); pointer-events: none;
}
.nav__mobile.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav__mobile ul li a {
  color: var(--text); font-size: 1.05rem; font-weight: 500;
  display: block; padding: 12px 0;
  border-bottom: 1px solid rgba(74,68,61,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.nav__mobile ul li a:hover { color: var(--primary); padding-left: 6px; }

/* ==========================================
   IMAGE CONTAINERS
   ========================================== */
.img-cover {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Fallback gradient for broken images */
.img-wrap {
  width: 100%; height: 100%; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}
.img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.97rem; font-weight: 600; cursor: pointer;
  border: none; font-family: 'Inter', sans-serif;
  transition: all 0.25s var(--ease); white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 16px rgba(255,90,31,0.35); }
.btn--primary:hover { background: var(--primary-light); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,90,31,0.45); }
.btn--outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); }
.btn--whatsapp { background: #25D366; color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--dark-mid); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--teal { background: var(--teal); color: var(--white); box-shadow: 0 4px 16px rgba(14,165,233,0.3); }
.btn--teal:hover { background: #0284C7; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(14,165,233,0.45); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================
   SECTION BASE
   ========================================== */
.section { padding: 100px 5%; }
.section__header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section__tag {
  display: inline-block;
  background: var(--teal-light); color: var(--teal);
  padding: 5px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.section__title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section__subtitle { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
  background: linear-gradient(160deg, #FFF8F0 0%, #FFEEDC 35%, #FFE3CB 65%, #FFF0E0 100%);
}

.hero__route-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero__route-path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.45;
}
.hero__route-pin { transform-box: fill-box; transform-origin: center bottom; }
.hero__route-pin text { font-family: 'Inter', sans-serif; }
.hero__route-pin__ping {
  transform-box: fill-box;
  transform-origin: center;
  animation: pinPing 2.4s ease-out infinite;
}
@keyframes pinPing {
  0%   { transform: scale(0.6); opacity: 0.7; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero__route-blob {
  position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0;
  animation: blobDrift 14s ease-in-out infinite alternate;
}
.hero__route-blob--2 { animation-duration: 18s; animation-direction: alternate-reverse; }
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -25px) scale(1.12); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero__route-blob--1 { width: 420px; height: 420px; top: -120px; right: -100px; background: rgba(255,200,87,0.35); }
.hero__route-blob--2 { width: 360px; height: 360px; bottom: -140px; left: -80px; background: rgba(94,200,216,0.25); }

.hero__content {
  position: relative; z-index: 5;
  width: 100%; max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__headline {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero__headline .word { display: inline-block; overflow: hidden; margin-right: 0.18em; }
.hero__headline .word-inner { display: inline-block; transform: translateY(110%); }
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  opacity: 0; transform: translateY(20px);
}
.hero__ctas {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
}

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-light); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero__scroll-arrow {
  width: 16px; height: 16px;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================
   WHY VARSHI
   ========================================== */
.why-varshi { background: var(--dark); }
.why-varshi .section__tag { background: rgba(245,158,11,0.15); color: var(--accent); }
.why-varshi .section__title { color: var(--white); }
.why-varshi .section__subtitle { color: rgba(255,255,255,0.52); }

.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px; max-width: 1200px; margin: 0 auto;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 36px 26px; text-align: center;
  opacity: 0; transform: translateY(40px);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,90,31,0.4);
  box-shadow: 0 16px 48px rgba(255,90,31,0.15);
  transform: translateY(-8px) !important;
}
.feature-card__icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(255,90,31,0.3);
}
.feature-card__icon svg { width: 36px; height: 36px; color: var(--white); }
.feature-card__title { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.feature-card__desc { font-size: 0.88rem; color: rgba(255,255,255,0.48); line-height: 1.65; }

/* ==========================================
   STATS
   ========================================== */
.stats {
  background: linear-gradient(135deg, #FFF4EE 0%, #FFFBF5 100%);
  position: relative; overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,90,31,0.06) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(14,165,233,0.06) 0%, transparent 60%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; max-width: 960px; margin: 0 auto;
  text-align: center; position: relative;
}
.stat-item__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 8px;
}
.stat-item__label { font-size: 0.92rem; color: var(--text-light); font-weight: 500; }

/* ==========================================
   DESTINATIONS HORIZONTAL SCROLL
   ========================================== */
.destinations-section { overflow: hidden; background: var(--bg); }
.destinations-inner { padding-top: 100px; }
.destinations-header { padding: 0 5% 48px; text-align: center; }
.destinations-track {
  display: flex; gap: 28px; padding: 0 5% 80px; width: max-content;
}
.destination-card {
  width: 340px; flex-shrink: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--white);
  opacity: 0; transform: translateY(30px);
  transition: box-shadow 0.3s, transform 0.3s;
}
.destination-card:hover {
  box-shadow: 0 20px 60px rgba(15,23,42,0.18);
  transform: translateY(-6px) !important;
}
.destination-card__img { height: 220px; position: relative; overflow: hidden; }
.destination-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.destination-card:hover .destination-card__img img { transform: scale(1.07); }

.destination-card__badge {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.73rem; font-weight: 700;
}
.badge--hill    { background: #DCFCE7; color: #166534; }
.badge--pilgrim { background: #FEF9C3; color: #854D0E; }
.badge--nature  { background: #E0F2FE; color: #0369A1; }
.badge--heritage{ background: #FEE2E2; color: #991B1B; }
.badge--beach   { background: #DBEAFE; color: #1D40AE; }

.destination-card__body { padding: 24px; }
.destination-card__title { font-size: 1.25rem; margin-bottom: 6px; }
.destination-card__tagline { font-size: 0.86rem; color: var(--text-light); margin-bottom: 14px; }
.destination-card__tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.tag-pill {
  background: var(--teal-light); color: #0369A1;
  padding: 4px 11px; border-radius: 50px; font-size: 0.72rem; font-weight: 600;
}
.destination-card__cta a {
  font-size: 0.88rem; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s;
}
.destination-card__cta a:hover { gap: 10px; }
.destination-card__cta svg { width: 16px; height: 16px; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials { background: var(--bg); overflow: visible; }
.testimonials-slider { position: relative; max-width: 740px; margin: 0 auto; overflow: hidden; width: 100%; }
.testimonials-track { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; }
.testimonial-card { min-width: 100%; width: 100%; flex-shrink: 0; padding: 0 16px; text-align: center; box-sizing: border-box; }
.testimonial-card__stars { color: var(--accent); font-size: 1.3rem; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-card__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--dark); line-height: 1.7; margin-bottom: 28px; font-style: italic;
}
.testimonial-card__author { font-weight: 700; font-size: 0.97rem; }
.testimonial-card__city { font-size: 0.83rem; color: var(--text-light); margin-top: 4px; }
.testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testimonials-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #CBD5E1; cursor: pointer; transition: all 0.3s ease; border: none; outline: none;
}
.testimonials-dot.active { background: var(--primary); transform: scale(1.4); width: 24px; border-radius: 4px; }

/* ==========================================
   PHOTO MARQUEE
   ========================================== */
.photo-marquee { background: var(--dark); padding: 72px 0; overflow: hidden; }
.photo-marquee__title {
  text-align: center; color: var(--white);
  margin-bottom: 40px; font-size: clamp(1.6rem, 3vw, 2.2rem); padding: 0 5%;
}
.marquee-row { display: flex; gap: 20px; margin-bottom: 20px; overflow: hidden; }
.marquee-row:last-child { margin-bottom: 0; }
.marquee-strip { display: flex; gap: 20px; flex-shrink: 0; }
.marquee-row--left  .marquee-strip { animation: marqueeLeft  32s linear infinite; }
.marquee-row--right .marquee-strip { animation: marqueeRight 28s linear infinite; }
.marquee-row:hover .marquee-strip { animation-play-state: paused; }
@keyframes marqueeLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-item {
  width: 240px; height: 160px; border-radius: 14px; overflow: hidden; flex-shrink: 0;
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works { background: var(--secondary); }
.hiw-steps {
  display: flex; align-items: flex-start; justify-content: center;
  position: relative; max-width: 860px; margin: 0 auto;
}
.hiw-connector { position: absolute; top: 50px; left: 16%; width: 68%; z-index: 0; }
.hiw-connector-line { stroke: var(--primary); stroke-dasharray: 900; stroke-dashoffset: 900; }
.hiw-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px; position: relative; z-index: 1;
  opacity: 0; transform: translateY(30px);
}
.hiw-step__num {
  position: absolute; top: -8px; left: calc(50% + 26px);
  width: 22px; height: 22px; background: var(--accent); border-radius: 50%;
  font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  color: var(--dark);
}
.hiw-step__icon {
  width: 100px; height: 100px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(255,90,31,0.2);
  border: 3px solid var(--primary); transition: all 0.3s var(--ease);
}
.hiw-step:hover .hiw-step__icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(255,90,31,0.35);
}
.hiw-step__icon svg { width: 44px; height: 44px; color: var(--primary); transition: color 0.3s; }
.hiw-step:hover .hiw-step__icon svg { color: var(--white); }
.hiw-step__title { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.hiw-step__desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
  background: linear-gradient(135deg, #FFE0CC 0%, #FFF0DD 50%, #FFF8EE 100%);
  padding: 88px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,122,89,0.18) 0%, transparent 60%);
}
.cta-band__title { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--dark); margin-bottom: 14px; position: relative; }
.cta-band__sub { font-size: 1.05rem; color: var(--text-light); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: var(--dark); color: rgba(255,255,255,0.62); padding: 72px 5% 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; margin-bottom: 48px; }
.footer__brand-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); margin-bottom: 12px; }
.footer__brand-desc { font-size: 0.86rem; line-height: 1.75; margin-bottom: 20px; max-width: 280px; }
.footer__col h4 { font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--white); margin-bottom: 18px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.86rem; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer__links a:hover { color: var(--accent); }
.footer__contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; font-size: 0.86rem; }
.footer__contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.09); margin-bottom: 24px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.32); }

/* ==========================================
   FLOATING WHATSAPP
   ========================================== */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waPulse 2.8s ease-in-out infinite; transition: transform 0.2s ease; cursor: pointer;
}
.wa-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-float svg { width: 32px; height: 32px; color: var(--white); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  background: linear-gradient(135deg, #FFE0CC 0%, #FFF0DD 60%, #FFF8EE 100%);
  padding: 160px 5% 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(58,53,48,0.55) 0%, rgba(58,53,48,0.35) 100%);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 14px; position: relative; text-shadow: 0 2px 16px rgba(0,0,0,0.3); }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 520px; margin: 0 auto; position: relative; text-shadow: 0 1px 8px rgba(0,0,0,0.25); }

/* ==========================================
   PACKAGES PAGE
   ========================================== */
.filter-bar { padding: 44px 5% 0; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  padding: 9px 22px; border: 2px solid #E2E8F0;
  background: transparent; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  color: var(--text-light); transition: all 0.2s var(--ease); font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); border-color: var(--primary); color: var(--white);
  box-shadow: 0 4px 16px rgba(255,90,31,0.3);
}
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto; padding: 48px 5% 80px;
}
.package-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow);
  position: relative; opacity: 0; transform: translateY(40px);
  transition: box-shadow 0.3s, transform 0.3s; transform-style: preserve-3d;
}
.package-card.hidden { display: none; }
.package-card:hover { box-shadow: 0 20px 60px rgba(15,23,42,0.18); transform: translateY(-4px) !important; }
.package-card__img { height: 220px; position: relative; overflow: hidden; }
.package-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .package-card__img img { transform: scale(1.07); }

.price-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(15,23,42,0.88); color: var(--white);
  padding: 8px 14px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
  transform: scale(0.7); opacity: 0; transform-origin: top left;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
.price-badge small { display: block; font-size: 0.65rem; font-weight: 400; opacity: 0.7; line-height: 1.2; }
.package-card:hover .price-badge { transform: scale(1); opacity: 1; }

.package-card__type {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
}
.package-card__body { padding: 24px; }
.package-card__title { font-size: 1.2rem; margin-bottom: 6px; }
.package-card__meta { display: flex; gap: 14px; font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }
.package-card__meta span { display: flex; align-items: center; gap: 4px; }
.package-card__meta svg { width: 13px; height: 13px; }
.package-card__highlights { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.package-card__highlights li { font-size: 0.84rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.package-card__highlights li::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }
.package-card__footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #F1F5F9; padding-top: 16px; }
.package-card__price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--primary); font-weight: 700; }
.package-card__price small { font-family: 'Inter', sans-serif; font-size: 0.73rem; color: var(--text-light); font-weight: 400; }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-story__img { height: 520px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); opacity: 0; transform: translateX(-40px); }
.about-story__img img { width: 100%; height: 100%; object-fit: cover; }
.about-story__content { opacity: 0; transform: translateX(40px); }
.about-story__content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-story__content p { color: var(--text-light); line-height: 1.8; margin-bottom: 14px; font-size: 0.97rem; }

.fleet-section { background: var(--secondary); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.fleet-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s; }
.fleet-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px) !important; }
.fleet-card__img { height: 180px; position: relative; overflow: hidden; }
.fleet-card__img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card__badges { position: absolute; bottom: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.fleet-badge { background: rgba(15,23,42,0.82); color: var(--accent); padding: 4px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; }
.fleet-card__body { padding: 18px 20px; }
.fleet-card__type { font-size: 1.1rem; margin-bottom: 6px; }
.fleet-card__cap { font-size: 0.84rem; color: var(--text-light); }
.fleet-card__features { margin-top: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.fleet-feat { background: var(--teal-light); color: #0369A1; padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }

.team-section { background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; max-width: 900px; margin: 0 auto; }
.team-card { text-align: center; opacity: 0; transform: translateY(30px); }
.team-card__img { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden; border: 4px solid var(--secondary); box-shadow: 0 4px 20px rgba(255,90,31,0.15); }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-size: 1.05rem; margin-bottom: 5px; }
.team-card__role { font-size: 0.83rem; color: var(--text-light); }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-info__title { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 14px; }
.contact-info__desc { color: var(--text-light); line-height: 1.75; margin-bottom: 32px; font-size: 0.97rem; }
.contact-info__items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__item-icon { width: 44px; height: 44px; background: var(--secondary); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__item-icon svg { width: 19px; height: 19px; color: var(--primary); }
.contact-info__item-label { font-size: 0.76rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-info__item-value { font-size: 0.94rem; color: var(--text); font-weight: 500; }

.wa-cta-btn { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: var(--white); padding: 16px 28px; border-radius: 50px; font-size: 1rem; font-weight: 600; transition: all 0.25s var(--ease); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.wa-cta-btn:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }
.wa-cta-btn svg { width: 22px; height: 22px; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); opacity: 0; transform: translateY(30px); }
.contact-form h3 { font-size: 1.55rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-light); margin-bottom: 7px; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #E2E8F0; border-radius: 10px;
  font-size: 0.94rem; font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--bg); transition: border-color 0.2s, background 0.2s; outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #EF4444; }
.form-error { color: #EF4444; font-size: 0.76rem; margin-top: 4px; display: none; }
.form-group.has-error .form-error { display: block; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
.form-submit { width: 100%; padding: 14px; background: var(--primary); color: var(--white); border: none; border-radius: 50px; font-size: 0.97rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.25s var(--ease); margin-top: 8px; box-shadow: 0 4px 16px rgba(255,90,31,0.3); }
.form-submit:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,90,31,0.4); }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success__icon { width: 64px; height: 64px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success__icon svg { width: 32px; height: 32px; color: #22C55E; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--text-light); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-story__img { height: 320px; transform: none !important; }
  .about-story__content { transform: none !important; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { transform: none !important; }
}
@media (max-width: 768px) {
  :root { --nav-h: 100px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: block; }
  .section { padding: 72px 5%; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hiw-steps { flex-direction: column; align-items: center; gap: 28px; }
  .hiw-connector { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .destination-card { width: 280px; }
  .cta-band__btns { flex-direction: column; align-items: center; }
  .packages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 28px; height: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
body.loading { overflow: hidden; }

.loader {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(150deg, #2D2118 0%, #4A2E18 55%, #6B4423 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}

.loader__logo {
  width: clamp(180px, 28vw, 260px);
  height: auto;
  animation: loaderLogoIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
  filter: drop-shadow(0 0 36px rgba(255,200,87,0.4)) drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

.loader__divider {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 22px auto 18px;
  animation: loaderLineExpand 0.7s ease 0.85s forwards;
}

.loader__tagline {
  color: rgba(255,243,225,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0;
  animation: loaderFadeUp 0.5s ease 1.1s forwards;
}

.loader__bar {
  width: clamp(160px, 22vw, 220px);
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin: 32px auto 0;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeUp 0.3s ease 0.5s forwards;
}

.loader__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  animation: loaderProgress 1.9s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards;
}

@keyframes loaderLogoIn {
  from { opacity: 0; transform: scale(0.55) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderLineExpand {
  to { width: clamp(160px, 22vw, 220px); }
}
@keyframes loaderProgress {
  to { width: 100%; }
}

/* ==========================================
   NAV LOGO IMAGE
   ========================================== */
.nav__logo {
  background: none;
  border: none;
  backdrop-filter: none;
  padding: 0;
  gap: 0;
  font-size: 0;
  text-shadow: none !important;
  transition: transform 0.2s ease !important;
}
.nav__logo:hover {
  transform: scale(1.04);
}
.nav__logo-img {
  height: 140px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .nav__logo-img { height: 90px; }
}

/* ==========================================
   DROPDOWN NAV
   ========================================== */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: -12px;
  background: #FFFBF7; border: 1px solid rgba(74,68,61,0.08);
  border-radius: 0 0 14px 14px; padding: 14px 0 8px; min-width: 220px;
  box-shadow: 0 12px 36px rgba(74,68,61,0.15); z-index: 100;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 10px 20px;
  font-size: 0.88rem; color: var(--text);
  transition: color 0.15s, padding-left 0.15s;
}
.dropdown-menu li a::after { display: none !important; }
.dropdown-menu li a:hover { color: var(--primary); padding-left: 24px; }

/* ==========================================
   SERVICE CARDS (Homepage)
   ========================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow); border: 2px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px); border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(255,90,31,0.15);
}
.service-card__icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon svg { width: 28px; height: 28px; color: var(--white); }
.service-card__title { font-size: 1.1rem; margin-bottom: 8px; }
.service-card__desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.service-card__link {
  font-size: 0.85rem; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s;
}
.service-card__link:hover { gap: 8px; }

/* ==========================================
   CONTENT PAGE LAYOUT
   ========================================== */
.content-page { max-width: 900px; margin: 0 auto; }
.content-page h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 40px 0 16px; }
.content-page p { color: var(--text-light); line-height: 1.85; margin-bottom: 16px; font-size: 0.97rem; }
.content-page ul { color: var(--text-light); line-height: 1.85; margin-bottom: 16px; padding-left: 0; list-style: none; }
.content-page ul li { padding: 4px 0; display: flex; align-items: baseline; gap: 8px; font-size: 0.95rem; }
.content-page ul li::before { content: '·'; color: var(--primary); font-weight: 900; font-size: 1.4rem; flex-shrink: 0; }
.content-page .lead { font-size: 1.1rem; color: var(--text); font-weight: 500; line-height: 1.75; }

/* Route highlight box */
.route-box {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  display: flex; flex-wrap: wrap; gap: 24px; margin: 28px 0;
}
.route-box__item { flex: 1; min-width: 120px; text-align: center; }
.route-box__value {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  color: var(--primary); font-weight: 700; margin-bottom: 4px;
}
.route-box__label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }

/* Service tags */
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.service-tags span {
  background: var(--teal-light); color: #0369A1; padding: 6px 14px;
  border-radius: 50px; font-size: 0.82rem; font-weight: 600;
}

/* CTA inline */
.cta-inline {
  background: var(--secondary); border-radius: var(--radius);
  padding: 28px; text-align: center; margin: 32px 0;
}
.cta-inline p { color: var(--text); font-weight: 500; margin-bottom: 16px; }

/* Tap-to-call */
.tap-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(15,23,42,0.3);
}
.tap-call:hover { background: var(--dark-mid); transform: translateY(-2px); }
.tap-call svg { width: 20px; height: 20px; }

/* Why-us — light airy cards */
.why-section {
  background: linear-gradient(135deg, #FFFBF7 0%, #FFF3EA 100%);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,122,89,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(94,200,216,0.06) 0%, transparent 55%);
}

.why-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
  position: relative;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(74,68,61,0.07);
  border-radius: 20px;
  padding: 36px 28px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
}
.why-card:hover {
  border-color: rgba(255,122,89,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,122,89,0.14);
}

.why-card__num {
  position: absolute; top: 16px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  background: linear-gradient(180deg, rgba(74,68,61,0.07), rgba(74,68,61,0.015));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
}

.why-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255,122,89,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover .why-card__icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 12px 32px rgba(255,122,89,0.45);
}
.why-card__icon svg { width: 26px; height: 26px; color: var(--white); }

.why-card__title {
  font-size: 1.15rem; color: var(--dark);
  margin-bottom: 10px; font-weight: 700;
}

.why-card__desc {
  font-size: 0.86rem; color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .why-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .why-cards { grid-template-columns: 1fr; }
  .why-card { padding: 28px 22px; }
  .why-card__num { font-size: 2.5rem; }
}

/* Popular routes grid */
.routes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.route-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--white); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.route-card__img { width: 80px; height: 80px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.route-card__img img { width: 100%; height: 100%; object-fit: cover; }
.route-card__name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.route-card__info { font-size: 0.8rem; color: var(--text-light); }

/* Content page responsive */
@media (max-width: 768px) {
  .route-box { flex-direction: column; gap: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}
