/* ============================================================
   Travel Box B2B — Premium Redesign
   Luxury B2B travel theme · Glassmorphism · CSS-only animations
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette — deep teal + warm gold accent */
  --c-primary-900: #062e1f;
  --c-primary-800: #0a4a30;
  --c-primary-700: #0f6b42;
  --c-primary-600: #148854;
  --c-primary-500: #1ea66b;
  --c-primary-400: #4dc28e;
  --c-primary-300: #8eddb8;
  --c-primary-200: #c6eed8;
  --c-primary-100: #e8f7f0;

  --c-accent-600: #b8732a;
  --c-accent-500: #d4882e;
  --c-accent-400: #e8a04a;
  --c-accent-300: #f0c070;

  --c-success: #2e9e6b;
  --c-warning: #e0a52e;
  --c-error: #d64545;

  /* Neutrals */
  --n-0: #ffffff;
  --n-50: #f7f9fc;
  --n-100: #eef2f7;
  --n-200: #e0e7ef;
  --n-300: #cbd5e0;
  --n-400: #9aa7b8;
  --n-500: #6b7889;
  --n-600: #4a5568;
  --n-700: #334053;
  --n-800: #1f2a3a;
  --n-900: #111827;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #0f6b42 0%, #1ea66b 50%, #4dc28e 100%);
  --grad-gold: linear-gradient(135deg, #b8732a 0%, #e8a04a 100%);
  --grad-hero: linear-gradient(135deg, #062e1f 0%, #0f6b42 45%, #148854 100%);
  --grad-cta: linear-gradient(135deg, #062e1f 0%, #0f6b42 55%, #148854 100%);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-blur: 16px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(6, 46, 31, 0.08);
  --shadow-sm: 0 2px 8px rgba(6, 46, 31, 0.08);
  --shadow-md: 0 8px 24px rgba(6, 46, 31, 0.10);
  --shadow-lg: 0 16px 48px rgba(6, 46, 31, 0.14);
  --shadow-xl: 0 24px 64px rgba(6, 46, 31, 0.18);
  --shadow-gold: 0 8px 24px rgba(184, 115, 42, 0.30);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Spacing — 8px system */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 2.5rem;
  --sp-6: 3rem;
  --sp-7: 4rem;
  --sp-8: 5rem;
  --sp-9: 6rem;

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --header-h: 76px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--n-700);
  background: var(--n-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--c-primary-900); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-3); }

.section { padding: var(--sp-8) 0; }
.section--tight { padding: var(--sp-6) 0; }

.section__head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-5); }
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent-600);
  margin-bottom: var(--sp-1);
}
.section__eyebrow--light { color: var(--c-accent-300); }
.section__title { font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: var(--sp-2); }
.section__desc { color: var(--n-500); font-size: 1.05rem; }
.section__cta { text-align: center; margin-top: var(--sp-5); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 0.8rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn--gradient {
  background: var(--grad-gold);
  color: var(--n-900);
  box-shadow: var(--shadow-gold);

}
.btn--gradient:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184, 115, 42, 0.45); }

.btn--outline {
  background: transparent;
  color: var(--n-0);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--n-0); transform: translateY(-2px); }

.btn--ghost-light {
  background: transparent;
  color: var(--n-0);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.15); border-color: var(--n-0); }

.btn--light {
  background: var(--n-0);
  color: var(--c-primary-800);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--c-primary-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  position: relative;
  z-index: 100;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar__contact { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar__item a { color: rgba(255, 255, 255, 0.9); transition: color var(--transition); }
.topbar__item a:hover { color: var(--c-accent-400); }
.topbar__icon { width: 14px; height: 14px; opacity: 0.7; flex-shrink: 0; }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand__logo { height: 60px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); transition: transform var(--transition); }
.brand:hover .brand__logo { transform: scale(1.06); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--n-0); }
.brand__tag { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.brand--light .brand__name { color: var(--n-0); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(6, 46, 31, 0.55);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.is-scrolled {
  background: rgba(6, 46, 31, 0.92);
  box-shadow: var(--shadow-md);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: var(--header-h);
}

/* Nav */
.nav__list { display: flex; align-items: center; gap: 0.3rem; }
.nav__link {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 6px;
  width: 0; height: 2px;
  background: var(--c-accent-400);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.is-active { color: var(--n-0); }
.nav__link:hover::after, .nav__link.is-active::after { width: 22px; }

.nav__has-sub { position: relative; }
.nav__has-sub > .nav__link::after { display: none; }
.subnav {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--n-0);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.subnav::before {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--n-0);
}
.subnav li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--n-700);
  border-radius: var(--r-sm);
  transition: background var(--transition), color var(--transition);
}
.subnav li a:hover { background: var(--c-primary-100); color: var(--c-primary-700); }
.nav__has-sub:hover .subnav { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.header__actions { display: flex; align-items: center; gap: 0.6rem; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--n-0);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__close { display: none; font-size: 1.8rem; color: var(--n-0); position: absolute; top: 1rem; right: 1.25rem; line-height: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: var(--sp-6) 0 var(--sp-7);
  overflow: hidden;
}
.hero__slider { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  animation: slideShow 18s ease-in-out infinite;
}
.hero__slide--1 { background-image: url("../images/slide1.jpg"); animation-delay: 0s; }
.hero__slide--2 { background-image: url("../images/slide2.jpg"); animation-delay: 6s; }
.hero__slide--3 { background-image: url("../images/slide3.jpg"); animation-delay: 12s; }
@keyframes slideShow {
  0% { opacity: 0; transform: scale(1.03); }
  6% { opacity: 1; transform: scale(1.03); }
  33% { opacity: 1; transform: scale(1.08); }
  39% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 46, 31, 0.55) 0%, rgba(6, 46, 31, 0.40) 40%, rgba(6, 46, 31, 0.70) 100%);
}
.hero__dots {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}
.hero__dot {
  width: 10px; height: 10px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: dotPulse 18s ease-in-out infinite;
}
.hero__dot:nth-child(1) { animation-delay: 0s; }
.hero__dot:nth-child(2) { animation-delay: 6s; }
.hero__dot:nth-child(3) { animation-delay: 12s; }
@keyframes dotPulse {
  0%, 33%, 100% { background: rgba(255, 255, 255, 0.4); transform: scale(1); }
  6%, 27% { background: var(--c-accent-400); transform: scale(1.4); box-shadow: 0 0 10px rgba(232, 160, 74, 0.6); }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content { color: var(--n-0); }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent-300);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: var(--sp-3);
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--n-0);
  margin-bottom: var(--sp-3);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: var(--sp-3);
}
.hero__highlights { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--sp-3); }
.hero__chip {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--n-0);
  backdrop-filter: blur(8px);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-1); }

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-full);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--n-0);
  border-radius: var(--r-full);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(14px); opacity: 0.3; } }

/* ---------- Booking Section (moved below hero) ---------- */
.booking-section { padding-top: var(--sp-6); background: var(--n-50); }
.booking-section .booking { max-width: 920px; margin: 0 auto; }
.booking {
  background: var(--n-0);
  border: 1px solid var(--n-100);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: var(--shadow-lg);
}
.booking__tabs {
  display: flex;
  gap: 0.3rem;
  margin-bottom: var(--sp-3);
  border-bottom: 1px solid var(--n-200);
  flex-wrap: wrap;
}
.booking__tab {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--n-500);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  transition: color var(--transition), background var(--transition);
}
.booking__tab:hover { color: var(--c-primary-700); }
.booking__tab.is-active {
  color: var(--n-0);
  background: var(--grad-brand);
}
.booking__tab--link { text-decoration: none; }

.booking__form { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--n-600);
}
.field input, .field select {
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--n-200);
  background: var(--n-50);
  color: var(--n-800);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field input::placeholder { color: var(--n-400); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--c-primary-500);
  background: var(--n-0);
  box-shadow: 0 0 0 3px rgba(30, 166, 107, 0.18);
}
.field select option { color: var(--n-800); }
.booking__note { font-size: 0.8rem; color: var(--n-500); text-align: center; margin-top: 0.25rem; }

/* ---------- Feature Cards (Why Choose Us) ---------- */
.features { padding: var(--sp-6) 0;     margin-top: 1.5rem; position: relative; z-index: 5; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.feature-card {
  background: var(--n-0);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--n-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  background: var(--c-primary-100);
  color: var(--c-primary-600);
  margin-bottom: var(--sp-2);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.feature-card__icon svg { width: 30px; height: 30px; }
.feature-card:hover .feature-card__icon { background: var(--grad-gold); color: var(--n-900); transform: scale(1.08); }
.feature-card__title { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.06em; color: var(--c-primary-800); margin-bottom: var(--sp-1); }
.feature-card__text { font-size: 0.92rem; color: var(--n-500); }

/* ---------- Cards Grid ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Package Card ---------- */
.pkg-card {
  background: var(--n-0);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--n-100);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.pkg-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-card:hover .pkg-card__media img { transform: scale(1.1); }
.pkg-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 46, 31, 0.35) 100%);
}
.badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-full);
  background: var(--grad-gold);
  color: var(--n-900);
  box-shadow: var(--shadow-gold);
}
.badge--alt { background: var(--grad-brand); color: var(--n-0); box-shadow: var(--shadow-md); }
.pkg-card__body { padding: var(--sp-2) var(--sp-2) var(--sp-3); display: flex; flex-direction: column; flex: 1; }
.pkg-card__title { font-size: 1.02rem; font-weight: 700; color: var(--c-primary-800); margin-bottom: 0.35rem; line-height: 1.3; }
.pkg-card__title a { transition: color var(--transition); }
.pkg-card__title a:hover { color: var(--c-accent-600); }
.pkg-card__meta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent-600); margin-bottom: 0.5rem; }
.pkg-card__text { font-size: 0.88rem; color: var(--n-500); margin-bottom: var(--sp-2); flex: 1; }
.pkg-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-primary-600);
  transition: color var(--transition), gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.pkg-card__link:hover { color: var(--c-accent-600); gap: 0.55rem; }
.pkg-card__btn { margin-top: auto; align-self: flex-start; }

/* ---------- About ---------- */
.about { background: var(--n-0); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); width: 100%; }
.about__badge {
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  background: var(--n-0);
  border-radius: var(--r-lg);
  padding: var(--sp-2) var(--sp-3);
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.about__badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--c-accent-600); line-height: 1; }
.about__badge-label { font-size: 0.78rem; color: var(--n-500); font-weight: 500; }
.about__content { max-width: 520px; }
.about__text { font-size: 1.05rem; color: var(--n-600); margin-bottom: var(--sp-3); }

/* ---------- Hotel Card ---------- */
.hotels { background: var(--n-50); }
.hotel-card {
  background: var(--n-0);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--n-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hotel-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.hotel-card__media { display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.hotel-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hotel-card:hover .hotel-card__media img { transform: scale(1.1); }
.hotel-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6, 46, 31, 0.3) 100%); }
.hotel-card__body { padding: var(--sp-2) var(--sp-2) var(--sp-3); }
.hotel-card__title { font-size: 1.15rem; margin-bottom: 0.4rem; }
.hotel-card__title a { color: var(--c-primary-800); transition: color var(--transition); }
.hotel-card__title a:hover { color: var(--c-accent-600); }
.hotel-card__rating { display: flex; gap: 2px; margin-bottom: 0.6rem; }
.hotel-card__rating span { width: 16px; height: 16px; color: var(--c-accent-500); }
.hotel-card__rating span::before { content: "★"; font-size: 1rem; }
.hotel-card__link { font-size: 0.88rem; font-weight: 600; color: var(--c-primary-600); transition: color var(--transition); }
.hotel-card__link:hover { color: var(--c-accent-600); }

/* ---------- Services ---------- */
.services { background: var(--n-0); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.service-card {
  background: var(--n-50);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  border: 1px solid var(--n-100);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--n-0); }
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-primary-100);
  color: var(--c-primary-600);
  margin-bottom: var(--sp-2);
  transition: background var(--transition), color var(--transition);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon { background: var(--grad-gold); color: var(--n-900); }
.service-card__title { font-size: 1.1rem; color: var(--c-primary-800); margin-bottom: 0.4rem; }
.service-card__text { font-size: 0.9rem; color: var(--n-500); margin-bottom: var(--sp-2); }
.service-card__link { font-size: 0.88rem; font-weight: 600; color: var(--c-primary-600); transition: color var(--transition); }
.service-card__link:hover { color: var(--c-accent-600); }

/* ---------- Statistics ---------- */
.stats {
  background: var(--grad-hero);
  padding: var(--sp-7) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background: url("https://images.pexels.com/photos/37763608/pexels-photo-37763608.jpeg?auto=compress&cs=tinysrgb&w=1200") center / cover;
  opacity: 0.12;
}
.stats__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.stat { text-align: center; color: var(--n-0); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--n-0);
  line-height: 1;
}
.stat__num sup { font-size: 1.3rem; color: var(--c-accent-400); }
.stat__label { font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); letter-spacing: 0.06em; margin-top: 0.4rem; display: block; }

/* ---------- Partners ---------- */
.partners { background: var(--n-50); padding: var(--sp-6) 0; }
.partners__row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  width: 360px;
  padding: var(--sp-3) var(--sp-2);
  background: var(--n-0);
  border-radius: var(--r-lg);
  border: 1px solid var(--n-100);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition);
}
.partner-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-logo__mark { font-size: 1.5rem; color: var(--c-accent-500); }
.partner-logo__name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--c-primary-800); text-align: center; }
.partner-logo__sub { font-size: 0.75rem; color: var(--n-400); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--n-0); }
.testimonial-card {
  background: var(--n-50);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  border: 1px solid var(--n-100);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card__rating { display: flex; gap: 2px; }
.testimonial-card__rating span { color: var(--c-accent-500); }
.testimonial-card__rating span::before { content: "★"; font-size: 1.1rem; }
.testimonial-card__text { font-size: 0.95rem; color: var(--n-600); font-style: italic; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  background: var(--grad-brand);
  color: var(--n-0);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-card__name { display: block; font-weight: 600; color: var(--c-primary-800); font-size: 0.92rem; }
.testimonial-card__role { display: block; font-size: 0.8rem; color: var(--n-400); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: var(--sp-8) 0;
  overflow: hidden;
  background: url("https://images.pexels.com/photos/6226657/pexels-photo-6226657.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover fixed;
}
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6, 46, 31, 0.88) 0%, rgba(15, 107, 66, 0.78) 100%); }
.cta-banner__inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; color: var(--n-0); }
.cta-banner__title { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--n-0); margin-bottom: var(--sp-2); }
.cta-banner__text { font-size: 1.1rem; color: rgba(255, 255, 255, 0.85); margin-bottom: var(--sp-3); }
.cta-banner__actions { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; }

/* ---------- Newsletter ---------- */
.newsletter { padding: var(--sp-7) 0; background: var(--n-50); }
.newsletter__card {
  background: var(--grad-brand);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.newsletter__card::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232, 160, 74, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.newsletter__content { position: relative; z-index: 2; }
.newsletter__title { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--n-0); margin-bottom: 0.5rem; }
.newsletter__text { color: rgba(255, 255, 255, 0.82); }
.newsletter__form { position: relative; z-index: 2; display: flex; gap: 0.6rem; }
.newsletter__form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--n-0);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.newsletter__form input:focus {
  outline: none;
  border-color: var(--c-accent-400);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 3px rgba(232, 160, 74, 0.25);
}

/* ---------- Footer ---------- */
.footer { background: var(--c-primary-900); color: rgba(255, 255, 255, 0.7); padding-top: var(--sp-7); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1.2fr 1fr 1.2fr; gap: var(--sp-4); padding-bottom: var(--sp-5); }
.footer__col { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__col--brand .brand { margin-bottom: 0.5rem; }
.footer__about { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer__heading { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--n-0); margin-bottom: 0.5rem; }
.footer__address { font-style: normal; font-size: 0.88rem; line-height: 1.7; }
.footer__contact { font-size: 0.88rem; }
.footer__contact a { color: var(--c-accent-300); transition: color var(--transition); }
.footer__contact a:hover { color: var(--n-0); }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); transition: color var(--transition), padding-left var(--transition); }
.footer__links a:hover { color: var(--c-accent-300); padding-left: 4px; }
.footer__bank { font-size: 0.88rem; line-height: 1.7; }

.footer__social { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer__social-link svg { width: 18px; height: 18px; }
.footer__social-link:hover { background: var(--grad-gold); color: var(--n-900); transform: translateY(-3px); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: var(--sp-3) 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-2); flex-wrap: wrap; font-size: 0.84rem; }
.footer__bottom a { color: var(--c-accent-300); }
.footer__bottom a:hover { color: var(--n-0); }

/* ---------- Floating Elements ---------- */
.float-wa {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  background: #25d366;
  color: var(--n-0);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-wa svg { width: 28px; height: 28px; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55); }
@keyframes floatPulse { 0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0); } }

.float-quote {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 80;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-full);
  background: var(--grad-gold);
  color: var(--n-900);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-quote:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(184, 115, 42, 0.5); }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
 padding: 100px 0;
  background: var(--grad-hero);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../images/slide2.jpg") center / cover;
  opacity: 0.18;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--n-0);
  margin-bottom: var(--sp-2);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.breadcrumb a { color: var(--c-accent-300); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--n-0); }
.breadcrumb__sep { opacity: 0.5; }

/* ---------- Prose (about, trekking, adventure text) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; color: var(--c-primary-800); margin: var(--sp-3) 0 var(--sp-2); }
.prose p { font-size: 1.02rem; color: var(--n-600); line-height: 1.75; margin-bottom: var(--sp-2); }
.prose ul { list-style: none; margin: var(--sp-2) 0; }
.prose ul li { padding: 0.5rem 0 0.5rem 1.75rem; position: relative; color: var(--n-600); }
.prose ul li::before { content: "▸"; position: absolute; left: 0; color: var(--c-accent-500); font-weight: 700; }

/* ---------- Info Cards (distances, etc.) ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--sp-2); margin: var(--sp-3) 0; }
.info-card {
  background: var(--n-0);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--n-100);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--c-primary-100);
  color: var(--c-primary-600);
  flex-shrink: 0;
}
.info-card__icon svg { width: 20px; height: 20px; }
.info-card__label { font-size: 0.82rem; color: var(--n-400); display: block; }
.info-card__value { font-size: 0.95rem; font-weight: 600; color: var(--c-primary-800); }

/* ---------- Cab Cards ---------- */
.cabs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.cab-card {
  background: var(--n-0);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--n-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cab-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cab-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--c-primary-100); }
.cab-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cab-card:hover .cab-card__media img { transform: scale(1.08); }
.cab-card__body { padding: var(--sp-2) var(--sp-2) var(--sp-3); }
.cab-card__name { font-size: 1.1rem; color: var(--c-primary-800); margin-bottom: 0.4rem; }
.cab-card__features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: var(--sp-2); }
.cab-card__feature {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-full);
  background: var(--n-100);
  color: var(--n-600);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.cab-card__feature svg { width: 13px; height: 13px; color: var(--c-primary-500); }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-4); }
.contact-info { display: flex; flex-direction: column; gap: var(--sp-2); }
.contact-info__card {
  background: var(--n-0);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  border: 1px solid var(--n-100);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--grad-brand);
  color: var(--n-0);
  flex-shrink: 0;
}
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__label { font-size: 0.78rem; font-weight:600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-primary-800); margin-bottom: 0.2rem; }
.contact-info__value { font-size: 0.95rem; color: var(--n-400); font-weight: 500; line-height: 1.5; }
.contact-info__value a { color: var(--c-accent-600); transition: color var(--transition); }
.contact-info__value a:hover { color: var(--c-primary-800); }

/* ---------- Forms (contact, feedback, quote, hotel) ---------- */
.form-card {
  background: var(--n-0);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--n-100);
}
.form-card__title { font-size: 1.3rem; color: var(--c-primary-800); margin-bottom: var(--sp-2); }
.form-card__desc { font-size: 0.92rem; color: var(--n-500); margin-bottom: var(--sp-3); }
.form-group { margin-bottom: var(--sp-2); }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--n-600);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--n-200);
  background: var(--n-50);
  color: var(--n-800);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-primary-400);
  background: var(--n-0);
  box-shadow: 0 0 0 3px rgba(30, 166, 107, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.form-note { font-size: 0.82rem; color: var(--n-400); margin-top: 0.5rem; }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--n-100); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Adventure Activities Grid ---------- */
.activities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--sp-2); }
.activity-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.2rem;
  background: var(--n-0);
  border-radius: var(--r-md);
  border: 1px solid var(--n-100);
  box-shadow: var(--shadow-xs);
  font-weight: 600;
  color: var(--c-primary-800);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.activity-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--c-primary-100); }
.activity-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--grad-gold);
  color: var(--n-900);
  flex-shrink: 0;
}
.activity-pill__icon svg { width: 18px; height: 18px; }

/* ---------- Trekking Cards ---------- */
.trek-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.trek-card {
  background: var(--n-0);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--n-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trek-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trek-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.trek-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.trek-card:hover .trek-card__media img { transform: scale(1.08); }
.trek-card__body { padding: var(--sp-2) var(--sp-3) var(--sp-3); }
.trek-card__title { font-size: 1.15rem; color: var(--c-primary-800); margin-bottom: 0.4rem; }
.trek-card__text { font-size: 0.9rem; color: var(--n-500); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid, .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .hero { min-height: auto; padding: var(--sp-5) 0 var(--sp-7); }
  .about__inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .about__media { max-width: 500px; }
  .newsletter__card { grid-template-columns: 1fr; gap: var(--sp-3); padding: var(--sp-4); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .cabs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .trek-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar__inner { justify-content: center; padding: 0.4rem var(--sp-2); }
  .topbar__cta { display: none; }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--c-primary-900);
    padding: var(--sp-5) var(--sp-3) var(--sp-3);
    transition: right var(--transition);
    z-index: 200;
    overflow-y: auto;
  }
  .nav.is-open { right: 0; box-shadow: var(--shadow-xl); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: 0.9rem 1rem; border-radius: var(--r-md); font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__has-sub .subnav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    padding: 0.25rem;
    margin: 0.25rem 0 0.5rem;
    min-width: 0;
  }
  .nav__has-sub .subnav::before { display: none; }
  .nav__has-sub .subnav li a { color: rgba(255, 255, 255, 0.75); padding: 0.55rem 1rem; }
  .nav__has-sub .subnav li a:hover { background: rgba(255, 255, 255, 0.1); color: var(--n-0); }
  .nav__close { display: block; }
  .nav__toggle { display: flex; }
  .header__actions .btn--outline, .header__actions .btn--gradient { display: none; }

  .cards-grid, .cards-grid--2, .cards-grid--3, .features__grid, .services__grid, .stats__grid { grid-template-columns: 1fr; }
  .cabs-grid { grid-template-columns: 1fr; }
  .form-row, .form-grid-2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-3); }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .cta-banner { background-attachment: scroll; }
  .hero__dots { display: none; }
  .float-quote { display: none; }
  .section { padding: var(--sp-6) 0; }
  .features { margin-top: -2.5rem; }
}

@media (max-width: 480px) {
  :root { --sp-3: 1rem; --sp-4: 1.25rem; }
  .container { padding: 0 var(--sp-2); }
  .hero__title { font-size: 1.9rem; }
  .booking { padding: var(--sp-2); }
  .partner-logo { width: 150px; padding: var(--sp-2); }
  .float-wa { width: 50px; height: 50px; bottom: 1rem; right: 1rem; }
  .float-wa svg { width: 24px; height: 24px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__slide { animation: none; opacity: 1; }
  .hero__slide--2, .hero__slide--3 { opacity: 0; }
  .hero__slide--1 { opacity: 1; }
  .hero__dot { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Itinerary Page ---------- */
.itinerary-hero {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-6);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
}
.itinerary-hero img { width: 100%; height: 100%; object-fit: cover; }

.itinerary {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 0;
}
.itinerary::before {
  content: "";
  position: absolute;
  left: 27px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-primary-300), var(--c-primary-500), var(--c-accent-400));
  border-radius: 2px;
}
.itinerary__item {
  position: relative;
  display: flex;
  gap: var(--sp-3);
  padding-bottom: var(--sp-4);
}
.itinerary__item:last-child { padding-bottom: 0; }
.itinerary__marker {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--n-0);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  border: 4px solid var(--n-0);
}
.itinerary__card {
  flex: 1;
  background: var(--n-0);
  border: 1px solid var(--n-100);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.itinerary__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.itinerary__card--final {
  border-color: var(--c-accent-300);
  background: linear-gradient(135deg, var(--c-accent-300) 0%, var(--n-0) 40%);
}
.itinerary__day {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent-600);
  margin-bottom: 0.3rem;
}
.itinerary__title {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.itinerary__desc {
  color: var(--n-600);
  font-size: 0.98rem;
  line-height: 1.6;
}
.itinerary__cta {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}
#cabs .cab-card__body{
  text-align: center;
}
#cabs .btn--gradient{
  padding: 6px 56px !important;
    margin-top: 8px !important;
}
/*texi booking page start*/
 
.texi-banner {
    min-height: 360px;

    background-size: 55% auto;
    background-position: right center;
    background-repeat: no-repeat;

    background-color: #f5f5f5;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;
}
.texi-banner .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 20px;

    background: rgba(0, 0, 0, 0.08);
    border-radius: 30px;

    color: #555;
}

.texi-banner .breadcrumb a {
    color: #174f42;
    text-decoration: none;
}

.texi-banner .breadcrumb__sep {
    color: #999;
}
.taxi-booking {
    padding: 80px 0;
    background: #fff;
}
.booking-wrapper {
    display: flex;
    align-items: stretch;
 
    border: 1px solid #e5e8e5;
    border-radius: 6px;
 
    background: #fff;
 
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.04);
 
    padding: 9px 14px;
}
 
 
/* =====================================
   LEFT FORM
===================================== */
 
.booking-form {
    width: 49%;
    padding-right: 17px;
}
 
 
/* =====================================
   TITLE
===================================== */
 
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
 
    gap: 4px;
 
    margin-bottom: 1px;
}
 
.section-title i {
    color: #004d38;
    font-size: 10px;
}
 
.section-title h2 {
        font-size: 23px;
    font-weight: 700;
 
    color: #222;
 
    margin: 0;
 
    position: relative;
}
 
.section-title h2::after {
    content: "";
 
    display: block;
 
    width: 53px;
    height: 2px;
 
    background: #f4ae00;
 
    margin-top: 1px;
}
 
.section-subtitle {
    text-align: center;
 
    color: #777;
 
       font-size: 17px;
 
    margin: 2px 0 8px;
}
 
 
/* =====================================
   FORM
===================================== */
 
.booking-form label {
    display: block;
 
   font-size: 13px;
    font-weight: 700;
 
    color: #222;
margin-top:15px;
}
 
.input-group-custom {
    height:44px;
 
    border: 1px solid #dfe3df;
    border-radius: 3px;
 
    display: flex;
    align-items: center;
 
    overflow: hidden;
 
    background: #fff;
}
 
.input-group-custom > i:first-child {
    width: 20px;
 
    text-align: center;
 
    font-size: 7px;
 
    color: #004d38;
}
 
.input-group-custom input,
.input-group-custom select {
    width: 100%;
    height: 100%;
 
    border: 0;
    outline: 0;
 
    background: transparent;
 
    font-size: 14px;
 
    color: #555;
 
    padding: 0 3px;
}
 
.input-group-custom input::placeholder {
    color: #aaa;
    font-size: 14px;
}
 
 
/* Select */
 
.select-box {
    position: relative;
}
 
.select-box select {
    appearance: none;
    -webkit-appearance: none;
 
    padding-right: 15px;
}
 
.select-box .arrow {
    position: absolute;
 
    right: 5px;
 
    width: auto !important;
 
    font-size: 6px !important;
 
    color: #333 !important;
 
    pointer-events: none;
}
 
 
/* =====================================
   BOOK BUTTON
===================================== */
.book-btn {
    margin-top: 15px;
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 3px;
    background: #004532;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:11px 8px;
    transition: .3s ease;
    text-align: center;
    /* margin: 0 auto; */
    display: block;
}
 
.book-btn:hover {
    background: #f2ad00;
    color: #111;
}
 
 
/* =====================================
   DIVIDER
===================================== */
 
.vertical-divider {
    width: 1px;
 
    background: #e4e7e5;
 
    margin: 0 14px;
}
 
 
/* =====================================
   VEHICLES
===================================== */
 
.vehicles-section {
    width: 51%;
    padding-left: 0;
}
 
.vehicles-section .section-title {
    justify-content: flex-start;
}
 
.vehicles-section .section-subtitle {
    text-align: left;
    margin-left: 17px;
}
 
 
/* =====================================
   VEHICLE GRID
===================================== */
 
.vehicles-grid {
    display: grid;
 
    grid-template-columns: repeat(2, 1fr);
 
    gap: 6px;
 
    margin-top: 3px;
}
 
 
/* =====================================
   VEHICLE CARD
===================================== */
 
.vehicle-card {
    border: 1px solid #e1e6e3;
 
    border-radius: 4px;
 
    padding: 4px;
 
    min-height: 70px;
 
    background: #fff;
        margin: 5px;
}
 
.vehicle-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.vehicle-image img {
    width: 100%;
    height: 100%;
 
    object-fit: contain;
}
 
.vehicle-card h3 {
       font-size: 12px;
 
    font-weight: 700;
 
    color: #202020;
 
    margin: 2px 0 0;
 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
.vehicle-card span {
    display: block;
 
    font-size: 15px;
 
    color: #555;
 
    margin-top: 1px;
}
 
 
/* Vehicle button */
 
.vehicle-card button {
    width: 100%;
    height: 33px;
 
    border: 0;
    border-radius: 2px;
 
    margin-top: 3px;
 
    background: #004532;
 
    color: #fff;
 
    font-size: 13px;
    font-weight: 500;
 
    display: flex;
    align-items: center;
    justify-content: center;
 
    gap: 5px;
}
 
.vehicle-card button:hover {
    background: #f2ad00;
    color: #111;
}
 
.vehicle-card button i {
    font-size: 5px;
}
 
 
/* =====================================
   TABLET
===================================== */
 
@media (max-width: 991px) {
 
    .booking-wrapper {
        padding: 12px;
    }
 
    .booking-form {
        width: 48%;
    }
 
    .vehicles-section {
        width: 52%;
    }
 
    .vertical-divider {
        margin: 0 10px;
    }
 
}
 
 
/* =====================================
   MOBILE
===================================== */
 
@media (max-width: 767px) {
 
    .booking-wrapper {
        display: block;
    }
 
    .booking-form,
    .vehicles-section {
        width: 100%;
        padding: 0;
    }
 
    .vertical-divider {
        width: 100%;
        height: 1px;
 
        margin: 15px 0;
    }
 
    .vehicles-section .section-title {
        justify-content: center;
    }
 
    .vehicles-section .section-subtitle {
        text-align: center;
        margin-left: 0;
    }
 
    .input-group-custom {
        height: 30px;
    }
 
    .input-group-custom input,
    .input-group-custom select {
        font-size: 9px;
    }
 
    .input-group-custom input::placeholder {
        font-size: 9px;
    }
 
    .booking-form label {
        font-size: 9px;
    }
 
    .book-btn {
        width: 120px;
        height: 30px;
        font-size: 8px;
    }
 
    .vehicle-card {
        min-height: 120px;
        padding: 8px;
    }
 
    .vehicle-image {
        height: 65px;
    }
 
    .vehicle-card h3 {
        font-size: 9px;
    }
 
    .vehicle-card span {
        font-size: 8px;
    }
 
    .vehicle-card button {
        height: 23px;
        font-size: 7px;
    }
 
}
/* ==========================================
   TOUR ITINERARY LAYOUT
========================================== */

.tour-itinerary-section {
    padding: 70px 0;
    background: #fff;
}


/* MAIN 2 COLUMN LAYOUT */

.tour-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: start;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.tour-main-content {
    min-width: 0;
}

.tour-main-content .section__head {
    margin-bottom: 25px;
}

.tour-main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 45px;
}

.tour-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ==========================================
   TIMELINE
========================================== */

.tour-timeline {
    position: relative;
    padding-left: 70px;
}


/* Vertical line */

.tour-timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e5e5e5;
}


/* DAY */

.tour-day {
    position: relative;
    display: flex;
    margin-bottom: 30px;
}


/* NUMBER CIRCLE */

.tour-day-number {
    position: absolute;
    left: -70px;
    top: 0;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0d4b3b;
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    border: 5px solid #fff;

    box-shadow: 0 2px 10px rgba(0,0,0,.12);

    z-index: 2;
}


/* DAY CARD */

.tour-day-content {
    width: 100%;
    background: #fff;

    border: 1px solid #e9e9e9;
    border-radius: 12px;

    padding: 25px 28px;

    box-shadow: 0 5px 20px rgba(0,0,0,.04);
}

.tour-day-label {
    display: inline-block;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #c28a35;

    margin-bottom: 8px;
}

.tour-day-content h3 {
    margin: 0 0 10px;

    font-size: 23px;
    font-weight: 700;

    color: #173f35;
}

.tour-day-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #666;
}


/* ==========================================
   BUTTONS
========================================== */

.tour-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 25px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .3s ease;
}

.tour-btn-primary {
    background: #0d4b3b;
    color: #fff;
}

.tour-btn-primary:hover {
    background: #083a2e;
    color: #fff;
}

.tour-btn-secondary {
    border: 1px solid #0d4b3b;
    color: #0d4b3b;
    background: #fff;
}

.tour-btn-secondary:hover {
    background: #0d4b3b;
    color: #fff;
}


/* ==========================================
   RIGHT SIDEBAR
========================================== */

.tour-sidebar {
    position: sticky;
    top: 100px;

    width: 100%;
}


/* FORM CARD */

.travel-deals-card {
    background: #fff;

    border-radius: 14px;

    border: 1px solid #e5e5e5;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0,0,0,.09);
}


/* HEADER */

.travel-deals-header {
    background: linear-gradient(
        135deg,
        #0d4b3b,
        #17644f
    );

    padding: 25px 25px 22px;

    color: #fff;
}

.travel-deals-small {
    display: block;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #e5b85c;

    margin-bottom: 7px;
}

.travel-deals-header h3 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 25px;
    font-weight: 700;
}

.travel-deals-header p {
    margin: 0;

    color: rgba(255,255,255,.8);

    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================
   FORM
========================================== */

.travel-deals-form {
    padding: 24px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;

    font-size: 12px;
    font-weight: 600;

    color: #333;

    margin-bottom: 6px;
}


/* TWO FIELDS */

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


/* INPUT WRAPPER */

.form-input,
.form-textarea {
    position: relative;
}

.form-input i,
.form-textarea i {
    position: absolute;

    left: 13px;
    top: 50%;

    transform: translateY(-50%);

    color: #0d4b3b;

    font-size: 15px;

    z-index: 2;
}

.form-textarea i {
    top: 17px;
    transform: none;
}


/* INPUT SELECT */

.travel-deals-form input,
.travel-deals-form select,
.travel-deals-form textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #ddd;

    border-radius: 7px;

    background: #fafafa;

    color: #333;

    font-size: 13px;

    outline: none;

    transition: .25s ease;
}

.travel-deals-form input,
.travel-deals-form select {
    height: 46px;

    padding: 0 12px 0 40px;
}

.travel-deals-form textarea {
    height: 100px;

    padding: 13px 12px 13px 40px;

    resize: vertical;
}

.travel-deals-form input:focus,
.travel-deals-form select:focus,
.travel-deals-form textarea:focus {
    border-color: #0d4b3b;

    background: #fff;

    box-shadow: 0 0 0 3px rgba(13,75,59,.08);
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.travel-submit {
    width: 100%;

    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: none;
    border-radius: 7px;

    background: #c28a35;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .5px;

    cursor: pointer;

    transition: .3s ease;
}

.travel-submit:hover {
    background: #a97225;
}

.travel-submit i {
    font-size: 16px;
}


/* NOTE */

.form-note {
    margin: 12px 0 0;

    text-align: center;

    color: #888;

    font-size: 10px;
}

.form-note i {
    color: #0d4b3b;
    margin-right: 3px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .tour-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 25px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

    .tour-layout {
        display: grid;

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .tour-sidebar {
        position: static;

        order: 2;
    }

    .tour-main-content {
        order: 1;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575px) {

    .tour-itinerary-section {
        padding: 45px 0;
    }

    .tour-main-image {
        height: 250px;

        border-radius: 10px;

        margin-bottom: 35px;
    }

    .tour-timeline {
        padding-left: 50px;
    }

    .tour-timeline::before {
        left: 18px;
    }

    .tour-day-number {
        left: -50px;

        width: 38px;
        height: 38px;

        border-width: 3px;

        font-size: 13px;
    }

    .tour-day-content {
        padding: 18px;
    }

    .tour-day-content h3 {
        font-size: 19px;
    }

    .tour-day-content p {
        font-size: 14px;
    }

    .tour-buttons {
        flex-direction: column;
    }

    .tour-btn {
        width: 100%;
    }

    .travel-deals-form {
        padding: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .travel-deals-header {
        padding: 22px 18px;
    }

}
.section__title{
  font-size:32px;
}
.thankyou-section{
            height:100vh;
            display:flex;
            justify-content:center;
            align-items:center;
        }

        .thankyou-box{
            background:#fff;
            margin-top: 95px;
            padding:50px;
            max-width:650px;
            border-radius:15px;
            text-align:center;
            box-shadow:0 10px 35px rgba(0,0,0,.12);
        }

        .check{
            width:90px;
            height:90px;
            background:#28a745;
            color:#fff;
            border-radius:50%;
            margin:auto;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:45px;
            margin-bottom:25px;
        }

        .thankyou-box h1{
            color:var(--gold-500);
            font-weight:700;
            margin-bottom:20px;
        }

        .thankyou-box p{
            color:#666;
            font-size:18px;
            line-height:30px;
        }