:root {
  --bg: #fffefd;
  --ink: #1b1b1b;
  --mint: #bbfffd;
  --muted: #5e5e5e;
  --line: #bebebe;
  --panel: #f7f7f7;
  --footer-bg: #101520;
  --footer-ink: #d8dceb;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1160px, 92vw);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(187, 255, 253, 0.34), transparent 28%),
    radial-gradient(circle at 92% 100%, rgba(190, 190, 190, 0.2), transparent 34%),
    var(--bg);
  color: var(--ink);
  font-family: "Roboto Flex", sans-serif;
}

.about-page {
  background:
    radial-gradient(circle at 12% 6%, rgba(187, 255, 253, 0.35), transparent 32%),
    linear-gradient(180deg, #fffefd 0%, #f6fbff 100%);
}

.services-page {
  background:
    radial-gradient(circle at 88% 8%, rgba(187, 255, 253, 0.35), transparent 30%),
    linear-gradient(180deg, #fffefd 0%, #f8fbff 100%);
}

.destinations-page {
  background:
    radial-gradient(circle at 10% 3%, rgba(187, 255, 253, 0.28), transparent 27%),
    linear-gradient(180deg, #fffefd 0%, #f3f9ff 100%);
}

.contact-page {
  background:
    radial-gradient(circle at 90% 4%, rgba(187, 255, 253, 0.28), transparent 30%),
    linear-gradient(180deg, #fffefd 0%, #f6fbff 100%);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  line-height: 1.08;
  font-family: "Montserrat", sans-serif;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-space {
  padding: 76px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(255, 254, 253, 0.88);
  border-bottom: 1px solid rgba(190, 190, 190, 0.45);
}

.nav-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  width: auto;
  max-width: min(280px, 35vw);
  max-height: 86px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--mint);
  color: var(--ink);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 9px 14px;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.94rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-mint {
  background: var(--mint);
  color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.hero {
  padding: 70px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
}

.lead {
  margin-top: 20px;
  max-width: 650px;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.plane {
  width: 146%;
  max-width: none;
  margin-left: -20%;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.22));
  animation: float 3.8s ease-in-out infinite;
}

.people-chip {
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-right: -8px;
}

.people-chip strong {
  display: block;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 0.94rem;
}

.people-chip span {
  font-size: 0.78rem;
  color: var(--muted);
}

.about-grid,
.feature-grid,
.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-images .main {
  width: min(360px, 90%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about-images .badge {
  position: absolute;
  right: 6%;
  bottom: 4%;
  width: min(180px, 38%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-copy h2,
.section-head h2,
.inner-hero h1,
.feature-copy h2,
.detail-copy h2,
.contact-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.about-copy p,
.feature-copy p,
.detail-copy p,
.contact-copy p {
  margin-top: 14px;
}

.mini-stats,
.feature-stats,
.summary-cards,
.contact-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-stats div,
.feature-stats div,
.summary-cards div,
.contact-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
}

.mini-stats strong,
.feature-stats strong,
.summary-cards strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  color: var(--ink);
}

.mini-stats span,
.feature-stats span,
.summary-cards span {
  font-size: 0.85rem;
  color: var(--muted);
}

.section-head {
  margin-bottom: 24px;
}

.section-top-image {
  margin-bottom: 18px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-top-image img {
  width: 100%;
  min-height: 230px;
  max-height: 320px;
  object-fit: cover;
}

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

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li {
  margin-bottom: 7px;
  line-height: 1.5;
}

.support-showcase {
  background: #e9ecef;
  border: 1px solid #d4d8dd;
  border-radius: 18px;
  padding: 18px;
}

.support-head {
  text-align: center;
}

.support-head .eyebrow {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: none;
}

.support-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.services-support-section {
  padding-top: 28px;
}

.support-desc {
  margin: 14px auto 0;
  max-width: 860px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #2f3b45;
}

.support-intro {
  font-weight: 600;
  color: #33414e;
}

.support-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #b9c6d2;
  background: linear-gradient(180deg, #ffffff, #edf3f8);
  color: #1f2d39;
  font-weight: 700;
  font-size: 0.9rem;
}

.support-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, #1f2935, #0f1824);
  color: #f8fdff;
  font-weight: 700;
  font-size: 0.9rem;
}

.support-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
}

.support-top h3 {
  font-size: 1rem;
}

.support-top p {
  max-width: 420px;
  font-size: 0.82rem;
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mini-destination {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.mini-destination img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 18px;
}

.mini-chip {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2c3744;
  font-size: 0.63rem;
  font-weight: 700;
}

.mini-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 10px 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.75));
}

.mini-overlay h4 {
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.mini-overlay p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.66rem;
}


.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.28s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.principle-card img {
  height: 220px;
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  font-size: 1.1rem;
}

.card-body p {
  margin-top: 8px;
  font-size: 0.92rem;
}

.card-body .btn {
  margin-top: 12px;
}

.feature {
  background: var(--ink);
}

.feature-grid > img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.feature-copy .eyebrow,
.feature-copy h2,
.feature-copy p,
.feature-copy span {
  color: var(--bg);
}

.feature-stats strong {
  color: var(--mint);
}

.feature-stats div {
  border-color: rgba(255, 255, 255, 0.26);
  background: transparent;
}

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

.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.quote img {
  width: 100%;
  border-radius: 16px;
}

.quote h3 {
  margin-top: 14px;
  font-size: 1.04rem;
}

.quote p {
  margin-top: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  grid-auto-flow: dense;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

.gallery img.tall {
  grid-row: span 2;
}

.subscribe-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
}

.subscribe-box > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subscribe-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 22, 27, 0.88), rgba(20, 22, 27, 0.45));
}

.subscribe-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 48px 40px;
}

.subscribe-content .eyebrow,
.subscribe-content h2 {
  color: #fff;
}

.subscribe-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.subscribe-form {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input,
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 12px 16px;
  font: inherit;
  outline: none;
}

.subscribe-form input {
  min-width: 270px;
}

.inner-hero {
  padding: 86px 0 56px;
}

.page-hero {
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.about-hero::before {
  background-image: url("assets/images/Image-About-Us-Hiling-1.png");
}

.services-hero::before {
  background-image: url("assets/images/Plane-Image-1-1024x338.png");
}

.services-page .services-hero {
  margin: 0;
  max-width: none;
  border-radius: 0 0 26px 26px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 86px 0 56px;
  min-height: 340px;
  background-image:
    linear-gradient(120deg, rgba(8, 14, 20, 0.78), rgba(8, 14, 20, 0.58)),
    url("assets/images/Image-About-Us-Hiling-1.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.services-page .services-hero::before {
  display: none;
}

.services-page .services-hero .inner-hero-wrap {
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.services-page .services-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.services-page .services-hero .breadcrumb {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.about-page .about-hero,
.destinations-page .destinations-hero,
.contact-page .contact-hero {
  display: grid;
  align-items: center;
  min-height: 340px;
}

.about-page .about-hero .inner-hero-wrap,
.destinations-page .destinations-hero .inner-hero-wrap,
.contact-page .contact-hero .inner-hero-wrap {
  text-align: center;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
}

.destination-detail-page .inner-hero-wrap {
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
}

.destinations-hero::before {
  background-image: url("assets/images/Image-Subscribe-Hiling-1-1024x428.png");
}

.contact-hero::before {
  background-image: url("assets/images/Image-New-Zealand-Hiling-1.png");
}

.inner-hero-wrap {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 52px;
  background: linear-gradient(120deg, rgba(187, 255, 253, 0.52), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(4px);
}

.breadcrumb {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.itinerary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.itinerary h3 {
  margin-bottom: 14px;
}

.itinerary ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.itinerary li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.destinations-page .custom-route-section {
  padding: 34px 0;
}

.destinations-page .custom-route-section .itinerary {
  padding: 20px 24px;
}

.destinations-page .custom-route-section .itinerary h3 {
  margin-bottom: 8px;
}

.itinerary-section {
  padding: 34px 0;
}

.itinerary-section .itinerary {
  padding: 20px 24px;
}

.service-block-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-top: 8px;
  max-width: 760px;
}

.service-feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.service-feature-badge {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #23d3ce, #2f83ff);
}

.service-feature-card h4 {
  margin: 12px 0 8px;
  font-size: 1rem;
}

.service-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-solution-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 20px;
}

.service-solution-image img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-solution-content h3 {
  margin-top: 8px;
  font-size: clamp(1.5rem, 2.7vw, 2rem);
}

.service-solution-content p {
  color: var(--muted);
  line-height: 1.6;
}

.service-check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.service-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: linear-gradient(120deg, #23d3ce, #2f83ff);
}

.service-stat-grid {
  margin: 18px 0 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-stat-grid div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: #f8fdff;
}

.service-stat-grid strong {
  display: block;
  font-size: 1.35rem;
}

.service-stat-grid span {
  color: var(--muted);
  font-size: 0.85rem;
}

.service-timeline-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.service-timeline-intro h3 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
}

.service-timeline-intro p {
  color: var(--muted);
  max-width: 460px;
}

.service-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.service-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(35, 211, 206, 0.55), rgba(47, 131, 255, 0.55));
}

.service-timeline article {
  position: relative;
  margin-left: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 14px 16px;
  box-shadow: var(--shadow);
}

.service-timeline article::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2f83ff;
  box-shadow: 0 0 0 4px rgba(47, 131, 255, 0.18);
}

.service-timeline h4 {
  margin: 0;
  font-size: 1rem;
}

.service-timeline p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.contact-form textarea {
  width: 100%;
  min-height: 130px;
  border-radius: 14px;
  resize: vertical;
}

.contact-form input,
.contact-form textarea {
  margin-top: 10px;
}

.map-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.story-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  min-height: 320px;
  object-fit: cover;
}

.story-copy {
  padding: 6px 6px 6px 2px;
}

.story-points {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.story-points div {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(90deg, #f7ffff, #ffffff);
  color: var(--muted);
  font-size: 0.94rem;
}

.service-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #ecfdff, #ffffff);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-intro-image {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #101520, #1b2538);
  padding: 16px;
}

.service-intro-image img {
  width: 100%;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.25));
}

.service-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border: 1px solid #d8e1e8;
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
}

.service-clickable {
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(14, 26, 41, 0.16);
}

.service-card-image {
  height: 185px;
  border-bottom: 1px solid #dce4ec;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 18px 20px 20px 24px;
}

.service-btn {
  margin-top: 12px;
  padding: 10px 16px;
  font-size: 0.85rem;
}

.destination-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, #f1ffff, #ffffff);
  padding: 22px;
  box-shadow: var(--shadow);
}

.destination-banner-image img {
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.destination-detail-page {
  background: linear-gradient(180deg, #f3f5f8 0%, #eceff4 100%);
}

.destination-board-section {
  padding-top: 42px;
}

.destination-board {
  background: #fff;
  border: 1px solid #d9e1e8;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.destination-board-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 8px 20px;
  margin-bottom: 4px;
}

.board-chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d6dee7;
  background: #f6f9fc;
  color: #4f5c69;
  font-size: 0.73rem;
  font-weight: 600;
}

.destination-board-cover {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d7dfe7;
}

.destination-board-cover img {
  width: 100%;
  height: 320px;
  min-height: 320px;
  object-fit: cover;
}

.destination-board-content {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.destination-main h2 {
  margin-top: 6px;
  font-size: clamp(1.8rem, 2.9vw, 2.35rem);
}

.destination-main {
  padding-left: 12px;
}

.destination-main > p {
  margin-top: 10px;
}

.board-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e2e7ee;
}

.board-block h3 {
  font-size: 1.1rem;
}

.board-block p {
  margin-top: 10px;
}

.board-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.board-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.board-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.board-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d9e1e8;
  background: #f8fbff;
  color: #516170;
  font-size: 0.73rem;
  font-weight: 600;
}

.destination-side {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 116px;
}

.side-card {
  border: 1px solid #d9e1e8;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 14px;
}

.side-card h4 {
  font-size: 1.02rem;
}

.side-stat {
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d8e0e8;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
  color: #566473;
}

.side-stat strong {
  color: var(--ink);
  text-align: right;
}

.side-actions {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.side-actions .btn {
  width: 100%;
}

.side-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #697788;
}

.board-map {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d6dee7;
  min-height: 170px;
}

.board-map iframe {
  width: 100%;
  height: 170px;
  border: 0;
}

.contact-copy-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  align-items: stretch;
}

.contact-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.contact-copy-panel .contact-copy h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.contact-card-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}

.contact-card-item h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-card-item p {
  margin: 0;
  line-height: 1.45;
  word-break: break-word;
}

.contact-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.86rem;
  border: 1px solid #c9d4df;
  background: #f3f8fc;
  color: #435569;
}

.contact-form {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.contact-form-top {
  margin-bottom: 4px;
}

.contact-form-top .eyebrow {
  margin-bottom: 8px;
}

.contact-form-top h3 {
  font-size: 1.45rem;
  margin: 0;
}

.contact-form-top p {
  margin-top: 8px;
  color: var(--muted);
}

.contact-form .btn {
  margin-top: auto;
  align-self: flex-start;
}

.map-rich {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: block;
  padding: 0;
  background: #dfe8f0;
}

.map-rich::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 25, 0.14), rgba(10, 16, 25, 0));
  pointer-events: none;
}

.map-rich iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-label {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(190, 190, 190, 0.65);
  border-radius: 14px;
  padding: 10px 12px;
  max-width: min(420px, 92%);
}

.map-label strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.98rem;
}

.map-label p {
  color: var(--muted);
  font-size: 0.82rem;
}

.map-section-copy {
  margin-bottom: 16px;
}

.map-section-copy > p:last-child {
  margin-top: 10px;
  max-width: 760px;
}

.inline-contact-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d7e0e8;
  box-shadow: var(--shadow);
  background: #f4f8fc;
}

.inline-contact-visual {
  position: relative;
  min-height: 580px;
}

.inline-contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(12, 20, 34, 0.22));
}

.inline-contact-visual h3 {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.inline-contact-dots {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 1;
  display: flex;
  gap: 8px;
}

.inline-contact-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
}

.inline-contact-dots span:first-child {
  background: #fff;
}

.inline-contact-form {
  padding: 34px 30px 22px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  color: var(--ink);
}

.inline-contact-form h3 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.inline-contact-form input {
  width: 100%;
  border: 1px solid #c6d3de;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  margin-top: 12px;
  outline: none;
}

.inline-contact-form input::placeholder {
  color: #6a7785;
}

.inline-contact-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
}

.inline-contact-code {
  text-align: center;
}

.inline-contact-submit {
  margin-top: 14px;
  width: 100%;
  border: 1px solid #b8c9d6;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--mint);
  color: var(--ink);
  cursor: pointer;
}

.inline-contact-note {
  margin-top: 14px;
  color: #607083;
  font-size: 0.82rem;
}

.inline-contact-year {
  margin-top: 10px;
  color: #607083;
  font-size: 0.85rem;
}

body.modal-open {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 16, 23, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 250;
}

.quote-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-dialog {
  width: min(980px, 96vw);
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
  background: #07090d;
}

.quote-visual-panel {
  position: relative;
  min-height: 560px;
}

.quote-visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 33, 62, 0.2), rgba(9, 12, 18, 0.42));
}

.quote-visual-panel h3 {
  position: absolute;
  top: 48px;
  left: 34px;
  z-index: 1;
  color: #fff;
  font-size: 2rem;
}

.quote-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 1;
}

.quote-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
}

.quote-dots span:first-child {
  background: #fff;
}

.quote-form-panel {
  position: relative;
  background: linear-gradient(180deg, #06080c, #090d14);
  color: #fff;
  padding: 34px 34px 24px;
}

.quote-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.quote-form-panel h3 {
  margin: 2px 0 18px;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.quote-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.quote-row {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 10px;
}

.quote-code {
  text-align: center;
}

.quote-submit {
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  background: #fff;
  color: #121212;
  cursor: pointer;
}

.quote-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.quote-year {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.footer {
  margin-top: 50px;
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: 84px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr) 1.2fr;
  gap: 26px;
}

.footer-logo {
  width: auto;
  max-width: min(300px, 100%);
  max-height: 120px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: #bfc7dc;
}

.footer h4 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.footer a:hover {
  color: #fff;
}

.socials {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.socials .social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 0;
}

.socials .social-link img {
  width: 15px;
  height: 15px;
  opacity: 0.92;
  filter: brightness(0) saturate(100%) invert(94%) sepia(6%) saturate(430%) hue-rotate(183deg) brightness(88%) contrast(87%);
}

.socials .social-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.socials .social-link:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.footer-subscribe input {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 12px 14px;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: #9ea8c5;
}

.reveal {
  opacity: 0;
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal[data-anim="fade-up"] {
  transform: translateY(28px);
}

.reveal[data-anim="fade-left"] {
  transform: translateX(26px);
}

.reveal[data-anim="fade-right"] {
  transform: translateX(-26px);
}

.reveal[data-anim="zoom"] {
  transform: scale(0.92);
}

.reveal[data-anim="fade-down"] {
  transform: translateY(-24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-11px);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .feature-grid,
  .detail-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .plane {
    width: 122%;
    margin-left: -10%;
  }

  .grid-3,
  .testimonials,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-top {
    flex-direction: column;
  }

  .story-panel,
  .service-intro,
  .destination-banner,
  .service-solution-layout,
  .service-timeline-grid,
  .inline-contact-shell {
    grid-template-columns: 1fr;
  }

  .destination-board-content {
    grid-template-columns: 1fr;
  }

  .destination-side {
    position: static;
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summary-cards,
  .mini-stats,
  .feature-stats,
  .contact-cards,
  .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav-wrap {
    min-height: 92px;
  }

  .logo-img {
    max-width: min(220px, 48vw);
    max-height: 68px;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 4vw;
    right: 4vw;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .topbar .btn {
    display: none;
  }

  .section-space {
    padding: 60px 0;
  }

  .services-support-section {
    padding-top: 16px;
  }

  .inner-hero-wrap {
    padding: 34px 22px;
  }

  .services-page .services-hero {
    margin: 0;
    padding: 86px 0 56px;
    min-height: 260px;
    border-radius: 0 0 18px 18px;
  }

  .about-page .about-hero,
  .destinations-page .destinations-hero,
  .contact-page .contact-hero {
    min-height: 260px;
  }

  .about-page .about-hero .inner-hero-wrap,
  .destinations-page .destinations-hero .inner-hero-wrap,
  .contact-page .contact-hero .inner-hero-wrap {
    padding: 0;
  }

  .destination-detail-page .inner-hero-wrap {
    padding: 0;
  }

  .services-page .services-hero .inner-hero-wrap {
    padding: 0;
  }

  .services-page .services-hero .breadcrumb {
    font-size: 0.78rem;
  }

  .destinations-page .custom-route-section {
    padding: 24px 0;
  }

  .destinations-page .custom-route-section .itinerary {
    padding: 16px;
  }

  .itinerary-section {
    padding: 24px 0;
  }

  .itinerary-section .itinerary {
    padding: 16px;
  }

  .destination-board-section {
    padding-top: 20px;
  }

  .destination-board {
    padding: 14px;
    border-radius: 18px;
  }

  .destination-board-top {
    gap: 8px;
    padding: 4px 4px 14px;
    margin-bottom: 2px;
  }

  .destination-board-cover img {
    height: 220px;
    min-height: 220px;
  }

  .destination-board-content {
    margin-top: 14px;
    gap: 14px;
  }

  .destination-main {
    padding-left: 4px;
  }

  .destination-main h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .inline-contact-visual {
    min-height: 250px;
  }

  .inline-contact-form {
    padding: 22px 16px 18px;
  }

  .inline-contact-form h3 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .inline-contact-row {
    grid-template-columns: 86px 1fr;
  }

  .plane {
    width: 124%;
    margin-left: -12%;
  }

  .grid-3,
  .testimonials,
  .services-grid,
  .gallery,
  .summary-cards,
  .mini-stats,
  .feature-stats,
  .contact-cards,
  .service-feature-grid,
  .service-stat-grid,
  .contact-form .row {
    grid-template-columns: 1fr;
  }

  .service-check-list {
    grid-template-columns: 1fr;
  }

  .service-solution-layout {
    padding: 14px;
  }

  .service-solution-image img {
    min-height: 220px;
  }

  .support-strip {
    grid-template-columns: 1fr;
  }


  .quote-dialog {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: 92vh;
    overflow-y: auto;
  }

  .quote-visual-panel {
    min-height: 230px;
  }

  .quote-visual-panel h3 {
    top: 20px;
    left: 16px;
    font-size: 1.4rem;
  }

  .quote-dots {
    bottom: 14px;
  }

  .quote-form-panel {
    padding: 22px 16px 18px;
  }

  .quote-form-panel h3 {
    font-size: 1.45rem;
    padding-right: 44px;
  }

  .quote-row {
    grid-template-columns: 86px 1fr;
  }

  .service-card-image {
    height: 160px;
  }

  .story-panel,
  .service-intro,
  .destination-banner {
    padding: 14px;
  }

  .subscribe-content {
    padding: 30px 24px;
  }

  .footer {
    padding-top: 62px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
