.destinations-showcase {
  position: relative;
  background: #f8f2e8;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(42, 52, 88, 0.12);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.5rem, 4vw, 2.5rem);
  min-height: clamp(320px, 45vh, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.destinations-showcase.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(249, 242, 232, 0.35);
  pointer-events: none;
}

.destinations-header {
  margin-bottom: clamp(1rem, 3vw, 1.8rem);
  text-align: center;
}

.destinations-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(31, 27, 24, 0.75);
  margin: 0;
}

.destinations-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 280px);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
}

.destinations-scroller {
  max-height: clamp(240px, 52vh, 360px);
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

.destinations-scroller::-webkit-scrollbar {
  display: none;
}

.destinations-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.25rem, 1vw, 0.5rem);
  font-family: 'Bebas Neue', sans-serif;
  justify-items: center;
  text-align: center;
}

.destination-item {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(100, 84, 74, 0.55);
  transition: color 0.35s ease, transform 0.35s ease;
  padding: 0.15rem 0;
}

.destination-item.is-active {
  color: var(--color-terracotta);
  transform: scale(1.08);
}

.destination-label {
  pointer-events: none;
}

.destination-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.destination-frame {
  width: min(260px, 55vw);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 28px 50px rgba(42, 52, 88, 0.2);
  position: relative;
}

.destination-frame::before {
  content: '';
  position: absolute;
  inset: 1.2rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.destination-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.destination-frame img.is-updating {
  opacity: 0;
  transform: scale(1.08);
}
.package-slide-title-overlay {
  display: none;
}

.package-slide.is-active .package-slide-title-overlay {
  display: none;
}
:root {
  --font-display: 'Playfair Display', serif;
  --font-body: 'Work Sans', sans-serif;
  --color-background: #f3eee7;
  --color-sand: #f0d7ba;
  --color-terracotta: #c75a31;
  --color-indigo: #2a3458;
  --color-forest: #3a6045;
  --color-ink: #1f1b18;
  --color-muted: #726a63;
  --color-highlight: #f2a950;
  --color-sky: #5c8ef2;
  --color-cream: #fff7ed;
  --color-white: #ffffff;
  --max-width: 1180px;
  --shadow-soft: 0 22px 48px rgba(28, 35, 53, 0.18);
  --transition: all 0.3s ease;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(92, 142, 242, 0.16), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(199, 90, 49, 0.2), transparent 60%),
    linear-gradient(180deg, #fffdf6 0%, var(--color-background) 100%);
  color: var(--color-ink);
  line-height: 1.6;
  min-height: 100vh;
}

.body-lock {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 247, 237, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 52, 88, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5vw;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-indigo);
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.site-header .logo {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-sky));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.site-footer .logo {
  color: var(--color-white);
  letter-spacing: 0.12em;
}

.main-nav {
  position: relative;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}

.main-nav a {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-indigo);
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a.active {
  color: var(--color-terracotta);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-highlight));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 10vh;
  color: var(--color-white);
  padding: clamp(0.5rem, 1vw, 0.7rem) clamp(0.8rem, 1.5vw, 1.2rem);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
  border-radius: 20px;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-image, linear-gradient(120deg, #2f3b52, #445c4c));
  filter: saturate(1.1);
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(17, 25, 38, 0.12) 15%, rgba(17, 24, 38, 0.35) 45%, rgba(73, 121, 205, 0.32) 95%),
    radial-gradient(circle at 20% 20%, rgba(242, 169, 80, 0.25), transparent 55%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 640px;
  padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1rem, 2vw, 1.5rem);
  backdrop-filter: blur(4px);
  background: rgba(17, 22, 33, 0.46);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17, 20, 32, 0.25);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-content p {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  margin-bottom: 0.8rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 0.5rem 1.2rem;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-highlight));
  color: var(--color-white);
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  border-color: rgba(196, 106, 78, 0.6);
  color: var(--color-terracotta);
}

.btn-outline:hover {
  background: rgba(196, 106, 78, 0.12);
  color: var(--color-indigo);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.btn-small {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn-inline {
  background: transparent;
  color: var(--color-terracotta);
  padding: 0;
  border: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-inline:hover {
  color: var(--color-indigo);
}

.section {
  padding: clamp(1.5rem, 3vw, 2rem) 5vw;
}

/* ===== PACKAGES CAROUSEL - COMPLETE REWRITE ===== */

.section.packages-showcase {
  padding: clamp(1.5rem, 3vw, 2rem) 5vw clamp(0.5rem, 1vw, 0.8rem) 5vw !important;
}

.section-alt {
  background: linear-gradient(180deg, rgba(240, 215, 186, 0.4) 0%, rgba(255, 247, 237, 0.85) 100%);
  backdrop-filter: blur(10px);
  position: relative;
}

.section-alt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(92, 142, 242, 0.12), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 1rem;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.1rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.eyebrow {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  align-items: stretch;
}

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

.package-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 247, 237, 0.95) 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(47, 52, 88, 0.08);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(42, 52, 88, 0.08);
  height: 100%;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.card-media {
  padding-top: 55%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: visible;
  flex: 1;
  min-height: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 0 1 auto;
}

.card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.8rem;
  flex-shrink: 0;
}

.card-body .btn {
  width: auto;
}

.card-body p {
  margin: 0;
}

.card-description {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-destination {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.card-content h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  margin: 0;
  color: var(--color-ink);
  line-height: 1.4;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}

.card-price {
  font-weight: 600;
  color: var(--color-indigo);
  font-size: 0.95rem;
  margin: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.1rem;
}

.tag {
  background: rgba(92, 142, 242, 0.12);
  color: var(--color-indigo);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.cta-card {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 3.6rem);
  border-radius: 28px;
  background:
    linear-gradient(130deg, rgba(42, 52, 88, 0.84), rgba(199, 90, 49, 0.76)),
    url('https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1600&q=80') center / cover;
  color: var(--color-white);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(242, 169, 80, 0.4), transparent 55%);
  opacity: 0.75;
}

.packages-showcase {
  background: #f8f2e8;
  border-radius: 20px;
  box-shadow: 0 24px 45px rgba(42, 52, 88, 0.16);
  max-width: var(--max-width);
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 2.8vw, 2.1rem) clamp(1rem, 2.1vw, 1.4rem);
}

.packages-carousel-container {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}

.packages-carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.package-slide {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 200px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0.4;
  transform: scale(0.85);
}

/* Side slides - smaller and dimmed */
.package-slide:not(.is-active) {
  filter: brightness(0.7);
}

.package-slide:not(.is-active):hover {
  opacity: 0.6;
  transform: scale(0.88);
}

/* Center active slide - prominent */
.package-slide.is-active {
  width: 200px;
  height: 280px;
  opacity: 1;
  transform: scale(1);
  z-index: 10;
  filter: brightness(1);
  cursor: pointer;
}

.package-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  pointer-events: none;
}

.package-slide.is-active .package-slide-link {
  pointer-events: auto;
}

.package-slide-media {
  width: 100%;
  height: 100%;
  position: relative;
}

.package-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dimming overlay for non-active slides */
.package-slide:not(.is-active)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 24, 0.5);
  border-radius: 14px;
  z-index: 5;
  pointer-events: none;
}

/* Book Trip button - only on active slide */
.package-slide-cta {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(199, 90, 49, 0.95);
  color: white;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 20;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.package-slide.is-active:hover .package-slide-cta {
  opacity: 1;
}

/* Navigation arrows */
.carousel-arrow {
  position: absolute;
  bottom: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-indigo);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 9px rgba(42, 52, 88, 0.2);
  transition: all 0.3s ease;
  z-index: 100;
}

.carousel-arrow:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(42, 52, 88, 0.3);
}

.carousel-arrow-left {
  left: 1.4rem;
}

.carousel-arrow-right {
  right: 1.4rem;
}

/* Title and description - only show on hover */
.packages-info {
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-height: 56px;
}

.packages-showcase:has(.package-slide.is-active:hover) .packages-info {
  opacity: 1;
}

/* Mobile: Always show title and description (no hover needed) */
@media (max-width: 768px) {
  .packages-info {
    opacity: 1 !important;
  }
}

.packages-title {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.25vw, 0.9rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.35rem 0;
  color: var(--color-terracotta);
}

.packages-description {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  line-height: 1.6;
  color: rgba(31, 27, 24, 0.75);
  max-width: 600px;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.package-slide-body {
  display: none;
}

.package-slide-destination,
.tag-row,
.package-slide-body .card-price {
  display: none;
}

.packages-arrow {
  display: none;
}

.cta-card h3 {
  font-family: var(--font-display);
  margin: 0.4rem 0 0.8rem;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1 1 240px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.filters-panel {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  padding: 1.7rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 215, 186, 0.74));
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  box-shadow: 0 20px 40px rgba(42, 52, 88, 0.12);
  border: 1px solid rgba(92, 142, 242, 0.12);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-indigo);
}

.filter-group select {
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(47, 59, 82, 0.1);
  background: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.filter-group--tags {
  grid-column: 1 / -1;
}

.filter-group--tags .tag-filter {
  margin-top: 0.35rem;
}

.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag-filter button {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(92, 142, 242, 0.25);
  background: rgba(92, 142, 242, 0.08);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-indigo);
}

.tag-filter button:hover {
  border-color: rgba(92, 142, 242, 0.45);
  background: rgba(92, 142, 242, 0.15);
}

.tag-filter button.active {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-highlight));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  background: linear-gradient(180deg, rgba(33, 43, 70, 0.95), rgba(47, 59, 82, 0.92));
  padding: 3rem 5vw;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
  border-top: 1px solid rgba(250, 236, 219, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand p {
  max-width: 320px;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--color-highlight);
}

.social-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(242, 169, 80, 0.18);
  align-items: center;
  justify-content: center;
  color: var(--color-highlight);
  transition: transform 0.2s ease;
}

.footer-social a:hover .social-icon {
  transform: translateY(-2px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.empty-state {
  text-align: center;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.8);
  padding: 2.2rem;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(47, 59, 82, 0.08);
}

.package-hero {
  position: relative;
  min-height: 65vh;
  display: grid;
  align-items: flex-end;
  padding: clamp(4rem, 6vw, 6rem) 5vw;
  color: var(--color-white);
  overflow: hidden;
  border-radius: 0 0 48px 48px;
}

.package-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
  z-index: -2;
}

.package-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 20, 32, 0.1) 0%, rgba(17, 20, 32, 0.85) 80%),
    radial-gradient(circle at 15% 15%, rgba(92, 142, 242, 0.45), transparent 55%);
  z-index: -1;
}

.package-hero-content {
  max-width: 720px;
}

.package-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin-bottom: 0.6rem;
}

.package-meta {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.package-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.package-main {
  display: grid;
  gap: 2.5rem;
}

.package-description p {
  font-size: 1.05rem;
  color: var(--color-ink);
}

.package-highlights ul,
.package-itinerary ol,
.package-inclusions ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.package-itinerary ol {
  list-style: none;
  list-style-type: none;
  font-feature-settings: 'tnum';
  padding-left: 0;
  counter-reset: none;
}

.package-itinerary ol li {
  list-style: none;
  list-style-type: none;
}

.package-itinerary ol li::before,
.package-itinerary ol li::marker {
  content: none;
  display: none;
}

.package-inclusions {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.package-details {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.package-details dl {
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.package-details dt {
  font-weight: 600;
  color: var(--color-indigo);
}

.package-details dd {
  margin: 0 0 0.6rem 0;
  color: var(--color-muted);
}

.package-map {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 215, 186, 0.85));
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 20px 36px rgba(47, 59, 82, 0.1);
  border: 1px solid rgba(92, 142, 242, 0.12);
}

.package-map ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.package-gallery {
  margin-top: 2rem;
}

.gallery-slideshow {
  position: relative;
  margin-top: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(42, 52, 88, 0.15);
}

.gallery-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.gallery-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(42, 52, 88, 0.2);
  color: var(--color-indigo);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(42, 52, 88, 0.3);
}

.gallery-prev {
  left: 1rem;
}

.gallery-next {
  right: 1rem;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
}

.gallery-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(42, 52, 88, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.gallery-indicator.active {
  background: var(--color-terracotta);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .gallery-track img {
    height: 350px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .gallery-prev {
    left: 0.5rem;
  }
  
  .gallery-next {
    right: 0.5rem;
  }
}

.package-sidebar {
  display: grid;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.booking-card {
  background: linear-gradient(160deg, rgba(42, 52, 88, 0.96), rgba(199, 90, 49, 0.86));
  color: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.booking-card h3 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.booking-price {
  font-size: 1.1rem;
  font-weight: 600;
}

.booking-card label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
}

.booking-card input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  border: none;
  margin-top: 0.35rem;
  font-size: 1rem;
}

.booking-card input:focus {
  outline: 2px solid rgba(243, 238, 231, 0.9);
  outline-offset: 2px;
}

#payment-element {
  margin: 1rem 0;
}

.payment-message {
  font-size: 0.85rem;
  min-height: 1.2em;
  color: var(--color-muted);
}

.full-width {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.loading-state {
  display: grid;
  place-items: center;
  padding: 6rem 5vw;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.88);
  margin: 3rem 5vw;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(47, 59, 82, 0.12);
}

.page-hero {
  min-height: 25vh;
  padding: clamp(1.5rem, 3vw, 2rem) 5vw;
  background-image:
    linear-gradient(140deg, rgba(42, 52, 88, 0.86), rgba(199, 90, 49, 0.68)),
    var(--page-hero-photo, url('https://images.unsplash.com/photo-1529257414771-1960ab1f3b8a?auto=format&fit=crop&w=1600&q=80'));
  background-size: cover, cover;
  background-position: center, center;
  color: var(--color-white);
  display: grid;
  align-items: center;
  border-radius: 0 0 48px 48px;
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(242, 169, 80, 0.35), transparent 55%);
  pointer-events: none;
}

.page-hero-content {
  max-width: 720px;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: 0.18em;
}

.about-body {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.about-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 232, 0.92));
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(47, 59, 82, 0.12);
  border: 1px solid rgba(199, 90, 49, 0.08);
}

.contact-body {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.1fr) 0.9fr;
  align-items: start;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 215, 186, 0.75));
  padding: 2.6rem;
  border-radius: 26px;
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 22px 44px rgba(47, 59, 82, 0.12);
  border: 1px solid rgba(92, 142, 242, 0.12);
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 600;
  color: var(--color-indigo);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 14px;
  border: 1px solid rgba(47, 59, 82, 0.15);
  padding: 0.95rem 1.1rem;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.92);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(92, 142, 242, 0.5);
  box-shadow: 0 0 0 4px rgba(92, 142, 242, 0.15);
}

.form-field textarea {
  resize: vertical;
}

.contact-info {
  background: linear-gradient(160deg, rgba(42, 52, 88, 0.94), rgba(58, 96, 69, 0.88));
  color: var(--color-white);
  padding: 2.6rem;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info a {
  color: var(--color-sand);
  font-weight: 600;
}

.contact-info h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info p {
  margin-bottom: 0.9rem;
}

@media (max-width: 768px) {
  .contact-body {
    grid-template-columns: 1fr;
  }

  .destinations-showcase {
    min-height: auto;
    padding: clamp(1rem, 4vw, 1.5rem);
  }

  .destinations-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .destination-visual {
    order: -1;
  }

  .destinations-scroller {
    max-height: clamp(180px, 40vh, 280px);
  }

  .destination-item {
    font-size: clamp(0.9rem, 4vw, 1.4rem);
    letter-spacing: 0.2em;
    padding: 0.1rem 0;
  }

  .destinations-header h2 {
    font-size: clamp(1rem, 4vw, 1.4rem);
    margin-bottom: clamp(0.6rem, 2vw, 1rem);
  }

  .destination-frame {
    width: min(240px, 70vw);
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .package-slide {
    flex: 0 0 48%;
  }
}

@media (min-width: 1024px) {
  .package-slide {
    flex: 0 0 28%;
  }
}

.checkout-body {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.15fr) 0.85fr;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 2rem;
}

.summary-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.92));
  border-radius: 26px;
  padding: 2.4rem;
  box-shadow: 0 24px 48px rgba(47, 59, 82, 0.12);
  display: grid;
  gap: 1.4rem;
  border: 1px solid rgba(199, 90, 49, 0.08);
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-item {
  display: grid;
  gap: 1rem;
  border-top: 1px solid rgba(47, 59, 82, 0.08);
  padding-top: 1.2rem;
}

.summary-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.summary-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.summary-item .summary-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.summary-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-footer input {
  width: 72px;
  text-align: center;
}

.summary-footer button {
  border: none;
  background: transparent;
  color: var(--color-terracotta);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.summary-footer button:hover {
  color: var(--color-indigo);
}

.checkout-sidebar {
  position: static;
}

@media (min-width: 769px) {
  .checkout-sidebar {
    position: sticky;
    top: 108px;
    align-self: start;
  }
}

.checkout-total {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.addon-item {
  padding: 0.8rem;
  border: 1px solid rgba(199, 90, 49, 0.15);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  transition: background 0.2s ease;
}

.addon-item:hover {
  background: rgba(199, 90, 49, 0.05);
}

.addon-item label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.addon-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.addon-item span {
  flex: 1;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.checkout-total span {
  font-size: 1.4rem;
  color: var(--color-indigo);
}

.checkout-sidebar .form-field input {
  width: 100%;
}

#checkout {
  margin: 1.5rem 0;
  min-height: 400px;
}

#checkout iframe {
  border: none;
  width: 100%;
}

@media (max-width: 768px) {
  .checkout-body {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav ul {
    position: absolute;
    top: 120%;
    right: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(240, 215, 186, 0.9));
    flex-direction: column;
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }

  .main-nav ul.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-content {
    text-align: left;
  }

  .cta-card {
    text-align: left;
  }

  .package-body {
    grid-template-columns: 1fr;
  }

  .package-sidebar {
    position: static;
  }

  .packages-carousel-container {
    height: 220px;
  }
  
  .package-slide {
    width: 100px;
    height: 140px;
  }
  
  .package-slide.is-active {
    width: 140px;
    height: 200px;
  }
  
  .carousel-arrow {
    width: 32px;
    height: 32px;
  }
  
  .carousel-arrow-left {
    left: 0.7rem;
  }
  
  .carousel-arrow-right {
    right: 0.7rem;
  }
}

.page-hero h1 {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: 0.18em;
}

.section-header h2 {
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.card-body {
  padding: 1.2rem;
  gap: 0.6rem;
  max-height: 260px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.card-description {
  font-size: 0.78rem;
  line-height: 1.4;
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.card-description::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 75%);
}

.card-body {
  overflow: visible;
}

.filters-panel {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tag-filter {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

/* Payment Status Page Styles */
.payment-status-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.loading-spinner {
  padding: 3rem;
  color: var(--color-muted);
}

.payment-success,
.payment-retry,
.payment-error {
  background: rgba(255, 255, 255, 0.92);
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(47, 59, 82, 0.12);
}

.payment-success h1,
.payment-retry h1,
.payment-error h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-indigo);
  margin-bottom: 1rem;
}

.payment-success p,
.payment-retry p,
.payment-error p {
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--color-forest);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
}

.payment-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.payment-actions .btn {
  min-width: 160px;
}

.payment-error h1 {
  color: var(--color-terracotta);
}

.tag-filter button {
  padding: 0.25rem 0.7rem;
  font-size: 0.68rem;
}

