:root {
  --gold: #d4af37;
  --gold-bright: #f9e596;
  --gold-dark: #a6831d;
  --gold-muted: #7a6117;

  --green-deep: #030e0a;
  --green-rich: #081f16;
  --green-warm: #0f3827;
  --green-mid: #1e543d;
  --green-light: #3b8262;

  --ivory: #fcfbf8;
  --ivory-dark: #f2efe6;
  --white: #ffffff;
  --off-white: #f5f4ef;

  --gradient-gold: linear-gradient(135deg, #f9e596 0%, #d4af37 25%, #a6831d 75%, #7a6117 100%);
  --gradient-dark: linear-gradient(145deg, #030e0a 0%, #081f16 100%);
  --gradient-hero: linear-gradient(160deg, rgba(3, 14, 10, 0.88) 0%, rgba(15, 56, 39, 0.55) 50%, rgba(3, 14, 10, 0.97) 100%);
  --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.5), 0 0 15px rgba(249, 229, 150, 0.2);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.7), 0 10px 20px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 15px 35px rgba(3, 14, 10, 0.05), 0 5px 15px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 30px 60px rgba(3, 14, 10, 0.12), 0 10px 25px rgba(212, 175, 55, 0.15);

  --transition: 0.4s cubic-bezier(0.25, 1, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.25, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 8px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 50px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 13px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--green-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  border: 2px solid var(--green-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

::selection {
  background: var(--gold);
  color: var(--white);
  text-shadow: none;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: none;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--green-rich);
  overflow-x: hidden;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* LABELS & HEADERS */
.ornament-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
}

.ornament-label::before,
.ornament-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.8;
  transition: width var(--transition);
}

.ornament-label::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
  display: inline-block;
  transform: skewX(-5deg);
}

.section-header>p {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-header>p::before,
.section-header>p::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.8;
}

.section-header>p::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 30px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all var(--transition-bounce);
  border: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: -1;
}

.btn:hover::before {
  left: 150%;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--green-deep);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 50px -10px rgba(212, 175, 55, 0.8);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.6);
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: all var(--transition-slow);
  background: linear-gradient(to bottom, rgba(3, 14, 10, 0.8) 0%, transparent 100%);
}

.navbar.scrolled {
  background: rgba(3, 14, 10, 0.95);
  backdrop-filter: blur(25px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.2), 0 15px 40px rgba(0, 0, 0, 0.5);
  height: 65px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1001;
}

.logo-emblem {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
  flex-shrink: 0;
  position: relative;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  padding: 8px 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-bounce);
  transform-origin: center;
}

/* ─── SEARCH HERO (FAMILY SPECIFIC) ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  overflow: visible;
  background: var(--green-deep);
  padding: 120px 6% 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1565552643982-1262ab02ea7b?w=1920&q=90');
  background-size: cover;
  background-position: center;
  animation: heroKen 40s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from {
    transform: scale(1) translateY(0)
  }

  to {
    transform: scale(1.1) translateY(-2%)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 14, 10, 0.95) 0%, rgba(3, 14, 10, 0.8) 40%, rgba(3, 14, 10, 0.2) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: color-dodge;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: left;
  max-width: 800px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.hero h1 em {
  color: transparent;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-top: 10px;
  animation: flowingGold 8s linear infinite;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 0 3rem 0;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  border-left: 2px solid rgba(212, 175, 55, 0.5);
  padding-left: 20px;
}

/* Hero Trust Signals */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: none;
  padding-top: 0;
  margin: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-item i {
  color: var(--gold-muted);
  font-size: 1.2rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.25, 1), transform 0.9s cubic-bezier(0.25, 1, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FILTER BAR (Navigational) ─── */
.filter-section {
  position: fixed;
  left: 0;
  right: 0;
  top: 65px;
  z-index: 99;
  background: rgba(252, 251, 248, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 40px rgba(3, 14, 10, 0.05);
}

.filter-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.filter-container::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: transparent;
  color: var(--green-mid);
  transition: all var(--transition-bounce);
  text-decoration: none;
}

.filter-btn:hover {
  border-color: rgba(212, 175, 55, 0.8);
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.filter-btn i {
  font-size: 1rem;
}

/* View Toggle */
.view-toggle {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.view-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-btn:hover {
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--gold-bright);
}

.view-btn.active {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
}

/* ─── THE FAMILY GUIDE (EDITORIAL SECTION) ─── */
.guide-section {
  padding: 6rem 6% 8rem;
  background: var(--white);
  position: relative;
}

.guide-container {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.content-block {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 4.5rem;
  box-shadow: 0 20px 50px rgba(3, 14, 10, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  transition: all var(--transition-slow);
}

.content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.content-block p {
  color: var(--green-mid);
  font-size: 1.1rem;
  line-height: 2.1;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.content-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.overview-quote {
  margin: 2rem 0;
  padding: 2rem 3rem;
  background: var(--gradient-dark);
  border-radius: var(--r-md);
  position: relative;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.overview-quote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15rem;
  color: rgba(212, 175, 55, 0.05);
  line-height: 1;
  pointer-events: none;
}

.overview-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.overview-quote p em {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 500;
}

/* ─── CURATED EXPERIENCES GRID ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(3, 14, 10, 0.08);
}

.why-cell {
  background: var(--white);
  padding: 3.5rem;
  transition: all var(--transition-slow);
  position: relative;
  z-index: 1;
}

.why-cell:hover {
  transform: scale(1.02);
  z-index: 2;
  box-shadow: var(--shadow-hover);
  border-radius: var(--r-md);
}

.why-cell h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-cell p {
  color: var(--green-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 300;
}

/* ─── PACKAGES AREA ─── */
.packages-area {
  padding: 8rem 5% 10rem;
  background: var(--ivory);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1350px;
  margin: 0 auto;
  transition: all var(--transition);
}

/* PKG CARD */
.pkg-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.badge-premium,
.badge-save {
  position: absolute;
  top: 20px;
  z-index: 3;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
}

.badge-premium {
  left: 20px;
  background: var(--gradient-gold);
  color: var(--green-deep);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.badge-save {
  right: 20px;
  background: rgba(3, 14, 10, 0.85);
  color: var(--gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
}

.badge-premium~.badge-save {
  right: 20px;
  left: auto;
}

.pkg-img-box {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.25, 1), filter 1.2s;
  filter: saturate(0.9);
}

.pkg-card:hover .pkg-img {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(1.05);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 14, 10, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(3, 14, 10, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.duration-tag i {
  color: var(--gold-bright);
}

.pkg-body {
  padding: 3rem;
  flex: 1;
  background: linear-gradient(to top, #ffffff, #fcfbf8);
}

.pkg-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.pkg-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
}

.pkg-rating i {
  color: var(--gold);
}

.pkg-custom {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pkg-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.pkg-card:hover .pkg-title {
  color: var(--gold-dark);
}

.pkg-route {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--green-light);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.pkg-route i {
  color: var(--gold-dark);
  font-size: 1rem;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.amenity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-warm);
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.amenity:hover {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.amenity i {
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.pkg-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.price-details {
  display: flex;
  flex-direction: column;
}

.price-details p {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 4px;
  font-weight: 600;
}

.strike {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  color: rgba(30, 84, 61, 0.4);
  text-decoration: line-through;
  font-weight: 500;
}

.real-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-warm);
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.real-price span {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-light);
  text-transform: lowercase;
}

.pkg-actions {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-wa {
  background: rgba(37, 211, 102, 0.05);
  color: #16a34a;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-wa:hover {
  background: #25d366;
  color: var(--white);
}

.btn-detail {
  background: transparent;
  color: var(--green-deep);
}

.btn-detail:hover {
  background: var(--gradient-gold);
  color: var(--green-deep);
}

/* ─── FAQ ─── */
.faq-sec {
  padding: 10rem 6%;
  background: var(--ivory-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-item {
  background: var(--white);
}

.faq-question {
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  gap: 1rem;
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: var(--ivory);
}

.faq-question i {
  color: var(--gold-dark);
  transition: transform var(--transition-bounce);
  flex-shrink: 0;
  font-size: 1.4rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.25, 1, 0.25, 1);
  font-size: 1.05rem;
  color: var(--green-mid);
  line-height: 2;
  font-weight: 300;
  padding: 0 3rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 2.5rem;
}

/* ─── CTA BOX ─── */
.cta-box {
  margin: 0 auto 10rem;
  max-width: 1350px;
  background: var(--gradient-dark);
  border-radius: var(--r-lg);
  padding: 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.15rem;
  margin-bottom: 4rem;
  font-weight: 300;
  line-height: 2;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-1 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: #25d366;
  color: var(--white);
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition-bounce);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  cursor: pointer;
}

.btn-cta-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(37, 211, 102, 0.6);
}

.btn-cta-2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition-bounce);
  cursor: pointer;
}

.btn-cta-2:hover {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.footer {
  background: var(--green-deep);
  padding: 8rem 6% 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-brand-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2.1;
  margin: 1.8rem 0 2.5rem;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.soc-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(212, 175, 55, 0.8);
  transition: all var(--transition-bounce);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  background: rgba(255, 255, 255, 0.03);
}

.soc-btn:hover {
  background: var(--gradient-gold);
  color: var(--green-deep);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 2.2rem;
}

.footer-col a {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.2rem;
  transition: all var(--transition);
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 10px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.f-contact-row {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.f-contact-row span:first-child {
  color: var(--gold-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.f-contact-row span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(212, 175, 55, 0.7);
  margin: 0 15px;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-bright);
}

/* ─── RESPONSIVE ─── */
@media (max-width:1200px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width:1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero {
    padding-top: 120px;
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-bottom: 50px;
  }

  .guide-section {
    padding: 6rem 6%;
  }

  .filter-section {
    top: 65px;
  }
}

@media (max-width:768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 14, 10, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.25, 1);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.6rem;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--gold-bright);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--gold-bright);
  }

  .nav-cta-wrap {
    display: none;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-box {
    padding: 4rem 2.5rem;
  }

  .hero-trust {
    gap: 1.5rem;
    justify-content: center;
  }

  .filter-container {
    padding: 15px 0;
  }
}

@media (max-width:480px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .h-stat {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 1.5rem 0;
    width: 100%;
  }

  .h-stat:last-child {
    border-bottom: none;
  }

  .btn {
    display: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 2.5rem;
  }

  .why-cell {
    padding: 3.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-cell:nth-child(even) {
    border-left: none;
  }

  .stat-cell {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 2.5rem 0;
  }

  .stat-cell:last-child {
    border-bottom: none !important;
  }
}