:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --deep: #0a0c0f;
  --ink: #111318;
  --slate: #1c1f27;
  --mist: #8a8f9e;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(201, 168, 76, 0.24);
  --surface: rgba(255, 255, 255, 0.04);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%),
    var(--deep);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--ink);
}

.section-panel {
  background: var(--slate);
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.72rem;
}

/* ── EXPERIENCES PAGE (pkg cards + services) ─────────────────────────────── */
.experiences-offer {
  background: var(--deep);
}

.experiences-services .section-title {
  margin-bottom: 0;
}

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

.pkg-card {
  display: flex;
  flex-direction: column;
  background: var(--slate);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.pkg-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.pkg-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.pkg-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 22px 22px 24px;
}

.pkg-type {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.pkg-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.pkg-desc {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.pkg-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

.pkg-duration {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.48);
}

.exp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.exp-service-card {
  background: var(--ink);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.exp-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.22);
}

.exp-service-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.exp-service-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.exp-service-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--mist);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-title,
.page-title,
.hero-title,
.detail-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.05;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.section-title em,
.page-title em,
.hero-title em,
.detail-title em {
  color: var(--gold-light);
  font-style: italic;
}

.section-copy,
.page-copy,
.detail-copy,
.card-copy,
.feature-copy,
.contact-copy,
.package-copy {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--deep);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

@keyframes kd-spin {
  to { transform: rotate(360deg); }
}

.btn-loading {
  pointer-events: none;
  opacity: 0.75;
  gap: 8px;
}

.btn-loading::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: kd-spin 0.7s linear infinite;
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(10, 12, 15, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand span {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep);
}

.site-nav .nav-cta::after {
  display: none;
}

.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  padding: 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.mobile-panel {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.38s;
  background: rgba(10, 12, 15, 0.98);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.mobile-panel.is-open {
  max-height: 520px;
  visibility: visible;
  padding: 12px 0 24px;
}

.mobile-panel nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 0;
  text-decoration: none;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  border-left: 2px solid transparent;
}

.mobile-panel a::after {
  content: '→';
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-panel a:hover {
  color: var(--white);
  background: rgba(201, 168, 76, 0.05);
  padding-left: 26px;
  border-left-color: var(--gold);
}

.mobile-panel a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Plan Your Trip CTA */
.mobile-panel a:last-child {
  margin: 14px 16px 0;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--deep);
  font-weight: 700;
  letter-spacing: 0.12em;
  justify-content: center;
  border-left: none;
}

.mobile-panel a:last-child::after {
  display: none;
}

.mobile-panel a:last-child:hover {
  background: var(--gold-light);
  color: var(--deep);
  padding-left: 20px;
  border-left: none;
}

.hero {
  padding: 0;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--slate);
}

.hero-slides {
  position: relative;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 1.4s ease;
  transform: scale(1.04);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 15, 0.82) 0%, rgba(10, 12, 15, 0.4) 48%, rgba(10, 12, 15, 0.76) 100%),
    linear-gradient(180deg, rgba(201, 168, 76, 0.08), transparent 30%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  max-width: 840px;
  margin: 0 auto;
  padding: 130px 60px 190px;
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.hero-copy {
  max-width: 580px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
  line-height: 1.9;
}

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

.hero-stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
  color: var(--gold-light);
}

.hero-stat span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-slider-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 3;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-indicators {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(10, 12, 15, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
  box-shadow: none;
}

.hero-indicator.is-active {
  width: 40px;
  background: var(--gold-light);
}

.stats-bar {
  padding: 50px 60px;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 22px;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.featured-grid,
.destination-grid,
.package-grid,
.testimonial-grid,
.feature-grid {
  display: grid;
  gap: 24px;
}

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

.destination-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

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

.destination-card,
.feature-card,
.package-card,
.testimonial-card,
.info-card,
.contact-panel,
.detail-side-card {
  border-radius: 26px;
  overflow: hidden;
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.package-card,
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.package-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.package-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.package-copy,
.feature-copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.package-card .destination-name,
.feature-card .destination-name {
  margin: 0;
}

.package-card .destination-name {
  font-size: 1.7rem;
}

.feature-card .destination-name {
  font-size: 1.5rem;
}

.destination-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.destination-card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.destination-card:hover .destination-card-media img {
  transform: scale(1.05);
}

.destination-card-badge,
.destination-card-price {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-card-badge {
  top: 16px;
  left: 16px;
  background: rgba(10, 12, 15, 0.7);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.32);
  max-width: calc(100% - 32px);
  border-radius: 6px;
  line-height: 1.5;
}

.destination-card-price {
  bottom: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--deep);
  font-weight: 700;
}

.destination-card-body {
  padding: 22px;
}

.destination-meta {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.destination-name {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
}

.destination-copy {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.destination-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.destination-link {
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

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

.home-featured-card {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  border-radius: 26px;
  text-decoration: none;
}

.home-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.home-featured-card:hover img {
  transform: scale(1.08);
}

.home-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 15, 0.92) 0%, rgba(10, 12, 15, 0.2) 52%, transparent 100%);
}

.home-featured-badge {
  position: absolute;
  top: 20px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 0.74rem;
}

.home-featured-price {
  background: var(--gold);
  color: var(--deep);
  font-weight: 700;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 2px;
  font-size: 0.76rem;
}

.home-featured-badge {
  left: 20px;
  background: rgba(10, 12, 15, 0.82);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-featured-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
}

.home-featured-country {
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-featured-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 400;
}

.home-featured-text {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.home-featured-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.why-us,
.why-us-section {
  background: var(--slate);
}

.why-us-layout-old {
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 78px;
  align-items: center;
}

.why-img {
  position: relative;
  height: 605px;
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.why-img-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-img-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.why-img-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--gold-light);
  font-size: 1.25rem;
}

.feature-text h4 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
}

.feature-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
  font-size: 0.9rem;
}

.why-old-title {
  margin-bottom: 18px;
  font-size: clamp(3rem, 4.5vw, 4.55rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.why-us .section-label {
  margin-bottom: 18px;
}

.why-us .section-desc {
  max-width: 590px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.testimonials-home {
  text-align: center;
}

.testimonial-grid-home {
  align-items: stretch;
}

.testimonial-grid-home .testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px;
  text-align: left;
  border-color: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-grid-home .testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.28);
}

.testimonial-grid-home .testimonial-text {
  flex: 1;
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 12px;
}

.stars {
  color: var(--gold);
  margin-bottom: 14px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--deep);
  font-weight: 700;
}

.author-name {
  font-weight: 600;
  text-align: left;
}

.author-loc {
  color: var(--mist);
  font-size: 0.78rem;
  text-align: left;
}

.home-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 15, 0.62);
}

.home-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.home-banner-content .eyebrow   { display: flex; justify-content: center; }
.home-banner-content .section-title { margin-bottom: 22px; }
.home-banner-content .btn-row   { justify-content: center; }
.testimonials-home .eyebrow     { display: flex; justify-content: center; }
.home-dest-grid + .btn-row      { margin-top: 28px; }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 26px;
}

.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  padding: 11px 18px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
}

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 70px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 12, 15, 0.55), rgba(10, 12, 15, 0.78));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.page-title {
  margin: 0 0 12px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.count-chip {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  padding: 36px 0 88px;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.detail-hero {
  border-radius: 30px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy-block,
.detail-gallery,
.detail-side-card,
.contact-panel {
  padding: 28px;
}

.detail-title {
  margin: 0 0 10px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.detail-submeta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

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

.detail-gallery-grid img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.detail-list {
  padding-left: 18px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.detail-list li + li {
  margin-top: 8px;
}

.detail-side-card {
  position: sticky;
  top: 104px;
}

.side-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.side-stat:last-of-type {
  border-bottom: 0;
}

.side-label {
  color: rgba(255, 255, 255, 0.54);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.side-value {
  text-align: right;
  color: var(--gold-light);
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.site-footer {
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}

.site-footer h4 {
  margin: 0 0 14px;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  text-decoration: none;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.84rem;
}

.site-footer-copy {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #062c14;
  text-decoration: none;
  font-size: 1.55rem;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.32);
}

.empty-state {
  padding: 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 1024px) {
  .section {
    padding: 76px 0;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide-content {
    min-height: 88vh;
  }

  .hero-slide-content {
    max-width: 100%;
    margin: 0;
    padding: 132px 28px 220px;
  }

  .hero-copy,
  .page-copy,
  .section-copy,
  .detail-copy,
  .contact-copy {
    max-width: 100%;
  }

  .hero-slider-bottom {
    bottom: 28px;
    justify-content: center;
  }

  .hero-grid,
  .grid-2,
  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .featured-grid,
  .package-grid,
  .pkg-grid,
  .exp-services-grid,
  .testimonial-grid,
  .feature-grid,
  .home-dest-grid,
  .site-footer-grid,
  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-us-layout-old {
    width: min(1500px, calc(100% - 56px));
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-img {
    height: 420px;
  }

  .why-img-badge {
    right: 0;
    bottom: -20px;
  }

  .detail-side-card {
    position: static;
    order: -1;
  }

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

  .site-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .detail-copy-block,
  .detail-gallery,
  .detail-side-card,
  .contact-panel {
    padding: 22px;
  }

  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
  }

  .featured-grid,
  .destination-grid,
  .package-grid,
  .exp-services-grid,
  .testimonial-grid,
  .feature-grid,
  .hero-highlights,
  .detail-gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* home featured cards: 2-col on tablet */
  .home-dest-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }

  /* pkg-grid: 2 cols on tablet, drops to 1 at 480px */
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* stats bar: always 2×2 */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  /* footer: 2 cols, brand row spans full width */
  .site-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .hero-slider,
  .hero-slides {
    min-height: 88vh;
  }

  .hero-slide-content {
    min-height: 88vh;
    justify-content: flex-end;
    padding: 110px 16px 160px;
  }

  .hero-slider-bottom {
    left: 0;
    right: 0;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .site-header-inner {
    min-height: 70px;
    gap: 14px;
  }

  .section {
    padding: 52px 0;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.8rem);
  }

  .eyebrow {
    letter-spacing: 0.12em;
    font-size: 0.7rem;
  }

  .section-copy {
    font-size: 0.93rem;
    line-height: 1.75;
  }

  /* tighter section header stack on mobile */
  .section-title {
    margin-bottom: 10px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .page-title,
  .detail-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .destination-name {
    font-size: 1.45rem;
  }

  .destination-card-body,
  .detail-copy-block,
  .detail-gallery,
  .detail-side-card,
  .contact-panel,
  .info-card {
    padding: 20px;
  }

  .destination-card-media {
    height: 220px;
  }

  .stats-bar {
    padding: 24px 16px;
    gap: 12px;
    background: var(--deep);
    border-top: none;
    border-bottom: none;
  }

  .stat-card strong {
    font-size: 2.6rem;
  }

  .stat-card span {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .page-hero {
    min-height: 50vh;
    padding: 110px 0 56px;
  }

  .detail-hero {
    min-height: 280px;
  }

  .detail-gallery-grid img {
    height: 220px;
  }

  /* Filter row: horizontal scroll strip */
  .filter-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin: 24px 0 20px;
    padding-bottom: 6px;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* 2×2 stat cards: card-style, centered, gold accent */
  .stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    border-top: 2px solid rgba(201, 168, 76, 0.35);
  }

  .home-featured-card {
    min-height: 360px;
  }

  .why-us-layout-old {
    width: min(1500px, calc(100% - 24px));
  }

  .why-img {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 44px 0;
  }

  /* pkg cards: 1 col on small phones */
  .pkg-grid {
    grid-template-columns: 1fr;
  }

  /* service icons: 2 col grid looks clean on phones */
  .exp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* detail gallery: 2 col on phone */
  .detail-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* footer: brand centered full-width, links in 3-col compact grid */
  .site-footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
  }

  .site-footer-grid > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .site-footer-grid > div:first-child .brand {
    display: block;
    margin-bottom: 10px;
  }

  .site-footer-grid > div:first-child p {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  /* compact fonts for 3 narrow link columns */
  .site-footer h4 {
    font-size: 0.64rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
  }

  .site-footer li,
  .site-footer ul a {
    font-size: 0.8rem;
    line-height: 1.9;
  }

  /* home featured cards: 1-col on small phones, shorter height */
  .home-dest-grid {
    grid-template-columns: 1fr;
  }

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

  .site-header {
    position: sticky;
  }

  .site-header-inner {
    min-height: 64px;
  }

  .hero-slide-content {
    padding: 90px 16px 140px;
  }

  /* hide hero body text on small phones — title + buttons enough */
  .hero-copy {
    display: none;
  }

  .hero-highlights {
    gap: 10px;
  }

  .hero-stat {
    padding: 14px;
    border-radius: 18px;
  }

  .hero-stat strong {
    font-size: 1.1rem;
  }

  .hero-stat span,
  .stat-card span,
  .destination-card-footer,
  .count-chip {
    font-size: 0.72rem;
  }

  .hero-indicators {
    justify-content: center;
  }

  .page-hero {
    padding-top: 96px;
  }

  .detail-submeta,
  .destination-card-footer,
  .side-stat {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .side-value {
    text-align: left;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
