﻿:root {
  --page: #10161d;
  --page-2: #151d26;
  --text: #f7f4ec;
  --text-dark: #e7eaf0;
  --muted: #cfc8bb;
  --muted-dark: #b7c0cd;
  --gold: #d4af37;
  --gold-2: #efc65a;
  --card-dark: #121b25;
  --card-dark-2: #182432;
  --line: rgba(212, 175, 55, 0.35);
  --line-soft: rgba(255, 255, 255, 0.22);
  --radius: 20px;
  --container: min(1240px, 92vw);
  --transition: 280ms ease;
  --site-bg-image: url("images/new background for site.png");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(1200px 650px at 12% -8%, rgba(61, 80, 101, 0.26), rgba(16, 22, 29, 0) 58%),
    radial-gradient(900px 560px at 100% 110%, rgba(54, 72, 93, 0.22), rgba(16, 22, 29, 0) 62%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0) 18px),
    linear-gradient(180deg, var(--page) 0%, var(--page-2) 100%);
  background-image:
    linear-gradient(180deg, rgba(8, 12, 18, 0.42), rgba(8, 12, 18, 0.48)),
    var(--site-bg-image);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  line-height: 1.64;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: var(--container); margin: 0 auto; }
.section-pad { padding: 5.3rem 0; }
.pt-small { padding-top: 2.2rem; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  background: var(--gold);
  color: #15120b;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 20, 28, 0.88);
  backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.header-transparent {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

.site-header.header-transparent.is-scrolled {
  background: rgba(13, 20, 28, 0.9);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.nav-wrap {
  min-height: 6.4rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  color: #f7f4ec;
}

.brand img {
  width: auto;
  height: 5.1rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span { font-size: 1.22rem; white-space: nowrap; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3); }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav a {
  position: relative;
  color: rgba(245, 242, 235, 0.95);
  font-size: 1.12rem;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  transition: color var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] { color: #fff; }

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after { width: 100%; }

.btn {
  min-height: 3.2rem;
  border-radius: 999px;
  padding: 0.65rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
}

.btn-outline {
  border: 1px solid var(--line);
  color: #f6de9e;
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.16);
  color: #fff3cb;
}

.btn-solid {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, #efc65a 0%, #c79f2f 100%);
  color: #15130c;
  box-shadow: 0 8px 18px rgba(199, 159, 47, 0.3);
}

.btn-solid:hover,
.btn-solid:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 13px 26px rgba(199, 159, 47, 0.36);
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.03);
  margin-left: auto;
  padding: 0.45rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

.menu-toggle span + span { margin-top: 0.35rem; }

h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.16;
}

h1 { font-size: clamp(3.1rem, 6.2vw, 6rem); letter-spacing: 0.03em; }
h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 1.4rem; color: #f0f3f8; }
h3 { font-size: clamp(1.18rem, 2.1vw, 1.8rem); }

p { color: var(--muted-dark); }

.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(120deg, #607f99, #3e5b72);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: brightness(1.12) contrast(1.06) saturate(1.06);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 20, 0.26), rgba(10, 15, 20, 0.34));
}

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

.hero-home {
  min-height: min(97vh, 920px);
  display: grid;
  align-items: center;
  padding-top: 9.4rem;
}

.hero-inner {
  min-height: 52vh;
  display: grid;
  align-items: center;
  padding-top: 8rem;
}

.hero-content { max-width: 980px; }
.hero-logo {
  width: min(12rem, 26vw);
  margin: 0 auto 1.2rem;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  font-size: clamp(2.35rem, 5.4vw, 5.4rem);
}

[data-offer-page] .hero::after {
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.2), rgba(8, 12, 18, 0.62));
}

[data-offer-page] .hero h1 {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
}

.hero-title-main {
  display: inline;
  font-size: 1em;
  line-height: 1;
}

.hero p {
  max-width: 48rem;
  margin: 1rem auto 0;
  font-size: clamp(1.24rem, 1.9vw, 1.52rem);
  color: rgba(255, 250, 238, 0.98);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.36);
}

.hero-actions {
  margin-top: 2.65rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.45rem;
  transform: translateX(-50%);
  display: inline-grid;
  place-items: center;
  gap: 0.2rem;
  color: #f5f2e8;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-arrow {
  font-size: 1.06rem;
  color: var(--gold-2);
  animation: bounceDown 1.6s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.section-sub { margin: 0; color: #c1cad7; }

.surface-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(22, 33, 44, 0.96), rgba(18, 29, 38, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 16px 32px rgba(10, 16, 24, 0.24), inset 0 0 0 1px rgba(212, 175, 55, 0.07);
}

.section-panel { padding: 1.5rem; }

.surface-card {
  background: linear-gradient(180deg, rgba(30, 41, 52, 0.95), rgba(24, 34, 44, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.35rem;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-btn {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(24, 34, 44, 0.86);
  color: #fff;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.destination-slide {
  position: relative;
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: clamp(17.5rem, 34vw, 24rem);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 14px 28px rgba(0, 0, 0, 0.2), 0 0 20px rgba(223, 202, 145, 0.11);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  filter: brightness(1.06) contrast(1.03);
}

.destination-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2));
}

.destination-slide span {
  position: absolute;
  left: 1.35rem;
  bottom: 1.15rem;
  z-index: 2;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  letter-spacing: 0.01em;
}

.destination-slide:hover,
.destination-slide:focus-visible {
  transform: translateY(-5px) scale(1.02);
  filter: brightness(1.11) contrast(1.04);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 28px rgba(223, 202, 145, 0.18);
}

.about-home {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
}

.about-home::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
}

.about-home .eyebrow {
  color: var(--gold-2);
  font-size: 0.92rem;
  letter-spacing: 0.09em;
}

.about-home h2 { font-size: clamp(2.1rem, 3.5vw, 3.35rem); margin-bottom: 0.95rem; color: #fff; }
.about-home p { font-size: 1.13rem; line-height: 1.82; color: #ebe4d5; }

.about-home-image {
  position: relative;
  border-radius: var(--radius);
  min-height: 470px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-home-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 20, 0.06), rgba(10, 15, 20, 0.2));
}

.about-watermark {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: min(12.8rem, 40%);
  opacity: 0.46;
}

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

.feature-item {
  border-radius: 18px;
  padding: 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-item:hover,
.feature-item:focus-within {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.27);
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.feature-icon svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }

.feature-item h3 {
  font-family: Inter, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.46;
  color: #fff;
}

.featured-offer {
  min-height: clamp(16rem, 35vw, 24rem);
  display: flex;
  align-items: end;
  padding: clamp(1.5rem, 2.5vw, 2.3rem);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(10, 15, 20, 0.08), rgba(10, 15, 20, 0.4)),
    var(--bg-image),
    linear-gradient(120deg, #405465, #2a3641);
  background-size: cover;
  background-position: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.82rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.46);
  color: #f7dd9c;
  font-size: 0.76rem;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 0.62rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.83rem;
}

.offer-content h2 { margin-bottom: 1.15rem; max-width: 33rem; color: #fff; }

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.74rem;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f0ede3;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  min-height: 2.38rem;
  padding: 0.4rem 1rem;
  font-size: 0.96rem;
  cursor: pointer;
  transition: all var(--transition);
}

.chip:hover,
.chip:focus-visible,
.chip.is-active {
  border-color: var(--gold);
  color: #fff1c8;
  background: rgba(212, 175, 55, 0.14);
}

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

.offer-card {
  background: linear-gradient(180deg, rgba(28, 39, 50, 0.95), rgba(23, 33, 43, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.offer-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}

.offer-card:hover,
.offer-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.offer-card:hover img,
.offer-card:focus-within img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.offer-body { padding: 1.08rem; }
.offer-body h3 { color: #fff; font-size: 1.45rem; }
.offer-body p { margin: 0.5rem 0 1rem; color: #ded6c9; font-size: 1.05rem; }
.offer-card.is-hidden { display: none; }
.offer-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-empty {
  grid-column: 1 / -1;
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px dashed rgba(34, 43, 53, 0.35);
  color: #4f5d6c;
  background: rgba(255, 255, 255, 0.5);
}

.offer-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.offer-main,
.offer-side { color: #fff; }

.offer-side {
  align-self: start;
  height: fit-content;
}

.offer-main-media { margin-bottom: 1rem; }
.offer-main-image {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.offer-thumbs {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.thumb-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.thumb-btn img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.thumb-btn.is-active,
.thumb-btn:hover,
.thumb-btn:focus-visible {
  border-color: rgba(212, 175, 55, 0.75);
  transform: translateY(-1px);
}

.offer-main-content h2,
.offer-side h3 { color: #fff; }

.offer-price-pill {
  margin: 0 0 0.8rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: #fce6ab;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.48);
  font-weight: 600;
}

.offer-main-lead {
  margin: 0.7rem 0 1rem;
  font-size: 1.08rem;
  color: #e5ddcf;
  white-space: pre-wrap;
}
.offer-main-content .clean-list li { color: #ddd6c8; font-size: 1.04rem; }
.offer-main-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.signup-form { display: grid; gap: 0.75rem; }
.signup-form label { display: grid; gap: 0.35rem; color: #e4ddcf; }
.offer-side .signup-form label {
  color: #243450;
  font-weight: 600;
}
.offer-side .signup-form input,
.offer-side .signup-form textarea {
  border-color: rgba(15, 23, 42, 0.25);
  color: #0f172a;
}
.cta-signup {
  color: #101010 !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}
.cta-signup:hover,
.cta-signup:focus-visible {
  color: #111111 !important;
  filter: brightness(1.02);
  outline: 2px solid rgba(200, 162, 74, 0.65);
  outline-offset: 2px;
}

.about-copy p {
  color: #23314b;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.8;
  margin: 0 0 1rem;
}
.about-copy h2 {
  color: #0f172a;
  margin-bottom: 1rem;
}
.form-success {
  margin: 0.2rem 0 0;
  color: #c8f0c9;
  background: rgba(92, 169, 99, 0.2);
  border: 1px solid rgba(92, 169, 99, 0.5);
  padding: 0.55rem 0.65rem;
  border-radius: 0.45rem;
}

.offer-rich-sections {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.offer-rich-sections h3 {
  margin: 0 0 0.35rem;
}

.offer-rich-sections p {
  white-space: pre-wrap;
}

.is-skeleton {
  position: relative;
  overflow: hidden;
}

.is-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: skeletonSweep 1.2s infinite;
}

.skeleton-media {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.15);
}

.skeleton-line {
  height: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.45rem;
}

.skeleton-line.w90 { width: 90%; }
.skeleton-line.w80 { width: 80%; }
.skeleton-line.w70 { width: 70%; }
.skeleton-line.w60 { width: 60%; }
.skeleton-line.w45 { width: 45%; }
.skeleton-line.w40 { width: 40%; }

.dest-skeleton-line {
  height: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  margin: 1rem;
}

.dest-skeleton-line.short {
  width: 50%;
}

@keyframes skeletonSweep {
  100% {
    transform: translateX(100%);
  }
}

.offer-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.offer-gallery img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

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

.mission-card { border-radius: 18px; padding: 1.25rem; color: #fff; }
.mission-card p { margin: 0.75rem 0 0; color: #d8d1c4; }

.contact-layout {
  display: grid;
  gap: 2.1rem;
  grid-template-columns: 1fr 1fr;
  color: #fff;
}

.contact-layout h2,
.contact-layout p,
.contact-layout a { color: #fff; }

.contact-form { display: grid; gap: 0.9rem; }
.contact-form label { display: grid; gap: 0.4rem; color: #dfd8ca; font-size: 0.95rem; }

.hero-contact {
  min-height: 68vh;
}

.hero-contact h1 {
  font-size: clamp(3rem, 8.2vw, 7rem);
  letter-spacing: 0.02em;
}

.hero-contact p {
  max-width: 48rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.contact-showcase {
  position: relative;
  margin-top: -2rem;
}

.contact-showcase-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: clamp(1.3rem, 2.8vw, 2.25rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(120deg, rgba(11, 21, 32, 0.82), rgba(14, 24, 37, 0.76)),
    url("images/new background for site.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.contact-meta h2 {
  color: #f3d58a;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.contact-info-list {
  display: grid;
  gap: 0.9rem;
}

.contact-info-list p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  font-size: clamp(1.1rem, 1.8vw, 1.9rem);
  color: #f2ede1;
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.75);
  color: #ffe2a1;
  background: rgba(212, 175, 55, 0.18);
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
  flex: 0 0 auto;
}

.contact-form-premium {
  gap: 1rem;
}

.contact-form-premium label {
  color: #f6ead4;
  font-size: 1.1rem;
}

.contact-form-premium input,
.contact-form-premium textarea {
  border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(15, 23, 33, 0.48);
}

.contact-form-premium .btn {
  width: fit-content;
  min-width: 180px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 0.65rem;
  padding: 0.76rem 0.8rem;
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
  outline: none;
}

.content-narrow { max-width: 780px; }
.clean-list { margin: 0 0 1.5rem; padding-left: 1.1rem; }
.clean-list li { margin-bottom: 0.45rem; color: #ddd5c8; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(20, 30, 40, 0.97), rgba(16, 24, 33, 0.97));
  padding-bottom: 3rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.48), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand { margin-bottom: 0.95rem; }
.footer-brand img { width: auto; height: 6rem; }
.footer-brand span { font-size: 1.2rem; color: #fff; }

.footer-grid p { margin: 0.34rem 0; color: rgba(236, 232, 222, 0.92); }
.footer-links { display: grid; gap: 0.82rem; }
.footer-links a { color: rgba(236, 232, 222, 0.92); font-size: 1rem; }
.footer-links a:hover,
.footer-links a:focus-visible { color: #fff0c3; }

.socials { display: flex; gap: 0.68rem; }
.socials a {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  color: #efeade;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  transition: all var(--transition);
}

.socials a:hover,
.socials a:focus-visible {
  border-color: var(--gold);
  color: #fff0c3;
  background: rgba(212, 175, 55, 0.11);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Admin */
.admin-page { min-height: 100vh; padding: 2rem 0; }
.admin-shell { width: min(1240px, 92vw); margin: 0 auto; }
.admin-shell h1 { font-size: clamp(2rem, 4vw, 3rem); }
.admin-sub { margin-top: 0.2rem; }
.admin-warning {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 180, 180, 0.4);
  border-radius: 0.6rem;
  background: rgba(255, 100, 100, 0.1);
  color: #ffd7d7;
}

.admin-card {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28, 39, 50, 0.95), rgba(22, 32, 42, 0.93));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.admin-card h2,
.admin-card h3,
.admin-card p,
.admin-card label,
.admin-card strong { color: #fff; }

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}

.admin-form { display: grid; gap: 0.75rem; }
.admin-form label { display: grid; gap: 0.35rem; }
.admin-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.admin-check { display: flex; align-items: center; gap: 0.55rem; }
.admin-check input { width: auto; }

.admin-list { margin-top: 1rem; display: grid; gap: 0.55rem; }
.admin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.55rem;
}

.admin-row p { margin: 0.1rem 0 0; font-size: 0.85rem; }
.admin-row-actions { display: flex; gap: 0.45rem; }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; }
.admin-error { color: #ffb3b3; }

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; table-layout: fixed; }

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.5rem;
  text-align: left;
  vertical-align: top;
}

.admin-table .col-title,
.admin-table .col-destination {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.admin-login-card {
  width: min(460px, 92vw);
  padding: 2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 30, 40, 0.95), rgba(14, 22, 31, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: 0.85rem;
  color: #fff;
}

.admin-login-card h1 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 0.2rem; }
.admin-login-card label { display: grid; gap: 0.35rem; color: #e7ddcc; }

.admin-dashboard-shell { padding-top: 0.6rem; }
.admin-quick-actions {
  margin: 1rem 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-action-card {
  min-height: 7rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(25, 37, 49, 0.94), rgba(17, 27, 36, 0.95));
  color: #fff;
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.admin-action-card:hover,
.admin-action-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.admin-panels { display: grid; gap: 1rem; }

@media (max-width: 1100px) {
  .offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-layout { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .destination-slide { flex-basis: calc((100% - 1rem) / 2); }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .section-pad { padding: 4.2rem 0; }
  .desktop-cta { display: none; }
  .menu-toggle { display: inline-block; }

  .nav {
    position: fixed;
    inset: 6.8rem 0 auto 0;
    background: rgba(14, 22, 29, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 4vw 1.2rem;
    display: grid;
    gap: 0.9rem;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    margin-left: 0;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav.is-open { transform: scaleY(1); opacity: 1; pointer-events: auto; }

  .brand img { width: auto; height: 4.2rem; }
  .brand span { font-size: 1.03rem; }

  .hero-home { min-height: 92vh; padding-top: 10rem; }
  .hero-logo {
    width: min(9.8rem, 34vw);
    margin-bottom: 0.9rem;
  }
  .hero h1 { font-size: clamp(1.55rem, 7.2vw, 2.7rem); }
  .scroll-indicator { display: none; }

  .section-head { flex-direction: column; align-items: start; }
  .carousel { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .destination-slide { flex-basis: 86%; }

  .about-home,
  .features,
  .offers-grid,
  .offer-thumbs,
  .offer-gallery,
  .contact-layout,
  .contact-showcase-card,
  .footer-grid { grid-template-columns: 1fr; }

  .about-home { padding: 1.4rem; gap: 1.2rem; }
  .about-home-image { min-height: 360px; }

  .footer-brand img { width: auto; height: 4.6rem; }

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
}











:root {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #0F172A;
  --muted: #475569;
  --primary: #1D4ED8;
  --gold: #C8A24A;
  --gold2: #E7C873;
  --border: rgba(15,23,42,0.08);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(15,23,42,0.08);
}

.home-modern {
  font-family: Inter, "Open Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.home-modern .container {
  width: min(1240px, 92vw);
}

.home-modern .site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
}

.home-modern .site-header.is-scrolled,
.home-modern .site-header.header-transparent.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.home-modern .nav-wrap {
  min-height: 5.3rem;
}

.home-modern .brand {
  color: var(--primary);
  font-family: Poppins, Montserrat, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.home-modern .brand img {
  height: 3.2rem;
}

.home-modern .brand span {
  font-size: 1.42rem;
  text-shadow: none;
}

.home-modern .nav a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-shadow: none;
}

.home-modern .nav a:hover,
.home-modern .nav a:focus-visible,
.home-modern .nav a[aria-current="page"] {
  color: var(--primary);
}

.home-modern .nav a::after {
  background: var(--gold);
}

.home-modern .btn {
  border-radius: 12px;
  font-weight: 600;
}

.home-modern .btn-outline {
  border: 1px solid rgba(200, 162, 74, 0.7);
  color: #855f11;
  background: rgba(255, 255, 255, 0.66);
}

.home-modern .btn-outline:hover,
.home-modern .btn-outline:focus-visible {
  background: rgba(231, 200, 115, 0.28);
  border-color: var(--gold);
  color: #714f0d;
}

.home-modern .btn-solid {
  border: 0;
  color: #fff;
  background: linear-gradient(120deg, var(--gold), var(--gold2));
  box-shadow: 0 8px 20px rgba(200, 162, 74, 0.32);
}

.home-modern .btn-solid:hover,
.home-modern .btn-solid:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(200, 162, 74, 0.4);
}

.home-modern h1,
.home-modern h2,
.home-modern h3 {
  font-family: Poppins, Montserrat, sans-serif;
  color: var(--text);
}

.home-modern p {
  color: var(--muted);
}

.home-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 7.5rem 0 4rem;
  background: var(--bg);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.82) 0%, rgba(248, 250, 252, 0.5) 36%, rgba(248, 250, 252, 0.06) 62%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.home-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.8vw, 4.2rem);
  line-height: 1.05;
  max-width: 11ch;
  color: #173680;
}

.home-hero-copy p {
  margin: 1.15rem 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  max-width: 28ch;
  line-height: 1.55;
  color: #234182;
}

.home-hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.home-hero-visual {
  min-height: clamp(320px, 50vh, 560px);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 120px;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-wave path {
  fill: var(--bg);
}

.hero-wave .wave-line {
  fill: none;
  stroke: rgba(148, 163, 184, 0.45);
  stroke-width: 1;
}

.home-featured {
  padding-top: 4rem;
  background: var(--bg);
}

.home-modern .section-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 1.3rem;
}

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

.featured-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  transition: transform 320ms ease;
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.05) 30%, rgba(2, 6, 23, 0.5) 100%);
}

.featured-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 600;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

.featured-card:hover,
.featured-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.15);
}

.featured-card:hover::before,
.featured-card:focus-visible::before {
  transform: scale(1.03);
}

.home-why {
  padding-top: 3.6rem;
}

.home-modern .surface-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.home-why-grid {
  padding: clamp(1.2rem, 2.4vw, 2rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
}

.home-why-left h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.home-why-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.why-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem;
}

.why-icon {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.08);
  color: var(--primary);
  font-weight: 700;
}

.why-item h3 {
  font-size: 1.08rem;
  margin: 0.65rem 0 0.3rem;
}

.why-item p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.home-why-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow);
}

.home-why-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-footer {
  margin-top: 2rem;
  background: #fff;
  border-top: 1px solid var(--border);
}

.home-footer::before {
  display: none;
}

.home-modern .footer-brand img {
  height: 3.1rem;
}

.home-modern .footer-brand span,
.home-modern .footer-links a,
.home-modern .footer-grid p,
.home-modern .footer-grid a {
  color: var(--text);
}

.home-modern .footer-links a:hover,
.home-modern .footer-links a:focus-visible {
  color: var(--primary);
}

@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-grid,
  .home-why-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 74vh;
  }

  .home-hero-visual {
    min-height: 240px;
  }
}

@media (max-width: 780px) {
  .home-modern .nav {
    background: rgba(248, 250, 252, 0.98);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .home-modern .menu-toggle {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.9);
  }

  .home-modern .menu-toggle span {
    background: var(--text);
  }

  .home-modern .brand img {
    height: 2.75rem;
  }

  .home-modern .brand span {
    font-size: 1.05rem;
  }

  .home-hero {
    padding-top: 6.8rem;
    min-height: 80vh;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(248, 250, 252, 0.86) 0%, rgba(248, 250, 252, 0.58) 42%, rgba(248, 250, 252, 0.14) 100%),
      var(--hero-image);
    background-size: cover;
    background-position: 64% center;
  }

  .home-hero-copy {
    text-align: center;
  }

  .home-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
    margin: 0 auto;
  }

  .home-hero-copy p {
    margin-left: auto;
    margin-right: auto;
    color: #1e3a8a;
    font-size: 1.12rem;
  }

  .home-hero-actions {
    justify-content: center;
  }

  .hero-wave {
    height: 82px;
  }

  .featured-grid,
  .home-why-features,
  .home-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    min-height: 280px;
  }
}


/* FINAL CLEAN LIGHT THEME (static hero, no slider) */
:root {
  --site-bg-image: url("images/new background for site.png");
}

body {
  color: #0f172a;
  background-image: var(--site-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

p { color: #334155; }
h2 { color: #0f172a; }

.site-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.site-header.header-transparent {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.site-header.header-transparent.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.brand,
.brand span,
.nav a {
  color: #0f172a;
  text-shadow: none;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: #1d4ed8;
}

.btn-outline {
  border-color: rgba(200, 162, 74, 0.55);
  color: #8a6518;
  background: rgba(255, 255, 255, 0.88);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(231, 200, 115, 0.3);
  color: #6f4f11;
}

.home-modern {
  background: transparent;
}

.home-modern .home-hero,
.home-modern .hero-v2 {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  padding-top: 7.2rem;
  overflow: hidden;
}

/* Prevent double-rendered hero image on home page (base .hero::before + .hero-v2::before) */
.home-modern .hero::before {
  display: none !important;
}

.home-modern .hero-v2::before,
.home-modern .home-hero::before {
  display: none;
}

.home-modern .hero-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.42) 38%, rgba(255, 255, 255, 0.02) 68%);
  z-index: 1;
  pointer-events: none;
}

.home-modern .home-hero-grid {
  position: relative;
  z-index: 2;
}

.home-modern .hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
}

/* Home header: match same style as inner pages */
.home-modern .site-header,
.home-modern .site-header,
.home-modern .site-header.header-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.home-modern .site-header.is-scrolled,
.home-modern .site-header.header-transparent.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.home-modern .nav-wrap {
  min-height: 6rem;
}

.home-modern .brand {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.home-modern .brand img {
  height: 5.1rem;
}

.home-modern .brand span {
  font-size: 1.22rem;
  text-transform: none;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.home-modern .nav a {
  font-size: 1.12rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.home-modern .nav a::after {
  display: none;
}

.home-modern .desktop-cta {
  min-height: 3rem;
  padding: 0.55rem 1.45rem;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.home-modern .site-header.is-scrolled .brand,
.home-modern .site-header.is-scrolled .nav a,
.home-modern .site-header.is-scrolled .desktop-cta {
  text-shadow: none;
}

.home-modern .site-header.is-scrolled .brand {
  color: #0f172a;
}

.home-modern .site-header.is-scrolled .nav a {
  color: #0f172a;
}

.home-modern .site-header.is-scrolled .desktop-cta {
  border-color: rgba(200, 162, 74, 0.6);
  color: #8a6518;
  background: rgba(255, 255, 255, 0.92);
}

/* Keep background visible on home sections */
.home-modern .home-featured,
.home-modern .home-offers,
.home-modern .home-why,
.home-modern .site-content-bg {
  background: transparent !important;
}

.home-modern .site-content-bg {
  background-image: var(--site-bg-image) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.home-modern .home-hero-copy {
  max-width: min(920px, 100%);
}

.home-modern .hero-v2 .glass-panel {
  width: min(920px, 100%);
  max-width: min(920px, 100%);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
  padding: 26px;
}

.home-modern .hero-v2 .home-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.home-modern .home-hero-visual {
  display: none;
}

.home-modern .hero-v2 .home-hero-copy h1 {
  margin: 0;
  color: #13316d;
  font-size: clamp(1.9rem, 3.8vw, 3.55rem);
  line-height: 1.12;
  white-space: nowrap;
}

.home-modern .hero-v2 .home-hero-copy .nowrap {
  color: #a3771f;
  white-space: nowrap;
}

.home-modern .hero-v2 .home-hero-copy p {
  font-size: clamp(1.06rem, 1.45vw, 1.3rem);
  color: #1e3a8a;
  max-width: 38ch;
}

.home-modern .hero-v2 .hero-controls,
.home-modern .hero-arrow,
.home-modern .hero-dots,
.home-modern .hero-dot {
  display: none !important;
}

.home-modern .hero-v2 .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 900ms ease;
  z-index: 0;
}

.home-modern .hero-v2 .hero-bg-current {
  opacity: 1;
}

.home-modern .hero-v2 .hero-bg-next {
  opacity: 0;
}

.hero-wave {
  height: 96px;
}

.hero-wave path {
  fill: #ffffff;
}

.hero-wave .wave-line {
  fill: none;
  stroke: rgba(148, 163, 184, 0.5);
}

.site-content-bg {
  background-image: none;
  background: transparent;
}

.home-modern .home-offers {
  padding-top: 0.8rem;
}

.offers-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
  align-items: stretch;
}

.offer-home-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.offer-home-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.offer-home-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
}

.offer-home-body h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.15rem, 1.55vw, 1.38rem);
}

.offer-home-body p {
  margin: 0;
  color: #475569;
}

.offer-home-body .btn {
  margin-top: auto;
}

.surface-panel,
.home-modern .surface-panel,
.contact-showcase-card,
.offer-card,
.admin-card,
.admin-login-card,
.admin-action-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.offer-body h3,
.offer-main,
.offer-side,
.offer-main-content h2,
.offer-side h3,
.contact-layout,
.contact-layout h2,
.contact-layout p,
.contact-layout a,
.admin-card h2,
.admin-card h3,
.admin-card p,
.admin-card label,
.admin-card strong,
.admin-login-card,
.admin-login-card label {
  color: #0f172a;
}

.offer-body p,
.mission-card p,
.clean-list li,
.form-success,
.contact-form label,
.contact-info-list p,
.footer-grid p,
.footer-links a {
  color: #334155;
}

input,
textarea,
select,
.contact-form-premium input,
.contact-form-premium textarea {
  border: 1px solid rgba(15, 23, 42, 0.22);
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
}

input::placeholder,
textarea::placeholder {
  color: #64748b;
}

.filter-chips {
  gap: 0.62rem;
}

.chip {
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #0f172a;
  background: #ffffff;
  font-weight: 500;
}

.chip:hover,
.chip:focus-visible,
.chip.is-active {
  border-color: #c8a24a;
  color: #1e3a8a;
  background: #fff7e6;
}

.home-modern .home-why {
  padding-top: 2.8rem;
}

.home-modern .home-why-grid {
  padding: clamp(1.2rem, 2.6vw, 2.2rem);
  background: rgba(255, 255, 255, 0.94);
}

.home-modern .home-why-features {
  gap: 1rem;
}

.home-modern .why-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.home-modern .why-item h3 {
  margin-top: 0.5rem;
  color: #0f172a;
}

.home-modern .why-item p {
  margin: 0.3rem 0 0;
  color: #334155;
}

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, rgba(200, 162, 74, 0.48), transparent);
}

.hero {
  background: transparent;
}

.hero::before {
  filter: none;
  transform: none;
}

.hero::after {
  display: none;
}

body:not(.home-modern) .hero h1 {
  color: #0f172a;
  text-shadow: none;
}

body:not(.home-modern) .hero p {
  color: #334155;
  text-shadow: none;
}

.footer-brand span,
.socials a {
  color: #0f172a;
}

.socials a {
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 780px) {
  body {
    background-attachment: scroll;
  }

  .nav {
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(15, 23, 42, 0.14);
    border-bottom: 1px solid rgba(15, 23, 42, 0.14);
  }

  .home-modern .hero-v2,
  .home-modern .home-hero {
    min-height: 100svh;
    height: 100svh;
    padding-top: 6.3rem;
  }

  .home-modern .hero-left-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.46) 44%, rgba(255, 255, 255, 0.06) 100%);
  }

  .home-modern .hero-v2 .glass-panel {
    padding: 20px;
  }

  .home-modern .hero-v2 .home-hero-copy h1 {
    white-space: normal;
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .offers-home-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL HEADER UNIFICATION (all public pages) */
.site-header.header-transparent {
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.site-header.header-transparent .brand,
.site-header.header-transparent .nav a,
.site-header.header-transparent .desktop-cta {
  color: #ffffff !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.site-header.header-transparent .desktop-cta {
  border-color: rgba(255, 255, 255, 0.72) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.site-header.header-transparent .nav a::after {
  background: rgba(255, 255, 255, 0.88);
}

.site-header.header-transparent.is-scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1) !important;
}

.site-header.header-transparent.is-scrolled .brand,
.site-header.header-transparent.is-scrolled .nav a,
.site-header.header-transparent.is-scrolled .desktop-cta {
  color: #0f172a !important;
  text-shadow: none !important;
}

.site-header.header-transparent.is-scrolled .desktop-cta {
  border-color: rgba(200, 162, 74, 0.6) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #8a6518 !important;
}

/* Keep header proportions identical everywhere */
.site-header .nav-wrap { min-height: 6rem; }
.site-header .brand img { height: 5.1rem; }
.site-header .brand span {
  font-size: 1.22rem;
  letter-spacing: 0.06em;
}
.site-header .nav a {
  font-size: 1.12rem;
  font-weight: 600;
}
.site-header .desktop-cta {
  min-height: 3rem;
  padding: 0.55rem 1.45rem;
}

@media (max-width: 780px) {
  .site-header.header-transparent .nav {
    background: rgba(255, 255, 255, 0.96) !important;
    border-top: 1px solid rgba(15, 23, 42, 0.14) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.14) !important;
  }

  .site-header.header-transparent .nav a {
    color: #0f172a !important;
    text-shadow: none !important;
  }
}

/* TOP DESTINATIONS - CENTER FOCUS CAROUSEL */
.top-dest-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.35rem;
  padding-top: 0.4rem;
  position: relative;
  z-index: 12;
}

.top-dest-head p {
  margin: 0.5rem 0 0;
  color: #6b7280;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.top-dest-all-btn {
  min-width: 180px;
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: #1f2a44;
}

.top-dest-carousel {
  position: relative;
  height: clamp(470px, 54vw, 560px);
  overflow: hidden;
  user-select: none;
  z-index: 2;
}

.top-dest-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.top-dest-card {
  --x: 0%;
  --s: 1;
  --o: 1;
  --z: 1;
  --w: clamp(215px, 19vw, 300px);
  --h: clamp(280px, 31vw, 360px);
  position: absolute;
  left: 50%;
  top: 52%;
  bottom: auto;
  width: var(--w);
  height: var(--h);
  border-radius: 28px;
  overflow: hidden;
  opacity: var(--o);
  z-index: var(--z);
  transform: translate(-50%, -50%) translateX(var(--x)) scale(var(--s));
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.86) brightness(0.9);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.top-dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.05) 34%, rgba(2, 6, 23, 0.62) 100%);
}

.top-dest-card[data-slot='0'] {
  --x: 0%;
  --w: clamp(360px, 31vw, 500px);
  --h: clamp(420px, 44vw, 520px);
  --s: 1;
  --o: 1;
  --z: 5;
  filter: none;
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.28);
}

.top-dest-card[data-slot='-1'] {
  --x: -40%;
  --w: clamp(260px, 22vw, 360px);
  --h: clamp(330px, 36vw, 430px);
  --s: 0.8;
  --o: 0.8;
  --z: 4;
  filter: saturate(0.74) blur(0.2px);
}

.top-dest-card[data-slot='1'] {
  --x: 40%;
  --w: clamp(260px, 22vw, 360px);
  --h: clamp(330px, 36vw, 430px);
  --s: 0.8;
  --o: 0.8;
  --z: 4;
  filter: saturate(0.74) blur(0.2px);
}

.top-dest-card[data-slot='-2'] {
  --x: -64%;
  --w: clamp(215px, 18vw, 285px);
  --h: clamp(290px, 30vw, 355px);
  --s: 0.8;
  --o: 0.5;
  --z: 3;
  filter: saturate(0.66) blur(0.35px);
}

.top-dest-card[data-slot='2'] {
  --x: 64%;
  --w: clamp(215px, 18vw, 285px);
  --h: clamp(290px, 30vw, 355px);
  --s: 0.8;
  --o: 0.5;
  --z: 3;
  filter: saturate(0.66) blur(0.35px);
}

.top-dest-card[data-slot='hidden'] {
  --o: 0;
  --z: 1;
  pointer-events: none;
}

.top-dest-card-btn,
.top-dest-card-meta {
  position: relative;
  z-index: 2;
}

.top-dest-card-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.86);
  color: #111827;
  font-size: 1.1rem;
  backdrop-filter: blur(2px);
  transition: transform 220ms ease, background-color 220ms ease;
}

.top-dest-card-btn:hover,
.top-dest-card-btn:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
}

.top-dest-card-meta {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1rem;
}

.top-dest-card-meta h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
}

.top-dest-card-meta p {
  margin: 0.35rem 0 0;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: #111827;
  font-size: 1.05rem;
}

.top-dest-card[data-slot='0']:hover {
  transform: translate(-50%, -50%) translateX(var(--x)) scale(1.02);
}

.top-dest-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: #0f172a;
  font-size: 1.85rem;
  line-height: 1;
  display: none;
  place-items: center;
  z-index: 10;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.top-dest-nav:hover,
.top-dest-nav:focus-visible {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(200, 162, 74, 0.75);
  background: #ffffff;
}

.top-dest-nav-prev { left: 0.45rem; }
.top-dest-nav-next { right: 0.45rem; }

.top-dest-dots {
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.45rem;
  z-index: 8;
}

.top-dest-dot {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.top-dest-dot.is-active {
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 1100px) {
  .top-dest-card[data-slot='-1'] { --x: -44%; }
  .top-dest-card[data-slot='1'] { --x: 44%; }
  .top-dest-card[data-slot='-2'] { --x: -68%; }
  .top-dest-card[data-slot='2'] { --x: 68%; }
}

@media (max-width: 780px) {
  .top-dest-head {
    align-items: start;
    flex-direction: column;
  }

  .top-dest-carousel {
    height: clamp(420px, 110vw, 520px);
    touch-action: pan-y;
  }

  .top-dest-nav {
    display: none;
  }

  .top-dest-card {
    width: 90%;
    max-width: 90%;
    height: 100%;
    --x: 0%;
    --s: 1;
    --o: 0;
    --z: 1;
  }

  .top-dest-card[data-slot='0'] {
    --o: 1;
    --z: 6;
    --s: 1;
    --x: 0%;
    filter: none;
  }

  .top-dest-card[data-slot='-1'],
  .top-dest-card[data-slot='1'],
  .top-dest-card[data-slot='-2'],
  .top-dest-card[data-slot='2'] {
    --o: 0;
    pointer-events: none;
  }

  .top-dest-card-btn {
    font-size: 1rem;
  }

  .top-dest-card-meta h3 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .top-dest-card-meta p {
    font-size: 0.96rem;
  }
}

/* DEST CAROUSEL - FINAL */
.home-featured {
  background: #eceff5 !important;
  border-radius: 26px;
  padding-top: 3.2rem;
  padding-bottom: 3rem;
}

.destCarousel__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.destCarousel__head h2 {
  margin: 0;
  color: #1a2440;
  font-size: clamp(2.1rem, 3.3vw, 3.4rem);
}

.destCarousel__head p {
  margin: 0.7rem 0 0;
  color: #6b7280;
  font-size: clamp(1.05rem, 1.6vw, 1.55rem);
}

.destCarousel__allBtn {
  min-width: 190px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #1f2a44;
}

.destCarousel {
  position: relative;
  height: clamp(470px, 56vw, 620px);
  overflow: hidden;
  isolation: isolate;
}

.destCarousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.destCarousel__card {
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(380px, 40vw, 650px);
  height: clamp(360px, 45vw, 500px);
  border-radius: 28px;
  overflow: hidden;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: 1;
  transition:
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 550ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 550ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.destCarousel__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%);
}

.destCarousel__card.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: none;
  z-index: 6;
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.28);
}

.destCarousel__card.is-prev {
  transform: translate(calc(-50% - 260px), -50%) scale(0.88);
  opacity: 0.76;
  filter: saturate(0.9) blur(0.45px);
  z-index: 4;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.destCarousel__card.is-next {
  transform: translate(calc(-50% + 260px), -50%) scale(0.88);
  opacity: 0.76;
  filter: saturate(0.9) blur(0.45px);
  z-index: 4;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.destCarousel__card.is-prev2 {
  transform: translate(calc(-50% - 440px), -50%) scale(0.75);
  opacity: 0.45;
  filter: saturate(0.8) blur(0.7px);
  z-index: 2;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.destCarousel__card.is-next2 {
  transform: translate(calc(-50% + 440px), -50%) scale(0.75);
  opacity: 0.45;
  filter: saturate(0.8) blur(0.7px);
  z-index: 2;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.destCarousel__card.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  pointer-events: none;
}

.destCarousel__offerBtn,
.destCarousel__meta {
  position: relative;
  z-index: 2;
}

.destCarousel__offerBtn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.84);
  color: #111827;
  font-size: 1rem;
  backdrop-filter: blur(3px);
}

.destCarousel__meta {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
}

.destCarousel__meta h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.85rem);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.destCarousel__meta p {
  margin: 0.45rem 0 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.92rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #111827;
  font-size: 0.95rem;
}

.destCarousel__dots {
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  transform: translateX(-50%);
  z-index: 8;
  display: inline-flex;
  gap: 0.45rem;
}

.destCarousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  padding: 0;
}

.destCarousel__dot.is-active {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.98);
}

.destCarousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: #111827;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.destCarousel__nav:hover,
.destCarousel__nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
  border-color: rgba(200, 162, 74, 0.7);
}

.destCarousel__nav--prev { left: 0.8rem; }
.destCarousel__nav--next { right: 0.8rem; }

@media (max-width: 1200px) {
  .destCarousel__card.is-prev { transform: translate(calc(-50% - 220px), -50%) scale(0.88); }
  .destCarousel__card.is-next { transform: translate(calc(-50% + 220px), -50%) scale(0.88); }
  .destCarousel__card.is-prev2 { transform: translate(calc(-50% - 360px), -50%) scale(0.75); }
  .destCarousel__card.is-next2 { transform: translate(calc(-50% + 360px), -50%) scale(0.75); }
}

@media (max-width: 980px) {
  .destCarousel__head {
    flex-direction: column;
    align-items: start;
  }

  .destCarousel {
    height: clamp(430px, 90vw, 520px);
  }

  .destCarousel__card {
    width: 92%;
    max-width: 520px;
    height: 100%;
  }

  .destCarousel__card.is-prev,
  .destCarousel__card.is-next,
  .destCarousel__card.is-prev2,
  .destCarousel__card.is-next2 {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

@media (max-width: 780px) {
  .destCarousel {
    touch-action: pan-y;
    height: clamp(420px, 104vw, 520px);
  }

  .destCarousel__card {
    width: 92%;
    height: 100%;
  }

  .destCarousel__card.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  .destCarousel__card.is-prev,
  .destCarousel__card.is-next,
  .destCarousel__card.is-prev2,
  .destCarousel__card.is-next2,
  .destCarousel__card.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .destCarousel__nav {
    display: none;
  }
}


/* UI/UX HOTFIX 2026-03-01 */
.destCarousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  font-size: 1.3rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.destCarousel__nav:hover,
.destCarousel__nav:focus-visible {
  transform: translateY(-50%) scale(1.08);
  border-color: rgba(200, 162, 74, 0.8);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
}

.destCarousel__nav--prev { left: 10px; }
.destCarousel__nav--next { right: 10px; }

@media (max-width: 780px) {
  .destCarousel__nav {
    display: none;
  }
}

body:not(.home-modern) .hero::after {
  display: block;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.56), rgba(8, 12, 18, 0.34));
}

body:not(.home-modern) .hero h1 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

body:not(.home-modern) .hero p {
  color: rgba(255, 250, 238, 0.96);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.44);
}

.offers-grid .offer-card {
  display: flex;
  flex-direction: column;
}

.offers-grid .offer-card img,
.offers-home-grid .offer-home-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.offer-main-image {
  max-height: 520px;
  object-fit: cover;
}

.offer-main-lead,
.offer-main-content .clean-list li,
.offer-main-content p {
  color: #334155;
}

.offer-main-content h2,
.offer-main-content h3,
.offer-main-content strong,
.offer-main-content li strong {
  color: #0f172a;
}

.offer-body h3,
.offer-body p,
.offer-main-content h2,
.offer-main-content p,
.offer-main-content li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.destCarousel__head p,
.section-sub {
  color: #475569;
  opacity: 1;
}

/* UX fixes: search, pagination, mobile menu and offer gallery */
.offers-search {
  position: relative;
  margin: 0 0 1rem;
}

.offers-search-label {
  display: block;
  margin-bottom: 0.45rem;
  color: #0f172a;
  font-weight: 600;
}

.offers-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.18);
  color: #0f172a;
}

.offers-search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.25rem);
  z-index: 30;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.offers-search-suggestion {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.85rem;
  border: 0;
  background: transparent;
  color: #0f172a;
  cursor: pointer;
}

.offers-search-suggestion:hover,
.offers-search-suggestion:focus-visible {
  background: rgba(200, 162, 74, 0.15);
}

.offers-pagination {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.offers-filter-mobile {
  display: none;
}

.offers-filter-mobile label {
  display: block;
  margin-bottom: 0.4rem;
  color: #0f172a;
  font-weight: 600;
}

.offers-filter-mobile select {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.18);
  color: #0f172a;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
}

.offers-page-btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.offers-page-info {
  color: #0f172a;
  font-weight: 600;
}

.form-success.is-error {
  color: #7f1d1d;
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(220, 38, 38, 0.45);
}

.site-header .nav {
  z-index: 1200;
}

@media (max-width: 780px) {
  .site-header .nav.is-open {
    transform: scaleY(1) !important;
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto !important;
    z-index: 1300;
  }

  .site-header .menu-toggle {
    z-index: 1400;
  }

  .offer-thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88px, 110px);
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
  }

  .thumb-btn {
    scroll-snap-align: start;
    border-radius: 10px;
  }

  .thumb-btn img {
    aspect-ratio: 1 / 1;
  }

  .offers-pagination {
    flex-wrap: wrap;
  }

  #destinations .section-panel {
    padding: 1rem;
    border-radius: 16px;
  }

  #destinations .section-head h2 {
    font-size: 2.1rem;
    margin-bottom: 0.4rem;
  }

  #destinations .section-sub {
    font-size: 1.15rem;
  }

  .offers-filter-mobile {
    display: block;
    margin-bottom: 0.75rem;
  }

  #offers-filter-chips {
    display: none;
  }
}

/* ===== Final UI polish (Home About, Destinations filters, About page) ===== */
.section-head-stacked {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.45rem;
}

.home-about-preview {
  padding-top: 2.7rem;
}

.home-about-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 44%);
  grid-template-areas: "head media" "copy media";
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 2.4vw, 2rem);
  border-radius: 24px;
  overflow: hidden;
}

.home-about-content h2 {
  margin-bottom: 0.75rem;
}

.home-about-content {
  grid-area: head;
}

.home-about-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a7a2d;
}

.home-about-copy {
  grid-area: copy;
}

.home-about-copy p {
  margin: 0 0 1rem;
  max-width: 56ch;
  color: #334155;
}

.home-about-visual {
  display: block;
  grid-area: media;
}

.home-about-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.offers-search {
  margin-bottom: 1.2rem;
  max-width: 860px;
}

.offers-search-label {
  margin-bottom: 0.55rem;
}

.offers-search-input-wrap {
  position: relative;
}

.offers-search-icon {
  position: absolute;
  left: 0.92rem;
  top: 50%;
  transform: translateY(-50%);
  color: #7a8497;
  pointer-events: none;
  font-size: 1rem;
}

.offers-search input {
  height: 3rem;
  border-radius: 14px;
  padding: 0 0.95rem 0 2.65rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(30, 41, 59, 0.2);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.offers-search input:focus-visible {
  outline: none;
  border-color: #c8a24a;
  box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.2), 0 12px 24px rgba(15, 23, 42, 0.12);
  background: #fff;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  align-items: center;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(30, 41, 59, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.chip:hover,
.chip:focus-visible {
  transform: translateY(-1px);
  border-color: #c8a24a;
  background: #fff8e8;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1);
}

.chip.is-active {
  border-color: #c8a24a;
  background: linear-gradient(180deg, #e4c062 0%, #c49b35 100%);
  color: #fff;
  box-shadow: 0 10px 18px rgba(174, 132, 22, 0.32);
}

.about-page {
  position: relative;
}

.about-page::before,
.about-page::after {
  content: "";
  position: absolute;
  width: min(32vw, 320px);
  height: min(32vw, 320px);
  border-radius: 999px;
  z-index: -1;
  filter: blur(8px);
}

.about-page::before {
  left: max(2vw, 12px);
  top: 70px;
  background: radial-gradient(circle at center, rgba(191, 224, 255, 0.5), rgba(191, 224, 255, 0));
}

.about-page::after {
  right: max(2vw, 12px);
  bottom: 80px;
  background: radial-gradient(circle at center, rgba(255, 231, 177, 0.44), rgba(255, 231, 177, 0));
}

.about-layout-v2 {
  display: grid;
  gap: 1rem;
}

.about-intro-card,
.about-story-card,
.about-details-card,
.about-gallery-card {
  padding: clamp(1rem, 2.3vw, 1.7rem);
  border-radius: 20px;
}

.about-intro-card,
.about-story-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.about-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a7a2d;
}

.about-intro-copy h2 {
  margin-bottom: 0.65rem;
}

.about-intro-copy p,
.about-story-copy p,
.about-details-card p {
  margin: 0 0 0.85rem;
  color: #334155;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(200, 162, 74, 0.16);
  color: #8a6820;
  border: 1px solid rgba(200, 162, 74, 0.45);
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.about-story-copy h3,
.about-details-card h3,
.about-gallery-card h3 {
  margin-bottom: 0.7rem;
}

.about-story-card {
  border-top: 1px solid rgba(200, 162, 74, 0.35);
}

.about-media-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.9), rgba(231, 238, 247, 0.9));
  min-height: 220px;
}

.about-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.about-media-card:hover img {
  transform: scale(1.03);
}

.about-gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offers-search-suggestions {
  margin-top: 0.35rem;
}

@media (max-width: 980px) {
  .home-about-card,
  .about-intro-card,
  .about-story-card {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "media" "copy";
  }

  .home-about-visual {
    order: 2;
  }

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

@media (max-width: 780px) {
  .home-about-card {
    padding: 1rem;
    gap: 0.85rem;
  }

  .home-about-content h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .home-about-copy p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .offers-search {
    max-width: 100%;
  }

  .offers-search input {
    height: 2.9rem;
    border-radius: 12px;
  }

  .offers-filter-mobile {
    margin-bottom: 0.6rem;
  }

  #offers-filter-chips {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  #offers-filter-chips::-webkit-scrollbar {
    display: none;
  }

  #offers-filter-chips .chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .about-layout-v2 {
    gap: 0.8rem;
  }

  .about-intro-card,
  .about-story-card,
  .about-details-card,
  .about-gallery-card {
    padding: 0.95rem;
    border-radius: 16px;
  }

  .about-media-card {
    min-height: 180px;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

/* Hotfix: hero alignment + visible mobile menu icon on light header */
.home-hero-copy,
.home-hero-copy .hero-eyebrow,
.home-hero-copy h1,
.home-hero-copy p,
.home-hero-actions {
  text-align: left;
  justify-content: flex-start;
}

.home-hero-copy p {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 780px) {
  .home-hero-copy,
  .home-hero-copy .hero-eyebrow,
  .home-hero-copy h1,
  .home-hero-copy p,
  .home-hero-actions {
    text-align: center;
    justify-content: center;
  }

  .home-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.menu-toggle span {
  background: #0f172a;
}

/* Final polish: hero alignment, offer mobile gallery, about lightbox */
.home-modern .hero-v2 .home-hero-grid {
  justify-items: start;
}

.home-modern .hero-v2 .home-hero-copy,
.home-modern .hero-v2 .home-hero-copy .hero-eyebrow,
.home-modern .hero-v2 .home-hero-copy h1,
.home-modern .hero-v2 .home-hero-copy p,
.home-modern .hero-v2 .home-hero-actions {
  text-align: left;
  justify-content: flex-start;
}

.home-modern .hero-v2 .home-hero-copy h1 {
  max-width: 18ch;
}

.home-modern .hero-v2 .home-hero-copy p {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 780px) {
  .home-modern .hero-v2 .home-hero-grid {
    justify-items: center;
  }

  .home-modern .hero-v2 .glass-panel {
    width: min(88vw, 390px);
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.64);
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.11);
  }

  .home-modern .hero-v2 .home-hero-copy .hero-eyebrow {
    font-size: 0.78rem;
    margin-bottom: 0.45rem;
  }

  .home-modern .hero-v2 .home-hero-copy,
  .home-modern .hero-v2 .home-hero-copy .hero-eyebrow,
  .home-modern .hero-v2 .home-hero-copy h1,
  .home-modern .hero-v2 .home-hero-copy p,
  .home-modern .hero-v2 .home-hero-actions {
    text-align: center;
    justify-content: center;
  }

  .home-modern .hero-v2 .home-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(1.55rem, 8vw, 2.05rem);
    line-height: 1.14;
    margin-left: auto;
    margin-right: auto;
  }

  .home-modern .hero-v2 .home-hero-copy p {
    max-width: 20ch;
    margin-top: 0.7rem;
    font-size: 0.92rem;
    line-height: 1.45;
    margin-left: auto;
    margin-right: auto;
  }

  .home-modern .hero-v2 .home-hero-actions {
    margin-top: 1.05rem;
    gap: 0.5rem;
  }

  .home-modern .hero-v2 .home-hero-actions .btn {
    min-height: 2.6rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.86rem;
  }

  .site-header .menu-toggle {
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(15, 23, 42, 0.28) !important;
  }

  .site-header .menu-toggle span {
    background: #0f172a !important;
  }

  .offer-main-image {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .offer-thumbs {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 84px;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .offer-thumbs::-webkit-scrollbar {
    display: none;
  }

  .thumb-btn {
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.18);
  }

  .thumb-btn img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 1100px);
  margin: min(6vh, 56px) auto 0;
}

.lightbox-image {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  background: #0b1220;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  cursor: pointer;
}

.lightbox-close {
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav-prev {
  left: -18px;
}

.lightbox-nav-next {
  right: -18px;
}

@media (max-width: 780px) {
  .lightbox-dialog {
    width: min(94vw, 560px);
    margin-top: 9vh;
  }

  .lightbox-close {
    top: -10px;
    right: -4px;
  }

  .lightbox-nav {
    display: none;
  }
}

/* Offer gallery: one main image + small thumbs below (mobile and desktop) */
.offer-thumbs {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.offer-thumbs::-webkit-scrollbar {
  display: none;
}

.offer-thumbs .thumb-btn {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.offer-thumbs .thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

@media (min-width: 781px) {
  .offer-thumbs .thumb-btn {
    flex-basis: 96px;
    width: 96px;
    height: 96px;
  }
}

