:root {
  --ink: #102033;
  --muted: #64748b;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --line: #e2e8f0;
  --primary: #2d7dd2;
  --primary-dark: #174f86;
  --accent: #d4a574;
  --teal: #28b5b5;
  --rose: #e86f8d;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

.flight-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-header,
main,
.site-footer,
.payment-modal {
  position: relative;
}

.site-header,
.payment-modal {
  z-index: 50;
}

main,
.site-footer {
  z-index: 1;
}

.sky-plane {
  position: absolute;
  left: -140px;
  display: block;
  width: var(--plane-size, 78px);
  height: var(--plane-size, 78px);
  opacity: var(--plane-opacity, 0.12);
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.18));
  animation: flyAcross var(--flight-duration, 38s) linear infinite;
  animation-delay: var(--flight-delay, 0s);
}

.sky-plane svg {
  width: 100%;
  height: 100%;
  fill: rgba(45, 125, 210, 0.08);
  stroke: rgba(45, 125, 210, 0.46);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5px;
}

.sky-plane-one {
  --plane-size: 92px;
  --plane-opacity: 0.13;
  --flight-duration: 34s;
  --flight-delay: -4s;
  top: 16vh;
}

.sky-plane-two {
  --plane-size: 58px;
  --plane-opacity: 0.09;
  --flight-duration: 46s;
  --flight-delay: -18s;
  top: 38vh;
}

.sky-plane-three {
  --plane-size: 74px;
  --plane-opacity: 0.1;
  --flight-duration: 52s;
  --flight-delay: -31s;
  top: 67vh;
}

.sky-plane-four {
  --plane-size: 50px;
  --plane-opacity: 0.08;
  --flight-duration: 60s;
  --flight-delay: -9s;
  top: 84vh;
}

@keyframes flyAcross {
  0% {
    transform: translate3d(-12vw, 0, 0) rotate(10deg);
  }
  50% {
    transform: translate3d(55vw, -46px, 0) rotate(14deg);
  }
  100% {
    transform: translate3d(118vw, 18px, 0) rotate(10deg);
  }
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 14px 34px rgba(45, 125, 210, 0.32);
}

.logo-plane {
  position: relative;
  overflow: hidden;
}

.logo-plane svg {
  position: absolute;
  inset: 6px 6px auto auto;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4px;
  transform: rotate(-7deg);
}

.logo-plane b {
  position: absolute;
  left: 9px;
  bottom: 7px;
  font-size: 15px;
}

.brand strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.84;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > a,
.nav-group > button,
.nav-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  color: inherit;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav > a:hover,
.nav-group > button:hover,
.nav-logout:hover,
.main-nav .nav-cta {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .main-nav > a:hover,
.site-header.is-scrolled .nav-group > button:hover,
.site-header.is-scrolled .nav-logout:hover,
.site-header.is-scrolled .main-nav .nav-cta {
  background: #eef6ff;
  color: var(--primary-dark);
}

.auth-link {
  white-space: nowrap;
}

.logged-in,
body.is-authenticated .logged-out,
body.is-guest .logged-in {
  display: none !important;
}

body.is-authenticated .logged-in {
  display: inline-flex !important;
}

.nav-logout {
  border: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
}

.pay-link,
.btn.dark {
  color: #fff !important;
  background: linear-gradient(135deg, #111827, #0f172a) !important;
}

.nav-group {
  position: relative;
}

.nav-group svg {
  width: 16px;
  height: 16px;
}

.mega-menu,
.mini-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mega-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  width: min(850px, calc(100vw - 40px));
  padding: 24px;
  gap: 22px;
}

.mini-menu {
  width: 190px;
  padding: 10px;
}

.mini-menu-all {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  color: var(--primary-dark) !important;
  font-weight: 850 !important;
}

.hotel-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(720px, calc(100vw - 40px));
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-60%, 8px);
  transition: all 0.2s ease;
}

.hotel-nav-group:hover .hotel-menu,
.hotel-nav-group:focus-within .hotel-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-60%, 0);
}

.hotel-menu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.hotel-menu-head span {
  display: block;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hotel-menu-head h3 {
  margin: 4px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.hotel-menu-head > a {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
}

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

.hotel-menu-card {
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 10px;
  background: #fff;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 125, 210, 0.3);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.hotel-menu-card img {
  width: auto;
  max-width: 92px;
  height: 34px;
  object-fit: contain;
}

.hotel-menu-card span,
.hotel-menu-card small {
  margin-top: 8px;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
}

.hotel-menu-card.property-link {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 82px;
  padding-inline: 14px;
  text-align: left;
}

.hotel-menu-card.property-link span {
  margin-top: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.hotel-menu-card.property-link small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.hotel-wordmark,
.airline-wordmark {
  margin: 0 !important;
  color: #16243a !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
}

.nav-group:hover .mega-menu,
.nav-group:hover .mini-menu,
.nav-group:focus-within .mega-menu,
.nav-group:focus-within .mini-menu {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu h3,
.mega-menu h4 {
  margin: 0 0 10px;
}

.mega-menu h3 {
  color: var(--primary-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.mega-menu h4 {
  color: var(--accent);
  font-size: 13px;
}

.mega-menu a,
.mini-menu a {
  display: block;
  border-radius: 8px;
  padding: 7px 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.mega-menu a:hover,
.mini-menu a:hover {
  color: var(--primary-dark);
  background: #eef6ff;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding: 96px clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 150px clamp(18px, 5vw, 72px) 78px;
  color: #fff;
  isolation: isolate;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--hero-img) center / cover;
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(0.94);
  transition: opacity 1.6s ease-in-out, filter 1.6s ease-in-out;
  animation: none;
}

.hero-slide.is-active {
  opacity: 1;
  filter: saturate(1);
  animation: slowZoom 7.5s ease-in-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 22, 39, 0.78), rgba(9, 22, 39, 0.38), rgba(9, 22, 39, 0.16)),
    linear-gradient(0deg, rgba(9, 22, 39, 0.48), transparent 50%);
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  max-width: 760px;
}

.hero-copy,
.hero-feature {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-copy.is-changing,
.hero-feature.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--primary);
}

.hero h1,
.section-head h2,
.stats-content h2,
.membership-copy h2,
.contact-hero h2 {
  margin: 14px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 8vw, 86px);
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 18px;
}

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 20px 42px rgba(45, 125, 210, 0.34);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.hero-feature {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 54px;
  width: min(330px, calc(100vw - 36px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.hero-feature span,
.hero-feature small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.hero-feature strong {
  display: block;
  margin: 8px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
}

.hero-dots {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 56px;
  background: #fff;
}

.section-head {
  width: min(780px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.light {
  color: #fff;
}

.section-head h2,
.contact-hero h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.promise-card,
.service,
.benefit,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.promise-card:hover,
.service:hover,
.benefit:hover,
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 125, 210, 0.3);
  box-shadow: var(--shadow);
}

.promise-card svg,
.service svg,
.benefit svg,
.contact-card svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.promise-card h3,
.service h3,
.benefit h3,
.contact-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.promise-card p,
.service p,
.benefit p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.stats-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  min-height: 520px;
  background: #0b1726;
  color: #fff;
}

.stats-image {
  background: url("https://images.unsplash.com/photo-1582719508461-905c673771fd?auto=format&fit=crop&w=1400&q=82") center / cover;
}

.stats-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(24px, 6vw, 86px);
}

.stats-content h2 {
  max-width: 640px;
  font-size: clamp(34px, 5vw, 62px);
}

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

.stats-grid div,
.mini-stats div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid strong,
.mini-stats strong {
  display: block;
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
}

.stats-grid span,
.mini-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

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

.destination-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  box-shadow: var(--shadow);
}

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

.destination-card::before {
  background: var(--img) center / cover;
  transition: transform 0.45s ease;
}

.destination-card::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.82));
}

.destination-card:hover::before {
  transform: scale(1.08);
}

.destination-card div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.destination-card strong {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  color: #101827;
  background: #fff;
}

.destination-card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
}

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

.themes {
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.88), rgba(14, 56, 83, 0.8)),
    url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1800&q=82") center / cover fixed;
}

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

.theme-tile {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 8px;
  color: #fff;
  box-shadow: var(--shadow);
}

.theme-tile img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.theme-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
}

.theme-tile h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
}

.theme-tile:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.membership {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 22, 39, 0.92), rgba(29, 78, 116, 0.86)),
    url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.membership-copy h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.membership-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

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

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

.benefit {
  color: var(--ink);
}

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

.partners {
  overflow: hidden;
}

.plans {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.membership-page-main {
  min-height: 100vh;
  background: #f8fbff;
}

.membership-plans-only {
  padding: 150px clamp(18px, 5vw, 72px) 90px;
}

.membership-plans-only .section-head h1 {
  margin: 12px 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
}

.membership-plan-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.membership-plan-details article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.membership-plan-details svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.membership-plan-details h2 {
  margin: 0 0 7px;
  font-size: 17px;
}

.membership-plan-details p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 125, 210, 0.35);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  border-color: rgba(212, 165, 116, 0.7);
  box-shadow: 0 24px 70px rgba(212, 165, 116, 0.22);
}

.plan-badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: 8px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
}

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

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
}

.plan-price span {
  margin-top: 8px;
  color: var(--accent);
  font-size: 24px;
}

.plan-card small {
  color: var(--muted);
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 700;
}

.plan-card li svg {
  width: 18px;
  height: 18px;
  color: #16a34a;
}

.plan-card li.muted {
  color: var(--muted);
}

.plan-card li.muted svg {
  color: #ef4444;
}

.plan-action {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.pkg-guarantee {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(820px, 100%);
  margin: 32px auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.pkg-guarantee svg {
  width: 42px;
  height: 42px;
  color: var(--primary);
}

.pkg-guarantee h3,
.pkg-guarantee p {
  margin: 0;
}

.pkg-guarantee p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.logo-marquee {
  border-block: 1px solid var(--line);
  margin: 24px 0 0;
  overflow: hidden;
  background: #fff;
}

.logo-marquee.airline {
  margin-top: 18px;
  background: #f8fbff;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 18px;
  animation: marquee 32s linear infinite;
}

.logo-track.reverse {
  animation-direction: reverse;
  animation-duration: 26s;
}

.logo-track span {
  font-weight: 900;
}

.partner-logo {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 170px;
  height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.partner-logo img {
  display: block;
  width: auto;
  max-width: 122px;
  height: 38px;
  object-fit: contain;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.contact {
  background: #f8fafc;
}

.contact-hero {
  padding: 110px clamp(18px, 5vw, 72px) 90px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 22, 39, 0.92), rgba(45, 125, 210, 0.7)),
    url("https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.contact-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px);
  margin-top: -46px;
}

.contact-card a {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 28px;
  padding: 64px clamp(18px, 5vw, 72px) 96px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  border-radius: 8px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form .full,
.contact-form .submit-btn,
.contact-form .form-note {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  outline: none;
  color: var(--ink);
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45, 125, 210, 0.12);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  border: 0;
  border-radius: 12px;
  padding: 16px 28px;
  color: #fff;
  background: #0f172a;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(45, 125, 210, 0.28);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.map-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.map-overlay h3 {
  margin: 0 0 8px;
}

.map-overlay p {
  margin: 0 0 14px;
  color: var(--muted);
}

.map-overlay a {
  color: var(--primary);
  font-weight: 850;
}

.inner-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 72vh;
  padding: 150px clamp(18px, 6vw, 90px) 76px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 18, 32, 0.9), rgba(7, 18, 32, 0.52), rgba(7, 18, 32, 0.16));
}

.inner-hero > div {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
}

.inner-hero h1 {
  max-width: 800px;
  margin: 12px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.98;
}

.inner-hero > div > p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

.about-page-hero {
  background-image: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1900&q=84");
}

.contact-page-hero {
  min-height: 58vh;
  background-image: url("https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1900&q=84");
}

.hotels-page-hero {
  min-height: 46vh;
  padding-bottom: 52px;
  background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1900&q=84");
}

.hotels-page-hero h1 {
  font-size: clamp(44px, 6vw, 68px);
}

.inner-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 34px;
}

.inner-hero-stats span {
  display: grid;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.inner-hero-stats strong {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  text-transform: none;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 620px;
}

.about-collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-main-image {
  inset: 0 70px 60px 0;
  width: calc(100% - 70px);
  height: calc(100% - 60px);
}

.about-small-image {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 250px;
  border: 10px solid #fff;
}

.about-collage > span {
  position: absolute;
  top: 34px;
  right: 8px;
  display: grid;
  width: 128px;
  padding: 18px;
  color: #fff;
  background: var(--primary-dark);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-collage > span strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
}

.about-story-copy h2,
.hotel-catalogue-head h2,
.contact-form-wrap h2 {
  margin: 12px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.about-story-copy p,
.contact-form-wrap > p {
  color: var(--muted);
  line-height: 1.8;
}

.about-story-copy blockquote {
  margin: 28px 0;
  border-left: 4px solid var(--primary);
  padding: 12px 0 12px 22px;
  color: var(--primary-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

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

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

.difference-grid article {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--line);
  padding: 28px;
  background: #fff;
}

.difference-grid article > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #dce7f1;
  font-size: 34px;
  font-weight: 900;
}

.difference-grid svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.difference-grid h3 {
  margin: 42px 0 10px;
}

.difference-grid p,
.values-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.values-band {
  padding: 90px clamp(18px, 6vw, 90px);
  color: #fff;
  background: #0b1d31;
}

.values-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 26px;
}

.values-grid strong {
  color: var(--accent);
  font-size: 13px;
}

.values-grid h3 {
  margin: 18px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}

.values-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-page {
  background: #f8fafc;
}

.contact-page-cards {
  position: relative;
  z-index: 2;
}

.contact-form-wrap {
  border-radius: 8px;
  padding: 36px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form-wrap .contact-form {
  margin-top: 28px;
  padding: 0;
  box-shadow: none;
}

.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  color: var(--ink);
  background: #f8fafc;
}

.hotel-catalogue {
  padding-top: 58px;
  background: #f7f9fc;
}

.hotel-catalogue-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 38px;
}

.hotel-catalogue-head h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.hotel-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hotel-filters button {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.hotel-filters button:hover,
.hotel-filters button.is-active {
  border-color: var(--primary-dark);
  color: #fff;
  background: var(--primary-dark);
}

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

.hotel-property {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hotel-property:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.14);
}

.hotel-property[hidden] {
  display: none;
}

.hotel-property-image {
  position: relative;
  height: 285px;
  overflow: hidden;
}

.hotel-property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hotel-property:hover img {
  transform: scale(1.04);
}

.hotel-property-image span {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 5px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(7, 18, 32, 0.84);
  font-size: 11px;
  font-weight: 800;
}

.hotel-property-image span svg {
  width: 15px;
}

.hotel-property-copy {
  padding: 24px;
}

.hotel-property-copy small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 800;
}

.hotel-property-copy small svg {
  width: 15px;
}

.hotel-property-copy h3 {
  min-height: 56px;
  margin: 13px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
}

.hotel-property-copy p {
  min-height: 78px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hotel-property-copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 850;
}

.hotel-property-copy a svg {
  width: 16px;
}

.hotel-disclaimer {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.travel-moods-hero {
  min-height: 58vh;
  background-image: url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1900&q=84");
}

.mood-collection {
  background: #f7f9fc;
}

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

.mood-page-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 18, 32, 0.04), rgba(7, 18, 32, 0.88)),
    var(--mood-image) center / cover;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.mood-page-card:first-child {
  grid-row: span 2;
  min-height: 802px;
}

.mood-page-card:hover {
  transform: translateY(-5px);
}

.mood-page-card > span {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 36px;
  font-weight: 900;
  opacity: 0.75;
}

.mood-page-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
}

.mood-page-card p {
  max-width: 580px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.mood-page-card strong,
.mood-destination-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mood-page-card svg,
.mood-destination-grid svg {
  width: 17px;
}

.mood-detail-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 70vh;
  padding: 150px clamp(18px, 6vw, 90px) 76px;
  color: #fff;
  background: var(--mood-detail-image) center / cover;
}

.mood-detail-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 18, 32, 0.9), rgba(7, 18, 32, 0.36));
}

.mood-detail-hero > div {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
}

.mood-detail-hero h1 {
  margin: 12px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(60px, 10vw, 110px);
  line-height: 0.95;
}

.mood-detail-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

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

.mood-destination-grid a {
  position: relative;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.mood-destination-grid a > span {
  color: #d9e4ef;
  font-size: 34px;
  font-weight: 900;
}

.mood-destination-grid h3 {
  margin: 34px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
}

.mood-destination-grid strong {
  color: var(--primary-dark);
  font-size: 13px;
}

.services-page-main {
  min-height: 100vh;
  background: #f7f9fc;
}

.services-only {
  padding-top: 150px;
}

.services-only .section-head h1 {
  margin: 12px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6vw, 70px);
  line-height: 1.05;
}

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

.services-page-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}

.services-page-grid article:last-child {
  grid-column: 1 / -1;
}

.service-image {
  height: 220px;
  margin: -28px -28px 26px;
  overflow: hidden;
}

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

.services-page-grid article > span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.services-page-grid article > svg {
  position: absolute;
  top: 240px;
  right: 26px;
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.services-page-grid h2 {
  margin: 10px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
}

.services-page-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  border-radius: 8px;
  padding: 32px;
  color: #fff;
  background: #0b1d31;
}

.services-contact h2,
.services-contact p {
  margin: 0;
}

.services-contact p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  gap: 42px;
  padding: 70px clamp(18px, 5vw, 72px) 32px;
  color: rgba(255, 255, 255, 0.78);
  background: #081321;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
}

.footer-brand p,
.site-footer p {
  max-width: 430px;
  line-height: 1.75;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.copyright span {
  display: block;
  margin-top: 8px;
}

.copyright a {
  display: inline;
  color: var(--accent);
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.social-links a {
  font-weight: 900;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 19, 33, 0.7);
  backdrop-filter: blur(8px);
}

.payment-modal.is-open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  border-radius: 18px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin: 12px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
}

.modal-card p {
  color: var(--muted);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef2f7;
  cursor: pointer;
}

.auth-page {
  background: #f8fafc;
}

.auth-page .site-header {
  color: var(--ink);
}

.auth-wrap,
.dashboard-wrap {
  min-height: 100vh;
  padding: 130px clamp(18px, 5vw, 72px) 70px;
}

.auth-wrap {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 255, 0.88)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.auth-panel {
  width: min(560px, 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(26px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.auth-panel h1,
.dashboard-hero h1 {
  margin: 12px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.04;
}

.auth-panel p,
.dashboard-hero p {
  color: var(--muted);
  line-height: 1.7;
}

.auth-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 850;
}

.auth-form input,
.auth-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  outline: none;
  background: #f8fafc;
}

.auth-form input:focus,
.auth-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 125, 210, 0.12);
  background: #fff;
}

.auth-switch {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-dark);
  font-weight: 900;
}

.dashboard-hero {
  border-radius: 18px;
  padding: clamp(28px, 6vw, 60px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 22, 39, 0.9), rgba(45, 125, 210, 0.72)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.dashboard-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  margin-top: 28px;
}

.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.dashboard-card.featured {
  border-color: rgba(45, 125, 210, 0.25);
}

.dashboard-card h2 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
}

.dashboard-card p {
  color: var(--muted);
  line-height: 1.7;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.admin-stats article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.admin-stats strong {
  display: block;
  color: var(--primary-dark);
  font-size: 38px;
  font-weight: 900;
}

.admin-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.admin-table-card {
  margin-top: 28px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: #334155;
  background: #f8fafc;
  font-size: 13px;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--ink);
  font-weight: 800;
}

.admin-table small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 600;
}

.destination-page {
  background: #f8fafc;
}

.destination-detail-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 72vh;
  padding: 150px clamp(18px, 6vw, 90px) 78px;
  overflow: hidden;
  color: #fff;
  background: var(--destination-image) center / cover;
}

.destination-detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 32, 0.88), rgba(7, 18, 32, 0.48), rgba(7, 18, 32, 0.12)),
    linear-gradient(0deg, rgba(7, 18, 32, 0.64), transparent 60%);
}

.destination-detail-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.destination-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.destination-breadcrumb a:hover {
  color: #fff;
}

.destination-detail-copy h1 {
  margin: 12px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 9vw, 94px);
  line-height: 0.96;
}

.destination-detail-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.7;
}

.destination-overview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.destination-intro h2,
.destination-cta h2 {
  margin: 12px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.destination-intro p,
.destination-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.destination-highlights article {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.destination-highlights article > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #dbe7f3;
  font-size: 38px;
  font-weight: 900;
}

.destination-highlights svg {
  width: 34px;
  height: 34px;
  color: var(--primary);
}

.destination-highlights h3 {
  margin: 34px 0 10px;
  font-size: 20px;
}

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

.destination-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 70px clamp(18px, 6vw, 90px);
  color: #fff;
  background: linear-gradient(135deg, #0b1726, #174f86);
}

.destination-cta h2 {
  margin-bottom: 8px;
}

.destination-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero .hero-copy.is-changing,
.hero .hero-feature.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .site-header {
    gap: 12px;
    padding-inline: 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 9px;
  }

  .main-nav {
    gap: 1px;
  }

  .main-nav > a,
  .nav-group > button,
  .nav-logout {
    min-height: 40px;
    padding: 8px 7px;
    font-size: 12px;
  }

  .nav-group svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 1120px) {
  .promise-grid,
  .service-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .membership,
  .stats-band,
  .contact-main,
  .dashboard-grid,
  .admin-stats,
  .destination-overview,
  .about-story {
    grid-template-columns: 1fr;
  }

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

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

  .mood-page-grid,
  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .mood-page-card:first-child {
    grid-row: auto;
    min-height: 390px;
  }

  .services-page-grid article:last-child {
    grid-column: auto;
  }

  .membership-plan-details {
    grid-template-columns: 1fr;
  }

  .hotel-catalogue-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hotel-filters {
    justify-content: flex-start;
  }

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

  .stats-image {
    min-height: 420px;
  }
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .nav-group > button,
  .nav-logout {
    justify-content: space-between;
    width: 100%;
  }

  .mega-menu,
  .mini-menu,
  .hotel-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 10px;
    transform: none;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }

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

  .nav-group:hover .mega-menu,
  .nav-group:hover .mini-menu,
  .nav-group:focus-within .mega-menu,
  .nav-group:focus-within .mini-menu {
    transform: none;
  }

  .hotel-nav-group:hover .hotel-menu,
  .hotel-nav-group:focus-within .hotel-menu {
    transform: none;
  }

  .nav-group.is-open .mega-menu,
  .nav-group.is-open .mini-menu {
    display: grid;
  }

  .nav-group.is-open .mini-menu {
    display: block;
  }

  .nav-group.is-open .hotel-menu {
    display: block;
  }

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

  .hero-feature {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
  }

  .hero-dots {
    bottom: 18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 9px;
  }

  .section {
    padding: 72px 16px;
  }

  .hero {
    padding: 118px 16px 54px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-dots {
    left: 16px;
  }

  .hero-dot {
    width: 24px;
  }

  .hero-dot.is-active {
    width: 42px;
  }

  .sky-plane {
    --plane-opacity: 0.06;
  }

  .promise-grid,
  .service-grid,
  .contact-cards,
  .destination-grid,
  .theme-grid,
  .benefit-grid,
  .stats-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

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

  .pkg-guarantee {
    align-items: flex-start;
  }

  .stats-image {
    min-height: 300px;
  }

  .contact-main {
    padding-inline: 16px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .submit-btn {
    width: 100%;
  }

  .map-panel {
    min-height: 420px;
  }

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

  .auth-wrap,
  .dashboard-wrap {
    padding: 112px 16px 52px;
  }

  .destination-detail-hero {
    min-height: 680px;
    padding: 120px 16px 60px;
  }

  .inner-hero {
    min-height: 620px;
    padding: 120px 16px 56px;
  }

  .inner-hero h1 {
    font-size: 46px;
  }

  .membership-plans-only {
    padding: 120px 16px 70px;
  }

  .about-collage {
    min-height: 470px;
  }

  .difference-grid,
  .values-grid,
  .hotel-catalogue-grid,
  .mood-destination-grid {
    grid-template-columns: 1fr;
  }

  .mood-page-card {
    min-height: 350px;
    padding: 24px;
  }

  .mood-page-card:first-child {
    min-height: 350px;
  }

  .mood-detail-hero {
    min-height: 660px;
    padding: 120px 16px 58px;
  }

  .services-only {
    padding: 120px 16px 70px;
  }

  .services-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .hotel-property-copy h3,
  .hotel-property-copy p {
    min-height: 0;
  }

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

  .destination-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 54px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .flight-background {
    display: none;
  }

  .hero-slide {
    transition: none;
  }
}
