:root {
  --blue: #0766ad;
  --blue-dark: #064469;
  --green: #19a463;
  --green-dark: #087f5b;
  --yellow: #ffd447;
  --yellow-soft: #fff4bf;
  --ink: #123047;
  --muted: #617485;
  --line: #d9e8ed;
  --paper: #ffffff;
  --soft: #f3fbf8;
  --shadow: 0 18px 48px rgba(6, 68, 105, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6fcff 0%, #ffffff 42%, #f7fff7 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--blue-dark);
  font-size: 1.2rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  box-shadow: inset 0 -5px 0 rgba(255, 212, 71, 0.8);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover {
  background: var(--yellow-soft);
}

.active{
  background: var(--yellow-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero,
.page-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: clamp(90px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(42px, 8vw, 78px);
  overflow: hidden;
}

.hero-overlay,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 38, 61, 0.78), rgba(7, 102, 173, 0.42), rgba(25, 164, 99, 0.2));
}

.home-slider {
  background: var(--blue-dark);
}

.slider-track,
.slide,
.slide img {
  position: absolute;
  inset: 0;
}

.slider-track {
  z-index: 0;
}

.slide {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  height: 100%;
}

.hero-overlay {
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

.slider-controls {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 46px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.slider-dots {
  display: inline-flex;
  gap: 8px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.slider-dot.active {
  width: 28px;
  background: var(--green);
  border-radius: 999px;
}

.hero-content,
.page-hero > * {
  position: relative;
  max-width: 980px;
  color: white;
}

.hero h1,
.page-hero h1,
.detail-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.detail-hero p {
  max-width: 680px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero .eyebrow,
.page-hero .eyebrow,
.detail-hero .eyebrow {
  color: var(--yellow);
}

.search-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 1040px);
  margin-top: 28px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label span,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
  background: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  background: var(--yellow);
  color: var(--blue-dark);
}

.btn.secondary {
  background: var(--blue);
  color: white;
}

.btn.full {
  width: 100%;
}

.section {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.split,
.detail-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  color: var(--blue-dark);
}

h3 {
  margin: 0 0 8px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--blue-dark);
  color: white;
}

.feature-strip article,
.review-card,
.partner-grid article,
.content-panel,
.booking-panel,
.contact-form,
.contact-info {
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.feature-strip article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px;
}

.icon-pill,
.tag,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.icon-pill {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--blue-dark);
  background: var(--yellow);
}

.image-frame img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--yellow) 0 35%, var(--green) 36% 100%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading a {
  color: var(--green-dark);
  font-weight: 900;
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.travel-card,
.package-card,
.destination-card,
.gallery-album {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.travel-card img,
.package-card img,
.destination-card img,
.gallery-album img {
  height: 230px;
}

.travel-card div,
.card-body {
  padding: 20px;
}

.page-hero.compact {
  min-height: 46vh;
  align-items: center;
}

.package-hero { background: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=82") center/cover; }
.destination-hero { background: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1600&q=82") center/cover; }
.reviews-hero { background: url("https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1600&q=82") center/cover; }
.gallery-hero { background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=82") center/cover; }
.contact-hero { background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=82") center/cover; }
.partners-hero { background: url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1600&q=82") center/cover; }

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 0;
}

.chip {
  border: 1px solid var(--line);
  padding: 9px 15px;
  background: white;
  color: var(--blue-dark);
}

.chip.active {
  background: var(--green);
  color: white;
}

.tag {
  padding: 5px 10px;
  background: rgba(7, 102, 173, 0.12);
  color: var(--blue);
  font-size: 0.78rem;
}

.tag.green { background: rgba(25, 164, 99, 0.14); color: var(--green-dark); }
.tag.yellow { background: var(--yellow-soft); color: #7a5900; }

.meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 800;
}

.destination-card,
.gallery-album {
  position: relative;
  color: white;
}

.destination-card::after,
.gallery-album::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 68, 105, 0.82));
}

.destination-card span,
.gallery-album span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 900;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 72vh;
  background: var(--blue-dark);
  color: white;
}

.detail-hero img {
  height: 100%;
  min-height: 520px;
}

.detail-hero > div {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 72px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.content-panel,
.booking-panel,
.contact-form,
.contact-info {
  padding: clamp(22px, 4vw, 36px);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline div {
  border-left: 4px solid var(--green);
  padding-left: 16px;
}

.timeline span,
.info-grid strong,
.partner-grid span {
  color: var(--blue);
  font-weight: 900;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.info-grid div {
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.info-grid span {
  display: block;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  padding: 26px;
}

.stars {
  color: #d9a900;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.review-card span {
  display: block;
  color: var(--muted);
}

.masonry {
  columns: 3 260px;
  column-gap: 18px;
}

.masonry img {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.map-box {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin-top: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 102, 173, 0.86), rgba(25, 164, 99, 0.86)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255, 255, 255, 0.18) 16px 17px);
  color: white;
  font-weight: 900;
}

.partner-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.accent-band {
  background: var(--soft);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.partner-grid article {
  padding: 24px;
  border-top: 5px solid var(--yellow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--blue-dark);
  color: white;
}

.site-footer .brand {
  color: white;
}

.site-footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--yellow);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 760ms ease, transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.from-left {
  transform: translate3d(-44px, 0, 0);
}

.reveal.from-right {
  transform: translate3d(44px, 0, 0);
}

.reveal.pop {
  transform: scale(0.9);
}

.reveal.show {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-content,
.page-hero > *,
.detail-hero > * {
  animation: heroReveal 900ms ease both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-panel,
  .intro-grid,
  .split,
  .detail-layout,
  .contact-layout,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .search-panel {
    margin-bottom: -18px;
  }

  .feature-strip,
  .cards.three,
  .cards.four,
  .review-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .hero,
  .page-hero {
    min-height: 78vh;
  }

  .home-hero {
    padding-bottom: 112px;
  }

  .slider-controls {
    left: 18px;
    right: auto;
    bottom: 24px;
  }

  .page-hero.compact {
    min-height: 42vh;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .search-panel,
  .feature-strip,
  .cards.three,
  .cards.four,
  .review-grid,
  .partner-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: start;
  }

  .travel-card img,
  .package-card img,
  .destination-card img,
  .gallery-album img {
    height: 210px;
  }
}
