:root {
  --navy: #082756;
  --blue: #1b5ea8;
  --teal: #1c9c95;
  --coral: #ee6b4d;
  --gold: #f3b34c;
  --ink: #17243a;
  --muted: #657187;
  --line: #dce4ef;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(8, 39, 86, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-bar-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.top-bar-social-icons a {
  color: inherit;
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.top-bar-social-icons a:hover {
  opacity: 1;
}

.floating-cta-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.floating-cta-stack .whatsapp-bubble,
.floating-cta-stack .call-bubble,
.floating-cta-stack .callback-bubble {
  position: relative !important;
  inset: auto !important;
  box-sizing: border-box !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem !important;
  line-height: 1 !important;
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  flex-shrink: 0;
}

.floating-cta-stack .whatsapp-bubble {
  background: #25d366 !important;
}

.floating-cta-stack .call-bubble {
  background: #2563eb !important;
}

.floating-cta-stack .callback-bubble {
  background: #d97706 !important;
}

.floating-cta-stack .whatsapp-bubble::before {
  display: none;
}

.floating-cta-stack .whatsapp-tooltip {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.floating-cta-stack .whatsapp-bubble:hover .whatsapp-tooltip,
.floating-cta-stack .call-bubble:hover .whatsapp-tooltip,
.floating-cta-stack .callback-bubble:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 68px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled,
.site-header.nav-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(8, 39, 86, 0.12);
  color: var(--navy);
  padding-block: 12px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 8px;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  display: block;
  margin: 3px auto;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 150px clamp(18px, 5vw, 68px) 42px;
}

.hero-video,
.hero-video iframe,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -2;
  background: var(--navy);
  overflow: hidden;
}

.hero-video iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 22, 45, 0.8), rgba(8, 39, 86, 0.42) 48%, rgba(8, 22, 45, 0.34)),
    linear-gradient(0deg, rgba(8, 22, 45, 0.72), transparent 52%);
}

.hero-content {
  max-width: 790px;
  padding-bottom: 36px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(4rem, 12vw, 9.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(238, 107, 77, 0.28);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-strip article {
  padding: 22px;
  background: rgba(6, 23, 48, 0.42);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-size: 1.08rem;
  margin-bottom: 7px;
}

.hero-strip span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 68px);
}

.intro {
  background: var(--soft);
}

.intro-grid,
.section-heading,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.stats div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(8, 39, 86, 0.06);
}

.stats span {
  display: block;
  color: var(--blue);
  font-size: 2.4rem;
  font-weight: 900;
}

.stats small {
  color: var(--muted);
  line-height: 1.4;
}

.section-heading {
  align-items: end;
  margin-bottom: 34px;
}

.filter-controls {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.destination-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.destination-card,
.service-grid article,
.inquiry-form,
.why-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 39, 86, 0.07);
}

.destination-card {
  overflow: hidden;
  min-height: 280px;
  display: grid;
  align-content: end;
  padding: 24px;
  color: var(--white);
  position: relative;
}

.destination-card::before,
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.destination-card::before {
  background: var(--card-bg);
  z-index: 0;
}

.destination-card::after {
  background: linear-gradient(0deg, rgba(6, 23, 48, 0.82), rgba(6, 23, 48, 0.08));
  z-index: 1;
}

.destination-card > * {
  position: relative;
  z-index: 2;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.tag {
  width: fit-content;
  margin-bottom: 72px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.services {
  background: #f9faf7;
}

.service-grid article {
  padding: 28px;
}

.service-grid span {
  color: var(--teal);
  font-weight: 900;
}

.service-grid p,
.why-detail p {
  color: var(--muted);
  line-height: 1.65;
}

.packages {
  background: var(--white);
}

.tour-catalog {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 39, 86, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.package-card:hover,
.package-card.active {
  transform: translateY(-3px);
  border-color: rgba(238, 107, 77, 0.45);
  box-shadow: 0 18px 42px rgba(8, 39, 86, 0.15);
}

.package-media {
  min-height: 154px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(6, 23, 48, 0.28), rgba(6, 23, 48, 0.28)),
    var(--package-bg);
}

.sale-badge,
.package-type {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sale-badge {
  background: var(--coral);
  color: var(--white);
}

.package-type {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.package-body {
  padding: 20px;
}

.package-body h3 {
  margin-bottom: 10px;
}

.package-body p,
.package-body li,
.detail-copy,
.detail-list li,
.detail-inclusions span {
  color: var(--muted);
  line-height: 1.6;
}

.package-meta,
.package-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.package-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--navy);
  background: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.package-body ul {
  padding-left: 18px;
  margin: 14px 0 18px;
}

.package-price-row {
  justify-content: space-between;
  margin-bottom: 0;
}

.package-price {
  display: grid;
  gap: 2px;
}

.package-price small {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 800;
}

.package-price strong {
  color: var(--teal);
  font-size: 1.25rem;
}

.package-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.text-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.text-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.deal-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
}

.tour-detail {
  position: sticky;
  top: 96px;
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(8, 39, 86, 0.96), rgba(27, 94, 168, 0.9)),
    var(--navy);
  box-shadow: var(--shadow);
}

.tour-detail h3 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.tour-detail .section-kicker {
  color: var(--gold);
}

.detail-copy,
.detail-list li,
.detail-inclusions span {
  color: rgba(255, 255, 255, 0.78);
}

.detail-list {
  padding-left: 18px;
  margin: 18px 0;
}

.detail-inclusions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 24px;
}

.detail-inclusions span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.detail-footer strong {
  display: block;
  color: var(--gold);
  font-size: 1.45rem;
}

.detail-footer small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.why-us {
  background: var(--soft);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 24px;
  align-items: stretch;
}

.why-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
}

.why-panel h2 {
  max-width: 780px;
}

.why-list {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.why-item {
  text-align: left;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.why-item.active {
  background: var(--white);
  color: var(--navy);
}

.why-item span,
.why-item small {
  display: block;
}

.why-item span {
  font-weight: 900;
  margin-bottom: 6px;
}

.why-item small {
  line-height: 1.45;
  color: inherit;
  opacity: 0.78;
}

.why-detail {
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  align-content: center;
}

.contact {
  background: var(--white);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  background: var(--soft);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  font-size: 0.88rem;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 46px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.inquiry-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  color: var(--teal);
  font-weight: 800;
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 68px);
  color: var(--white);
  background: #071a38;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.site-footer img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  text-align: right;
}

.page-header {
  position: sticky;
}

.package-hero {
  min-height: 460px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(18px, 5vw, 68px) 62px;
  color: var(--white);
  background: var(--navy);
}

.package-hero-video,
.package-hero-video iframe,
.package-hero-shade {
  position: absolute;
  inset: 0;
}

.package-hero-video {
  z-index: 0;
  overflow: hidden;
  background: var(--navy);
}

.package-hero-video iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.package-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 22, 45, 0.88), rgba(8, 39, 86, 0.54) 58%, rgba(8, 22, 45, 0.28)),
    linear-gradient(0deg, rgba(8, 22, 45, 0.62), transparent 58%);
}

.package-hero > div:not(.package-hero-video):not(.package-hero-shade) {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.package-hero h1 {
  font-size: clamp(3.6rem, 9vw, 7.5rem);
}

.package-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.7;
}

.package-detail-page {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  background: var(--soft);
}

.package-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 39, 86, 0.07);
}

.package-selector {
  display: grid;
  gap: 8px;
}

.package-selector a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
}

.package-selector a.active,
.package-selector a:hover {
  border-color: var(--coral);
  background: #fff7f4;
}

.package-selector span {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.3;
}

.package-selector small {
  color: var(--muted);
  font-weight: 800;
}

.package-full-detail {
  display: grid;
  gap: 20px;
}

.tour-product,
.detail-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 39, 86, 0.07);
}

.tour-product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 0;
  overflow: hidden;
}

.tour-gallery {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(6, 23, 48, 0.72), rgba(6, 23, 48, 0.1)),
    var(--package-bg);
  background-position: center;
  background-size: cover;
}

.tour-gallery h2 {
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.tour-gallery span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.tour-summary {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

.tour-summary h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
}

.tour-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.breadcrumb {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-price {
  display: grid;
  gap: 4px;
}

.product-price small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.product-price strong {
  color: var(--teal);
  font-size: 1.9rem;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.full-detail-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.full-detail-price {
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.full-detail-price small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.full-detail-price strong {
  color: var(--gold);
  font-size: 1.7rem;
}

.full-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.full-detail-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(8, 39, 86, 0.05);
}

.detail-block {
  padding: clamp(22px, 4vw, 34px);
}

.tour-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 20px;
  align-items: start;
}

.tour-content {
  display: grid;
  gap: 20px;
}

.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.tour-tabs span {
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.highlight-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  color: var(--navy);
  background: var(--soft);
  font-weight: 900;
}

.itinerary-list {
  display: grid;
  gap: 12px;
}

.itinerary-list article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.itinerary-list strong {
  color: var(--coral);
}

.itinerary-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.split-detail ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.booking-card {
  position: sticky;
  top: 96px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 39, 86, 0.07);
}

.booking-card p {
  color: var(--muted);
  line-height: 1.65;
}

.booking-card form {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.booking-card label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--navy);
  font-weight: 900;
}

.booking-card input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}

.booking-card .deal-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 14px;
  }

  .site-nav.open {
    display: grid;
  }

  .hero {
    min-height: 860px;
  }

  .hero-strip,
  .intro-grid,
  .section-heading,
  .contact,
  .why-us,
  .tour-catalog,
  .package-detail-page,
  .tour-product,
  .tour-page-grid,
  .split-detail {
    grid-template-columns: 1fr;
  }

  .tour-detail,
  .booking-card,
  .package-sidebar {
    position: static;
  }

  .filter-controls {
    justify-content: flex-start;
  }

  .destination-grid,
  .service-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(3.6rem, 23vw, 5.4rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-strip,
  .destination-grid,
  .service-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-price-row,
  .package-actions,
  .detail-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .deal-btn,
  .text-btn {
    width: 100%;
    justify-content: center;
  }

  .detail-inclusions {
    grid-template-columns: 1fr;
  }

  .package-hero {
    min-height: 420px;
    padding-top: 128px;
  }

  .highlight-grid,
  .itinerary-list article {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 240px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}
