/* Tailwind import and @theme block removed — site uses vanilla CSS */

/* ═══════════════════════════════════════════════════
   SUNVALLEY TRANSIT — Custom Styles
   "Bold Geometric" Design System
   ═══════════════════════════════════════════════════ */

/* ─── Google Fonts: Outfit (heading) + Work Sans (body) ─── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  --color-black: #111111;
  --color-dark-grey: #333333;
  --color-grey: #666666;
  --color-yellow: #E6AF2E;
  --color-yellow-muted: #D4A373;
  --bg-beige: #F4F1EA;
  --bg-beige-light: #FAF9F5;
  --white: #ffffff;
  --bg-beige-dark: #E8E5DC;
  --text-main: #111111;
  --text-muted: #4A4A4A;
  --border-light: #DCD8ce;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Keep --font-serif as alias for backwards compat */
  --font-serif: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Base Resets ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ─── Typography ─── */
.font-serif,
.font-heading {
  font-family: var(--font-heading);
}

.font-sans {
  font-family: var(--font-sans);
}

.overline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c49540;
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  background-color: rgba(196, 149, 64, 0.08);
  /* Deeper gold background */
  border: 1px solid rgba(196, 149, 64, 0.25);
  /* More visible border */
  backdrop-filter: blur(4px);
  margin-bottom: 0.75rem;
}

.overline-cta {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e6af2e;
  display: inline-block;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  background-color: rgba(230, 175, 46, 0.12);
  border: 2px solid rgba(230, 175, 46, 0.4);
  box-shadow: 0 0 25px rgba(230, 175, 46, 0.15), 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.overline-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(230, 175, 46, 0.25), 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(230, 175, 46, 0.18);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

/* ─── Section Title Clip-Reveal Animation ─── */
/* Only hide titles when JS is confirmed loaded (prevents invisible titles if GSAP fails) */
.js-ready .section-title {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.section-title.revealed {
  clip-path: inset(0 0% 0 0);
}

.text-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.text-link .arrow {
  transition: transform 0.3s var(--ease-out-back);
  display: inline-block;
}

.text-link:hover .arrow {
  transform: translateX(6px);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav-logo-img {
  height: 68px;
  /* Increased from 52px */
  width: auto;
  transition: height 0.3s ease, filter 0.3s ease;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 54px;
    /* Increased from 48px */
  }
}

/* Creative Footer Logo Container */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 1);
  margin-bottom: 1.5rem;
  transition: transform 0.4s var(--ease-out-back), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.footer-logo-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.footer-logo-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.footer-logo-wrap:hover::before {
  left: 200%;
}

.footer-logo-wrap .footer-logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 0;
  display: block;
}

@media (max-width: 768px) {
  .footer-logo-wrap {
    padding: 0.75rem 1.25rem;
  }

  .footer-logo-wrap .footer-logo-img {
    height: 52px;
  }
}

.nav-glass {
  background: transparent;
  transition: all 0.5s var(--ease-smooth);
  border-bottom: 1px solid transparent;
}

.nav-glass.scrolled {
  background: rgba(240, 238, 234, 0.94);
  /* Slightly greyish/beige translucent */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-glass.scrolled .nav-logo-img {
  filter: none;
}

.nav-glass.scrolled .nav-logo {
  color: var(--color-black);
}

.nav-glass.scrolled .nav-link {
  color: var(--color-black);
}

.nav-glass.scrolled .nav-link:hover,
.nav-glass.scrolled .nav-link.active {
  color: var(--color-yellow);
}

.nav-glass.scrolled #mobile-toggle {
  color: var(--color-black) !important;
}

.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.nav-logo span {
  color: var(--color-yellow);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-yellow);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-yellow);
}

.nav-link.active::after {
  width: 100%;
}

/* ─── Mobile Menu ─── */
.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--bg-beige-dark);
  transition: all 0.3s ease;
  position: relative;
  display: block;
  padding: 1rem 0;
  /* Expanded touch area and vertical spacing */
}

.mobile-menu-link:hover {
  color: var(--color-yellow);
  transform: translateX(12px);
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: #c49540;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.35);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
}

.btn-secondary:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
}

.btn-dark:hover {
  background: var(--color-dark-grey);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(17, 17, 17, 0.35);
}

/* ═══════════════════════════════════════════════════
   HERO — FULL-SCREEN VIDEO
   ═══════════════════════════════════════════════════ */
.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(17, 17, 17, 0.3) 0%,
      rgba(17, 17, 17, 0.1) 40%,
      rgba(17, 17, 17, 0.25) 70%,
      rgba(17, 17, 17, 0.7) 100%);
}

/* ─── Fog Layers ─── */
.fog-layer {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 200px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
  background: linear-gradient(to top,
      rgba(247, 245, 240, 0.9) 0%,
      rgba(247, 245, 240, 0.4) 40%,
      transparent 100%);
}

.fog-layer-1 {
  animation: fogDrift1 18s ease-in-out infinite;
  opacity: 0.7;
}

.fog-layer-2 {
  animation: fogDrift2 24s ease-in-out infinite reverse;
  opacity: 0.4;
  height: 160px;
}

.fog-layer-3 {
  animation: fogDrift3 30s ease-in-out infinite;
  opacity: 0.3;
  height: 120px;
}

@keyframes fogDrift1 {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5%);
  }
}

@keyframes fogDrift2 {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-4%);
  }
}

@keyframes fogDrift3 {

  0%,
  100% {
    transform: translateX(0) scaleX(1);
  }

  50% {
    transform: translateX(3%) scaleX(1.05);
  }
}

.hero-mist-overlay {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 3;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

/* ─── Scroll Indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-12px);
  }

  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* ═══════════════════════════════════════════════════
   ANIMATED TEXT SECTION (ATB-Inspired Fill-on-Scroll)
   ═══════════════════════════════════════════════════ */
.fill-text-container {
  max-width: 900px;
  margin: 0 auto;
}

.fill-text-container .word {
  display: inline-block;
  color: rgba(17, 17, 17, 0.15);
  transition: color 0.5s ease;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  line-height: 1.8;
  font-weight: 400;
}

.fill-text-container .word.filled {
  color: var(--text-main);
}

/* ═══════════════════════════════════════════════════
   STACKED DESTINATION CARDS (CSS-Only Sticky Stack)
   ═══════════════════════════════════════════════════ */
.stacked-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stacked-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  /* Top shadow for depth */
}

.stacked-card-content {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stacked-card-content p.overline {
  margin-bottom: 0.5rem;
}

.stacked-card-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-black);
  line-height: 1.1;
}

.stacked-card-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.card-counter {
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-grey);
}

.stacked-card-image {
  position: relative;
  min-height: 300px;
}

.stacked-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop Styles (Sticky Stacking) */
@media (min-width: 1024px) {
  .stacked-cards-wrapper {
    gap: 0;
  }

  .stacked-card {
    flex-direction: row;
    position: sticky;
    height: 60vh;
    min-height: 480px;
    margin-bottom: 2rem;
  }

  .stacked-card:nth-child(1) {
    top: 120px;
  }

  .stacked-card:nth-child(2) {
    top: 140px;
  }

  .stacked-card:nth-child(3) {
    top: 160px;
  }

  .stacked-card:nth-child(4) {
    top: 180px;
    margin-bottom: 0;
  }

  .stacked-card-content {
    flex: 1;
    padding: 4rem;
  }

  .stacked-card-image {
    flex: 1;
    min-height: auto;
  }
}

/* ═══════════════════════════════════════════════════
   DESTINATION CARDS (Hover Image Cards)
   ═══════════════════════════════════════════════════ */
.dest-card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out-expo);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

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

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

.dest-card .card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(17, 17, 17, 0.85) 0%,
      rgba(17, 17, 17, 0.3) 40%,
      transparent 70%);
  transition: background 0.4s ease;
}

.dest-card:hover .card-gradient {
  background: linear-gradient(to top,
      rgba(17, 17, 17, 0.95) 0%,
      rgba(17, 17, 17, 0.4) 50%,
      rgba(17, 17, 17, 0.1) 70%);
}

.dest-card .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--white);
  transform: translateY(1rem);
  transition: transform 0.4s var(--ease-out-expo);
}

.dest-card:hover .card-info {
  transform: translateY(0);
}

.dest-card .card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dest-card .card-info p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transition: all 0.4s ease 0.1s;
}

.dest-card:hover .card-info p {
  opacity: 0.9;
  max-height: 100px;
}

/* ═══════════════════════════════════════════════════
   STAT COUNTERS
   ═══════════════════════════════════════════════════ */
.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Feature Cards ─── */
.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.1);
  border-color: var(--color-yellow);
}

.feature-card .icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-beige);
  color: var(--color-dark-grey);
  transition: all 0.3s ease;
}

.feature-card:hover .icon-wrap {
  background: var(--color-yellow);
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   SWIPER CUSTOM STYLES
   ═══════════════════════════════════════════════════ */
.package-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.package-card .card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.package-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.package-card:hover .card-image img {
  transform: scale(1.05);
}

.package-card .duration-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--color-black);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
}

.package-card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card .card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.package-card .card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

.package-card .card-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ─── Swiper Navigation ─── */
.swiper-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.swiper-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-main);
}

.swiper-btn:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--white);
}

.swiper-pagination-custom {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   FLOATING GALLERY (ATB-Inspired)
   ═══════════════════════════════════════════════════ */
.gallery-swiper .swiper-slide {
  width: 450px;
  height: 420px;
  /* Matched to index.html default */
}

@media (max-width: 768px) {
  .gallery-swiper .swiper-slide {
    width: 240px;
    /* Further reduced from 280px */
    height: 320px;
  }
}

.gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.gallery-slide-wrap .location-pin {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card .quote-icon {
  color: var(--color-yellow);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  background: var(--color-black);
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-card .author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-black);
}

.testimonial-card .author-trip {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════ */
.cta-banner-wrapper {
  padding: 4rem 1.5rem 6rem;
  background: var(--white);
}

.cta-banner {
  background: var(--color-black);
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}



/* ═══════════════════════════════════════════════════
   FAQ / ACCORDION
   ═══════════════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--color-dark-grey);
}

.faq-trigger .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-yellow);
}

.faq-trigger[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.faq-content .inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-black);
  color: var(--bg-beige-dark);
}

.footer-link {
  color: rgba(240, 236, 228, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-yellow);
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 236, 228, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-beige-dark);
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
}

.footer-divider {
  border-top: 1px solid rgba(240, 236, 228, 0.12);
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATION CLASSES
   ═══════════════════════════════════════════════════ */
/* Only hide reveal elements when JS is confirmed loaded (prevents invisible content if GSAP fails) */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
}

.js-ready .reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.js-ready .reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.js-ready .stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
}

/* ═══════════════════════════════════════════════════
   ABOUT PAGE — HERO BANNER (SHORT)
   ═══════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE — ALTERNATING SECTIONS
   ═══════════════════════════════════════════════════ */
.alt-section:nth-child(even) .alt-grid {
  direction: rtl;
}

.alt-section:nth-child(even) .alt-grid>* {
  direction: ltr;
}

/* ─── Spots list ─── */
.spot-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: var(--bg-beige);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-dark-grey);
  transition: all 0.3s ease;
}

.spot-tag:hover {
  background: var(--color-yellow);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE — FORM
   ═══════════════════════════════════════════════════ */
.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-main);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--color-dark-grey);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-input::placeholder {
  color: #aaa;
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════
   PACKAGES PAGE — GRID CARDS
   ═══════════════════════════════════════════════════ */
.package-grid-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.package-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.package-grid-card .card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.package-grid-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.package-grid-card:hover .card-image img {
  transform: scale(1.06);
}

.package-grid-card .highlight-list {
  list-style: none;
  padding: 0;
}

.package-grid-card .highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
}

.package-grid-card .highlight-list li svg {
  color: var(--color-dark-grey);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   INCLUDED AMENITIES STRIP
   ═══════════════════════════════════════════════════ */
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.amenity-item .amenity-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-grey);
}

.amenity-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   UTILITY / MISC
   ═══════════════════════════════════════════════════ */
.bg-mist {
  background: var(--bg-beige);
}

.bg-forest {
  background: var(--color-black);
}

.bg-white {
  background: var(--white);
}

.text-sunset {
  color: var(--color-yellow);
}

.text-forest {
  color: var(--color-black);
}

.text-mist {
  color: var(--bg-beige-dark);
}

/* ─── Selection ─── */
::selection {
  background: var(--color-yellow);
  color: var(--color-black);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-beige);
}

::-webkit-scrollbar-thumb {
  background: var(--color-dark-grey);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-black);
}

/* ─── Loading animation ─── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-beige) 25%, #eee 50%, var(--bg-beige) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ═══════════════════════════════════════════════════
   DESIGN ENHANCEMENTS — Bold Typography + Mobile-First
   ═══════════════════════════════════════════════════ */

/* ─── Mobile-First Section Padding ─── */
.section-padding {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 4.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 2rem;
  }
}

/* ─── Button Hover Lift + Glow ─── */
.btn-primary {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 175, 46, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-dark,
.btn-secondary {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn-dark:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ─── Nav Link Active Indicator ─── */
.nav-link {
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-yellow);
}

/* ─── Mobile Gallery Full-Width ─── */
@media (max-width: 768px) {
  .gallery-swiper .swiper-slide {
    width: 85vw !important;
    height: 280px;
  }

  .gallery-swiper .swiper-slide img,
  .gallery-slide-wrap {
    width: 100%;
    height: 100%;
  }

  .gallery-slide-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

/* ─── Mobile Fill-Text Enhancement ─── */
@media (max-width: 768px) {
  .fill-text-container [data-fill-source] {
    font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
    font-weight: 500;
    line-height: 1.9;
  }
}

/* ─── Mobile Hero Enhancement ─── */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100svh;
  }

  .hero-section h1,
  .hero-content h1 {
    font-size: clamp(2.5rem, 11vw, 4rem) !important;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* ─── Featured Package Badge ─── */
.package-card.featured {
  border: 2px solid var(--color-yellow);
  position: relative;
}

.package-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  z-index: 5;
}

/* ─── Reduced Motion Accessibility ─── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Responsive Nav Overrides ─── */
@media (min-width: 768px) {
  #desktop-nav {
    display: flex !important;
  }

  #nav-cta {
    display: inline-flex !important;
  }

  #mobile-toggle {
    display: none !important;
  }
}

/* ─── Mobile Optimization Overrides ─── */
@media (max-width: 768px) {

  /* Navigation Touch Targets */
  #mobile-toggle,
  #mobile-close {
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile Menu Legibility */
  #mobile-menu {
    background: rgba(240, 238, 234, 0.98);
    /* Less transparent for legibility */
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
  }

  /* Hero Typography & Fallbacks */
  .hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
    /* Tighter low-end for fluid typography on narrow screens */
  }

  .hero-video-container video {
    display: none;
    /* Hide heavy video on mobile */
  }

  .hero-video-container {
    background-image: url('https://images.unsplash.com/photo-1585409677983-0f6c41ca9c3b?q=80&w=800&auto=format&fit=crop');
    /* WebP static fallback via Unsplash auto=format */
    background-size: cover;
    background-position: center;
  }

  /* Hero Button Stacking */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Global Section Padding Reduction */
  section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  /* Alternating Layouts: Image First on Mobile */
  /* Targets basic 2-column grids and forces column-reverse so the second item (usually image) comes first */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 2rem !important;
  }

  /* Card Hover State Visibility */
  .dest-card .card-info {
    transform: none !important;
    /* Always show full info block */
  }

  .dest-card .card-info p {
    opacity: 0.9 !important;
    max-height: 1000px !important;
  }

  .dest-card .card-gradient {
    /* Freeze gradient to the hover state for readability */
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.4) 50%, rgba(17, 17, 17, 0.1) 70%) !important;
  }

  /* Swiper Mobile Overrides */
  .swiper-button-next,
  .swiper-button-prev,
  .gallery-next,
  .gallery-prev,
  .packages-next,
  .packages-prev {
    display: none !important;
  }

  .gallery-swiper .swiper-slide {
    width: 85vw !important;
  }

  /* Form & Input Mobile Overrides */
  input,
  select,
  textarea {
    font-size: 16px !important;
    /* Prevents iOS auto-zoom */
  }

  #inquiry-form button,
  #inquiry-form .btn-primary {
    width: 100% !important;
    justify-content: center;
  }

  /* Footer Mobile Overrides */
  .site-footer {
    text-align: center;
  }

  .site-footer .nav-logo {
    justify-content: center;
  }

  .footer-social-wrap {
    justify-content: center;
    gap: 1.5rem !important;
    /* Increase social icon spacing */
  }

  .footer-link-list,
  .footer-contact-list {
    align-items: center !important;
    text-align: center;
  }
}

/* Prevent narrow screen horizontal overflow on auto-fit grids */
@media (max-width: 400px) {
  div[style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }
}

/* ─── Stats Grid Responsive Fix ─── */
@media (max-width: 640px) {
  .stat-item {
    min-width: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ─── Mobile Break Utilities ─── */
.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }
}

/* ─── Our Story Mobile Refinements ─── */
@media (max-width: 768px) {
  .our-story-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center;
  }

  .our-story-images {
    gap: 0.75rem !important;
    max-width: 500px;
    margin: 0 auto;
  }

  .our-story-images img {
    height: 180px !important;
    /* more compact for mobile portrait */
  }

  .image-col {
    padding-top: 0 !important;
  }

  /* Compact grid for mobile */
  .our-story-images .image-col:first-child img:first-child {
    height: 220px !important;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .our-story-grid {
    padding: 0 2rem;
  }

  .our-story-images img {
    height: 140px !important;
  }
}

/* ─── Premium Mobile Menu Redesign ─── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  width: 85%;
  max-width: 400px;
  height: 100vh;
  left: auto !important;
  right: 0;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6rem 2.5rem;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left;
  background: rgba(17, 17, 17, 0.85) !important;
  backdrop-filter: blur(25px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
}

#mobile-toggle {
  background: rgba(255, 255, 255, 0.08);
  /* subtle glass background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.6rem;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

#mobile-toggle svg {
  width: 24px;
  height: 24px;
}


.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  opacity: 1;
  color: var(--color-yellow);
  transform: translateX(8px);
}

#mobile-close {
  top: 1.5rem !important;
  right: 1.5rem !important;
  opacity: 0.6;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#mobile-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1) !important;
  transform: rotate(90deg);
}

/* ═══════════════════════════════════════════════════
   PREMIUM FOOTER REDESIGN
   ═══════════════════════════════════════════════════ */
.premium-footer {
  position: relative;
  background: linear-gradient(180deg, #121212 0%, #080808 100%);
  color: var(--white);
  padding: 3rem 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-footer-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Highlight Section */
.footer-highlight-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
  color: #cfcfcf;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Premium Social Buttons */
.premium-social-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.premium-social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  transition: all 0.4s var(--ease-out-back);
  position: relative;
  overflow: hidden;
}

.premium-social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(244, 180, 0, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-social-btn:hover {
  border-color: rgba(244, 180, 0, 0.4);
  transform: scale(1.1);
  color: var(--color-yellow);
  box-shadow: 0 5px 20px rgba(244, 180, 0, 0.15);
}

.premium-social-btn:hover::before {
  opacity: 1;
}

.premium-social-btn svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
}

/* Main Grid Layout */
.premium-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* Custom Links */
.premium-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.premium-link {
  color: #999999;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.premium-link::before {
  content: '→';
  font-family: monospace;
  margin-right: -10px;
  opacity: 0;
  color: var(--color-yellow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1rem;
}

.premium-link:hover {
  color: var(--white);
  padding-left: 15px;
}

.premium-link:hover::before {
  opacity: 1;
  margin-right: 8px;
}

/* Contact List Customization */
.premium-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.premium-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.5;
}

.premium-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.premium-contact-item a:hover {
  color: var(--color-yellow);
}

.premium-contact-item i {
  color: var(--color-yellow);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bottom Bar */
.premium-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #777777;
  flex-wrap: wrap;
  gap: 1rem;
}

.designed-with-care {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.designed-with-care i {
  color: var(--color-yellow);
}

@media (max-width: 768px) {
  .footer-highlight-section {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .premium-footer-grid {
    gap: 3rem;
  }

  .premium-bottom-bar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
/* ═══════════════════════════════════════════════════
   RESPONSIVE GRIDS FOR NEW CONTENT
   ═══════════════════════════════════════════════════ */
.grid-responsive-base {
  display: grid;
  gap: 2rem;
}

.grid-cols-auto-280 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-cols-auto-320 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-cols-auto-500 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr)); }

@media (max-width: 768px) {
  .grid-responsive-base {
    gap: 1.25rem;
  }
  .package-grid-card {
    padding: 1.5rem !important; /* Override inline styles robustly */
  }
}
