/* =====================================================
   PALETTE
   Oxford Blue   #01204E
   Teal          #028391
   Peach Yellow  #F6DCAC
   Sandy Brown   #FAA968
   Giants Orange #F85525
===================================================== */

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

/* ── TOKENS ── */
:root {
  --oxford: #01204E;
  --oxford-mid: #01306a;
  --oxford-light: #e8eef8;
  --teal: #028391;
  --teal-dark: #016b77;
  --teal-pale: #d6f2f5;
  --peach: #F6DCAC;
  --peach-dark: #edc98a;
  --peach-light: #fdf5e8;
  --sandy: #FAA968;
  --sandy-dark: #e8923a;
  --orange: #F85525;
  --orange-dark: #d94418;
  --orange-pale: #fde8e0;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --bg: #F8F4EE;
  --card: #FFFFFF;
  --border: #e4d5bf;
  --border-lt: #ede4d4;
  --text: #01204E;
  --body: #2a3f5f;
  --muted: #6b7c96;
  --sh-sm: 0 2px 8px rgba(1, 32, 78, .07);
  --sh-md: 0 6px 24px rgba(1, 32, 78, .10);
  --sh-lg: 0 16px 48px rgba(1, 32, 78, .13);
  --sp1: 8px;
  --sp2: 16px;
  --sp3: 24px;
  --sp4: 32px;
  --sp5: 40px;
  --sp6: 48px;
  --sp8: 64px;
  --sp10: 80px;
  --sp12: 96px;
  --xs: .72rem;
  --sm: .83rem;
  --base: .95rem;
  --md: 1.05rem;
  --lg: 1.2rem;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 100px;
  --tf: .15s ease;
  --tb: .25s ease;
  --ts: .4s cubic-bezier(.16, 1, .3, 1)
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--oxford);
  text-decoration: none;
}

.logo span {
  color: var(--orange)
}

.nav-links {
      display: flex;
      align-items: center;
      gap: 38px;
      list-style: none;
    }
.nav-links a {
  text-decoration: none;
  color: var(--oxford);
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--tb);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:hover {
  color: var(--orange)
}

.nav-links a:hover::after {
  transform: scaleX(1)
}
/* BUTTON STYLE */
.nav-cta {
  background: var(--orange);
  color: #fff !important;

  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;

  padding: 11px 26px;
  border-radius: 999px;

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

  text-decoration: none !important;
  line-height: 1; /* ✅ fixes vertical centering issue */

  border: none;
  cursor: pointer;

  box-shadow: 0 4px 18px var(--orange-glow);
  transition: 0.2s ease;
}

/* HOVER */
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(224, 96, 40, 0.55);

  text-decoration: none !important;
}

/* 🚨 IMPORTANT: REMOVE NAV UNDERLINE EFFECT ONLY FOR BUTTON */
.nav-links a.nav-cta::after {
  display: none !important;
}

/* Mobile toggle */
.mob-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer
}

/* Mobile menu */
.mob-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #f8f9fb;
  padding: 70px 25px 20px;
  transition: .3s;
  z-index: 1100;
}

.mob-menu.open {
  left: 0
}

.mob-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.4rem;
  border: none;
  background: #eee;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.mob-menu a {
  display: block;
  text-decoration: none;
  color: var(--oxford);
  font-weight: 600;
  font-size: 18px;
  padding: 18px 0;
}

.mob-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0
}

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 1000;
}

.mob-overlay.active {
  opacity: 1;
  pointer-events: all
}

/* ══════════════════════════════════════════
   HERO — homepage
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 58% at 96% 8%, rgba(200, 246, 252, .72) 0%, transparent 58%),
    radial-gradient(ellipse 55% 55% at 0% 88%, rgba(2, 100, 112, .42) 0%, transparent 55%),
    linear-gradient(148deg, #026f7a 0%, #028695 18%, #03a0b0 36%,
      #05b5c8 56%, #0ecbdc 76%, #22d8e8 92%, #34e2f0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
}

.glow-tr {
  position: absolute;
  top: -170px;
  right: -140px;
  width: 860px;
  height: 720px;
  background: radial-gradient(ellipse, rgba(200, 250, 255, .65) 0%, rgba(160, 240, 250, .30) 40%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.glow-bl {
  position: absolute;
  bottom: 40px;
  left: -110px;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(2, 100, 112, .26) 0%, transparent 66%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  /* padding: 130px 72px 200px; */
    padding: 70px 60px 100px;

}

/* Overline */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp .50s .16s ease forwards;
}

.ol-bar {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold, #f0a030);
  opacity: .80;
  border-radius: 1px
}

.ol-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75)
}

.ol-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold, #f0a030);
  opacity: .85;
  flex-shrink: 0;
  animation: pulse 2.6s ease-in-out infinite 2s
}

/* Headline */
.hero-headline {
  font-family: 'Bodoni Moda', serif;
  margin-bottom: 0;
  letter-spacing: .01em
}

.hl-main {
  display: block;
  font-size: clamp(52px, 6.8vw, 94px);
  font-weight: 900;
  font-style: normal;
  line-height: 1.02;
  color: #fff;
  word-spacing: .06em;
  letter-spacing: .02em;
  text-shadow: 0 2px 0 rgba(1, 40, 50, .14), 0 12px 60px rgba(1, 40, 50, .24);
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeUp .68s .30s ease forwards;
}

.hl-sub {
  display: block;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.14;
  color: #f0a030;
  word-spacing: .05em;
  letter-spacing: .04em;
  text-shadow: 0 2px 0 rgba(150, 80, 0, .14), 0 8px 48px rgba(240, 160, 48, .52);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .68s .48s ease forwards;
}

/* Accent rule */
.accent-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .45s .64s ease forwards;
}

.ar-line {
  display: block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, 0));
  border-radius: 1px
}

.ar-diamond {
  width: 6px;
  height: 6px;
  background: #f0a030;
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(240, 160, 48, .20)
}

.ar-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42)
}

/* Bottom row */
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 52px;
  opacity: 0;
  animation: fadeUp .60s .80s ease forwards;
}

.hero-body {
  font-size: 16px;
  line-height: 1.88;
  font-weight: 300;
  color: rgba(255, 255, 255, .78);
  max-width: 420px;
  flex-shrink: 1;
  text-shadow: 0 1px 14px rgba(1, 40, 50, .10);
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

/* Shared button base */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 16px 38px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 38px rgba(248, 85, 37, .40), 0 1px 0 rgba(255, 255, 255, .18) inset;
  transition: background .22s, transform .18s, box-shadow .22s;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-18deg);
  animation: btnShine 4s ease-in-out infinite 2.5s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(248, 85, 37, .52)
}

.btn-primary .arr {
  font-size: 15px;
  transition: transform .22s;
  display: inline-block
}

.btn-primary:hover .arr {
  transform: translate(3px, -3px)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, .92);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 15px 36px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .38);
  cursor: pointer;
  white-space: nowrap;
  transition: background .22s, border-color .22s, transform .18s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .72);
  transform: translateY(-2px)
}

/* Waves */
.waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  line-height: 0
}

.waves svg {
  width: 100%;
  display: block
}

/* ══════════════════════════════════════════
   TOUR DETAIL HERO
══════════════════════════════════════════ */
.hero-detail {
  position: relative;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
  margin-top: 68px;
}

.hero-detail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: hZoom 14s ease-out both;
}

.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(1, 32, 78, .82) 0%, rgba(1, 32, 78, .50) 55%, rgba(1, 32, 78, .15) 100%);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-detail-body {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(248, 85, 37, .18);
  border: 1px solid rgba(248, 85, 37, .50);
  color: #ffb899;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp .7s .1s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.07;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  animation: fadeUp .7s .25s both;
}

.hero-title em {
  font-style: italic;
  color: var(--peach)
}

.hero-desc {
  font-size: .97rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  margin-bottom: 28px;
  animation: fadeUp .7s .4s both;
  max-width: 480px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  animation: fadeUp .7s .55s both
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: .77rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   SECTIONS — shared
══════════════════════════════════════════ */
section {
  padding: var(--sp12) var(--sp5)
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp1);
}

.sec-label::after {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px
}

.sec-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp5);
  align-items: start;
  margin-bottom: var(--sp6);
}

.sec-header-right {
  padding-top: var(--sp3);
  font-size: var(--base);
  color: var(--muted);
  line-height: 1.85
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--oxford);
  letter-spacing: -.03em;
  margin-bottom: var(--sp1);
}

.sec-desc {
  font-size: var(--md);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: var(--sp6)
}

/* ══════════════════════════════════════════
   TOURS SLIDER
══════════════════════════════════════════ */
.tours-section {
  background: var(--off-white)
}

.slider-wrap {
  position: relative;
  overflow: hidden
}

.slider-track {
  display: flex;
  gap: var(--sp3);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
  will-change: transform
}

.tour-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background: var(--card);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tb), box-shadow var(--tb);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md)
}

.tc-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden
}

.tc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 32, 78, .35) 0%, transparent 55%);
}

.tc-badge {
  position: absolute;
  bottom: var(--sp2);
  right: var(--sp2);
  background: var(--teal);
  color: #fff;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  font-size: var(--xs);
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tc-badge::before {
  content: '📍';
  font-size: .7rem
}

.tc-body {
  padding: var(--sp3);
  display: flex;
  flex-direction: column;
  flex: 1
}

.tc-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--oxford);
  margin-bottom: 8px;
  line-height: 1.2
}

.tc-body p {
  font-size: var(--sm);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--sp2);
  flex: 1
}

.tc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-lt);
  padding-top: var(--sp2);
  margin-top: auto
}

.tc-price {
  font-size: var(--sm);
  color: var(--muted)
}

.tc-price s {
  color: #bbb;
  margin-right: 4px
}

.tc-price strong {
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem
}

.tc-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--xs);
  color: var(--muted)
}

.tc-rating .star {
  color: var(--sandy);
  font-size: .9rem
}

.slider-arrows {
  display: flex;
  justify-content: flex-end;
  gap: var(--sp1);
  margin-top: var(--sp4)
}

.sl-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--oxford);
  transition: all var(--tb);
}

.sl-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: scale(1.06)
}

.sl-btn:disabled {
  opacity: .3;
  cursor: default;
  transform: none
}

/* ══════════════════════════════════════════
   DESTINATIONS
══════════════════════════════════════════ */
#destinations {
  background: var(--off-white);
  padding-top: 0
}

.dest-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 10px;
  min-height: 560px
}

.dest-big {
  grid-row: 1/3;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 560px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--tb), box-shadow var(--tb);
}

.dest-big:hover {
  transform: scale(1.012);
  box-shadow: var(--sh-lg)
}

.dest-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px
}

.dest-sm {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 270px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--tb), box-shadow var(--tb);
}

.dest-sm:hover {
  transform: scale(1.015);
  box-shadow: var(--sh-md)
}

.dest-big::before,
.dest-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(1, 20, 40, .82) 0%, rgba(1, 20, 40, .28) 42%, rgba(1, 20, 40, .04) 75%);
  transition: background var(--ts);
}

.dest-big:hover::before,
.dest-sm:hover::before {
  background: linear-gradient(to top, rgba(1, 20, 40, .90) 0%, rgba(1, 20, 40, .42) 52%, rgba(1, 20, 40, .08) 80%);
}

.dest-txt {
  position: relative;
  z-index: 2;
  padding: var(--sp3)
}

.dest-big .dest-txt {
  padding: var(--sp4)
}

.dest-txt h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
}

.dest-big .dest-txt h3 {
  font-size: 1.5rem
}

.dest-txt span {
  font-size: var(--sm);
  color: rgba(255, 255, 255, .78);
  font-weight: 500
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-section {
  background: var(--peach)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp10);
  align-items: center
}

.about-img {
  border-radius: var(--r-xl);
  height: 480px;
  background: linear-gradient(145deg, var(--oxford) 0%, var(--teal) 60%, #014a55 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: rgba(255, 255, 255, .10);
  box-shadow: var(--sh-lg);
}

.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 35%, rgba(248, 85, 37, .18), transparent 60%);
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--oxford);
  margin-bottom: var(--sp3);
  letter-spacing: -.025em;
  line-height: 1.15;
}

.about-text p {
  color: var(--body);
  font-size: var(--md);
  line-height: 1.85;
  margin-bottom: var(--sp2)
}

.about-stats {
  display: flex;
  gap: var(--sp5);
  margin-top: var(--sp5);
  padding-top: var(--sp4);
  border-top: 2px solid var(--peach-dark)
}

.stat h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px
}

.stat p {
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0
}

/* ══════════════════════════════════════════
   BLOG
══════════════════════════════════════════ */
.blog-section {
  background: var(--bg)
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp4)
}

.blog-card {
  background: var(--card);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-lt);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--tb), box-shadow var(--tb);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md)
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(145deg, var(--oxford), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0
}

.blog-card-body {
  padding: var(--sp4) var(--sp4) var(--sp3);
  display: flex;
  flex-direction: column;
  flex: 1
}

.blog-date {
  font-size: var(--xs);
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px
}

.blog-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--sp2);
  flex: 1
}

.blog-card-body h3 a {
  text-decoration: none;
  color: var(--oxford);
  transition: color var(--tb)
}

.blog-card-body h3 a:hover {
  color: var(--teal)
}

.blog-card-body p {
  font-size: var(--sm);
  color: var(--muted);
  line-height: 1.7;
  margin: 0
}

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.cta-section {
  background: var(--off-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-lt);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 50% at 25% 60%, rgba(2, 131, 145, .06), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(250, 169, 104, .08), transparent 55%);
}

.cta-section .section-inner {
  position: relative;
  z-index: 2
}

.form-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(2, 131, 145, .14);
  border-radius: var(--r-xl);
  padding: var(--sp5);
  box-shadow: var(--sh-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp3);
  text-align: left
}

.form-group {
  display: flex;
  flex-direction: column
}

.form-group.full {
  grid-column: 1/-1
}

.form-group label {
  font-size: var(--xs);
  font-weight: 700;
  color: var(--oxford);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--oxford);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--base);
  min-height: 44px;
  transition: border-color var(--tb), box-shadow var(--tb);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(2, 131, 145, .14);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--orange)
}

.error-msg {
  color: var(--orange-dark);
  font-size: var(--xs);
  font-weight: 600;
  margin-top: 5px;
  display: none
}

.form-group input.error~.error-msg,
.form-group select.error~.error-msg,
.form-group textarea.error~.error-msg {
  display: block
}

.form-group select {
  cursor: pointer
}

.form-group select option {
  background: #fff;
  color: var(--oxford)
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6
}

.form-submit-wrap {
  grid-column: 1/-1;
  display: flex;
  gap: var(--sp2);
  justify-content: center;
  align-items: center;
  margin-top: var(--sp2);
  flex-wrap: wrap
}

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter-section {
  background: var(--peach);
  padding: var(--sp10) var(--sp5);
  border-top: 1px solid var(--peach-dark)
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center
}

.newsletter-inner .sec-label {
  justify-content: center
}

.newsletter-inner .sec-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem)
}

.nl-form {
  display: flex;
  margin-top: var(--sp4);
  border: 2px solid var(--peach-dark);
  background: #fff;
  border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.nl-form input {
  flex: 1;
  padding: 14px var(--sp3);
  border: none;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--base);
  color: var(--oxford);
  min-height: 50px;
}

.nl-form input:focus {
  outline: none
}

.nl-form input::placeholder {
  color: var(--muted)
}

.nl-form button {
  padding: 14px var(--sp4);
  background: var(--orange);
  color: #fff;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: var(--sm);
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
  transition: background var(--tb);
}

.nl-form button:hover {
  background: var(--orange-dark)
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--oxford);
  color: rgba(255, 255, 255, .55);
  padding: var(--sp10) var(--sp5) var(--sp4);
  border-top: 4px solid var(--orange);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp6);
  margin-bottom: var(--sp6);
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: var(--sp2);
  display: inline-block;
  color: #fff !important
}

.footer-brand .logo span {
  color: var(--sandy) !important
}

.footer-brand p {
  font-size: var(--sm);
  line-height: 1.8;
  max-width: 280px;
  color: rgba(255, 255, 255, .48)
}

.footer-col h4 {
  color: rgba(255, 255, 255, .90);
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: var(--sp2);
  padding-bottom: var(--sp1);
  border-bottom: 1px solid rgba(2, 131, 145, .30);
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  margin-bottom: 10px
}

.footer-col a {
  color: rgba(255, 255, 255, .48);
  text-decoration: none;
  font-size: var(--sm);
  transition: color var(--tb), padding-left var(--tb);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--sandy);
  padding-left: 4px
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding-top: var(--sp3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp2);
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: var(--xs);
  color: rgba(255, 255, 255, .32)
}

.footer-social {
  display: flex;
  gap: var(--sp3)
}

.footer-social a {
  color: rgba(255, 255, 255, .42);
  text-decoration: none;
  font-size: var(--sm);
  font-weight: 600;
  transition: color var(--tb);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-social a:hover {
  color: var(--sandy)
}

/* ══════════════════════════════════════════
   BREADCRUMB & STATS BAR
══════════════════════════════════════════ */
.breadcrumb {
  background: var(--oxford);
  padding: 12px 40px
}

.bc {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .5)
}

.bc a {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s
}

.bc a:hover {
  color: var(--peach)
}

.bc-sep {
  color: rgba(255, 255, 255, .25)
}

.bc-cur {
  color: var(--peach)
}

.stats-bar {
  background: var(--teal)
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex
}

.si {
  flex: 1;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, .12)
}

.si:last-child {
  border-right: none
}

.si-icon {
  font-size: 1.3rem;
  flex-shrink: 0
}

.si-label {
  font-size: .69rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 2px
}

.si-val {
  font-size: .9rem;
  font-weight: 700;
  color: #fff
}

/* ══════════════════════════════════════════
   TOUR DETAIL PAGE CONTENT
══════════════════════════════════════════ */
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 348px;
  gap: 56px;
  align-items: start;
}

.highlights {
  background: linear-gradient(135deg, var(--oxford), var(--oxford-mid));
  border-radius: var(--r-xl);
  padding: 32px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.highlights::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 85, 37, .15), transparent 65%);
  pointer-events: none;
}

.hl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hl-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .12)
}

.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55
}

.hl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px
}

.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.sec-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px
}

.sec-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--oxford);
  letter-spacing: -.03em;
  margin-bottom: 36px
}

.day-card {
  position: relative;
  margin-bottom: 44px
}

.day-card::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50px;
  bottom: -44px;
  width: 1px;
  background: linear-gradient(to bottom, var(--border), transparent)
}

.day-card:last-child::before {
  display: none
}

.day-hd {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px
}

.day-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2, 131, 145, .30);
  z-index: 1;
  line-height: 1.2;
}

.day-num b {
  font-size: .95rem;
  font-weight: 800;
  line-height: 1
}

.day-tags {
  display: flex;
  gap: 7px;
  margin-bottom: 6px;
  flex-wrap: wrap
}

.dtag {
  padding: 3px 11px;
  border-radius: var(--r-pill);
  font-size: .71rem;
  font-weight: 600;
  background: var(--teal-pale);
  color: var(--teal-dark);
  border: 1px solid rgba(2, 131, 145, .18)
}

.day-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--oxford);
  line-height: 1.25
}

.day-body {
  padding-left: 60px
}

.day-text {
  font-size: .92rem;
  color: var(--body);
  line-height: 1.88;
  margin-bottom: 20px
}

.day-text p {
  margin-bottom: 10px
}

.day-text p:last-child {
  margin-bottom: 0
}

/* ══════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════ */
.sidebar {
  position: sticky;
  top: 86px;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.book-card {
  background: var(--card);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md)
}

.book-top {
  background: linear-gradient(135deg, var(--oxford), var(--oxford-mid));
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.book-top::before {
  content: '';
  position: absolute;
  top: -25px;
  right: -25px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 85, 37, .18), transparent 60%)
}

.book-from {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 5px
}

.book-price {
  display: flex;
  align-items: baseline;
  gap: 10px
}

.book-old {
  font-size: .9rem;
  color: rgba(255, 255, 255, .32);
  text-decoration: line-through
}

.book-new {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em
}

.book-new sup {
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  vertical-align: super
}

.book-per {
  font-size: .71rem;
  color: rgba(255, 255, 255, .42);
  margin-top: 4px
}

.book-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.book-stars {
  color: var(--sandy);
  font-size: .84rem
}

.book-score {
  font-size: .84rem;
  font-weight: 700;
  color: #fff
}

.book-rev {
  font-size: .73rem;
  color: rgba(255, 255, 255, .42)
}

.book-body {
  padding: 22px 24px
}

.brows {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px
}

.brow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .83rem
}

.brow-icon {
  width: 32px;
  height: 32px;
  background: var(--teal-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0
}

.brow strong {
  display: block;
  font-size: .79rem;
  font-weight: 600;
  color: var(--oxford);
  line-height: 1.2
}

.brow span {
  font-size: .74rem;
  color: var(--muted)
}

.bdiv {
  border: none;
  border-top: 1px solid var(--border-lt);
  margin: 16px 0
}

.incl-lbl {
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 8px
}

.itags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px
}

.itag {
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: .71rem;
  font-weight: 600;
  background: var(--teal-pale);
  color: var(--teal-dark);
  border: 1px solid rgba(2, 131, 145, .15)
}

.itag.org {
  background: var(--orange-pale);
  color: var(--orange-dark);
  border-color: rgba(248, 85, 37, .20)
}

.btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 14px;
  border-radius: var(--r-lg);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(248, 85, 37, .35);
  margin-bottom: 9px;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
}

.btn-book:hover {
  background: var(--orange-dark);
  transform: translateY(-2px)
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  color: var(--teal);
  padding: 12px;
  border-radius: var(--r-lg);
  font-weight: 600;
  font-size: .86rem;
  text-decoration: none;
  border: 2px solid var(--teal);
  transition: background .2s, color .2s;
  margin-bottom: 9px;
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #fff;
  color: var(--body);
  padding: 11px;
  border-radius: var(--r-lg);
  font-weight: 600;
  font-size: .84rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color .2s;
}

.btn-wa:hover {
  border-color: var(--teal);
  color: var(--teal)
}

/* ══════════════════════════════════════════
   UI — Toast, WhatsApp, Scroll-top, Reveal
══════════════════════════════════════════ */
.toast-wrap {
  position: fixed;
  bottom: var(--sp3);
  right: var(--sp3);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.toast {
  padding: 14px var(--sp3);
  border-radius: var(--r-lg);
  color: #fff;
  font-weight: 600;
  font-size: var(--sm);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn .35s var(--ts);
  box-shadow: var(--sh-md);
  max-width: 360px;
  line-height: 1.5;
}

.toast.success {
  background: var(--teal)
}

.toast.error {
  background: var(--orange)
}

.toast.info {
  background: var(--oxford)
}

.float-wa {
  position: fixed;
  bottom: var(--sp4);
  left: var(--sp4);
  z-index: 1500;
  width: 58px;
  height: 58px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(2, 131, 145, .42);
  text-decoration: none;
  transition: transform var(--tb), background var(--tb);
}

.float-wa:hover {
  transform: scale(1.08);
  background: var(--teal-dark)
}

.float-wa svg {
  width: 28px;
  height: 28px;
  fill: white
}

.float-wa-tip {
  position: absolute;
  left: 70px;
  bottom: 12px;
  background: #fff;
  color: var(--oxford);
  padding: 8px 14px;
  border-radius: var(--r-lg);
  font-size: var(--xs);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border-lt);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--tb), transform var(--tb);
  pointer-events: none;
}

.float-wa:hover .float-wa-tip {
  opacity: 1;
  transform: translateX(0)
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.scroll-top {
  position: fixed;
  bottom: 104px;
  right: var(--sp4);
  z-index: 1400;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--orange);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(248, 85, 37, .38);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--tb), transform var(--tb), background var(--tb);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto
}

.scroll-top:hover {
  background: var(--orange-dark);
  transform: translateY(-3px)
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: white
}

.scroll-top-lbl {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .80);
  line-height: 1
}

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .85;
    box-shadow: 0 0 0 3px rgba(240, 160, 48, .20)
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 7px rgba(240, 160, 48, .06)
  }
}

@keyframes btnShine {
  0% {
    left: -60%
  }

  100% {
    left: 160%
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(32px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes hZoom {
  from {
    transform: scale(1.05)
  }

  to {
    transform: scale(1)
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:900px) {
  .nav-links {
    display: none
  }

  .mob-toggle {
    display: block
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px
  }

  .dest-layout {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .dest-big {
    grid-row: auto;
    min-height: 380px
  }

  .sec-header {
    grid-template-columns: 1fr
  }

  .sec-header-right {
    padding-top: 0
  }
}

@media(max-width:768px) {
  section {
    padding: var(--sp8) var(--sp3)
  }

  .hero-inner {
    padding: 108px 28px 190px
  }

  .hl-main {
    font-size: clamp(40px, 11vw, 64px)
  }

  .hl-sub {
    font-size: clamp(24px, 7vw, 40px)
  }

  .hero-ctas {
    flex-wrap: wrap
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp6)
  }

  .about-img {
    height: 280px
  }

  .about-stats {
    gap: var(--sp4)
  }

  .tour-card {
    flex: 0 0 100%;
    min-width: 100%
  }

  .dest-right {
    grid-template-columns: 1fr 1fr
  }

  .dest-sm {
    min-height: 200px
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp4)
  }

  .page-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 28px
  }

  .sidebar {
    position: static
  }

  .hl-grid {
    grid-template-columns: 1fr
  }

  .stats-inner {
    flex-wrap: wrap
  }

  .si {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .10)
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .float-wa-tip {
    display: none
  }

  .scroll-top-lbl {
    display: none
  }
}

@media(max-width:600px) {
  .nl-form {
    flex-direction: column;
    border-radius: var(--r-xl)
  }

  .nl-form input {
    min-height: 48px
  }

  .nl-form button {
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    padding: 14px var(--sp3)
  }

  .form-card {
    padding: var(--sp3)
  }
}

@media(max-width:480px) {
  section {
    padding: var(--sp6) var(--sp2)
  }

  .dest-right {
    grid-template-columns: 1fr
  }

  .dest-sm {
    min-height: 180px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}