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

:root {
  --bg: #0a0a0a;
  --bg2: #111;
  --bg3: #151515;
  --card-bg: #181818;
  --gold: #C89B3C;
  --gold-light: #F2C94C;
  --gold2: #E8B84B;
  --teal: #17B5AF;
  --white: #FFFFFF;
  --off-white: #f0ebe3;
  --muted: #7a7a7a;
  --border: rgba(200, 155, 60, 0.15);
  --border2: rgba(255, 255, 255, 0.07);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* Deshabilitar botones de WhatsApp por petición del usuario */
a[href*="wa.me"] {
  pointer-events: none !important;
  opacity: 0.8;
  cursor: default !important;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 72px;
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.99);
  border-bottom-color: rgba(200, 155, 60, 0.25);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-logo-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-links a.active {
  color: var(--gold);
}

.nav-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: #17B5AF;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
}

.nav-btn:hover {
  background: #12a09a;
  transform: translateY(-1px);
}

.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 100px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  flex-shrink: 0;
  color: #fff;
  padding: 0;
  line-height: 0
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-1px)
}

body.light-mode {
  --bg: #F5F7FA;
  --bg2: #EAECF0;
  --bg3: #151515;
  --card-bg: #fff;
  --white: #1A1E2C;
  --off-white: #2A2F3E;
  --muted: #6B7280;
  --border2: rgba(0, 0, 0, .08);
  background: var(--bg);
  color: var(--white)
}

body.light-mode nav {
  background: rgba(245, 247, 250, 0.7) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .nav-links a.active {
  color: var(--gold)
}

body.light-mode .nav-links a {
  color: rgba(26, 30, 44, .7)
}

body.light-mode .nav-logo-sub {
  color: #00C9B1
}

body.light-mode .mobile-menu {
  background: rgba(245, 247, 250, .98)
}

body.light-mode .mobile-menu a {
  color: rgba(26, 30, 44, .7)
}

body.light-mode .mobile-menu a.active {
  color: var(--gold)
}

body.light-mode .deal-card {
  background: var(--card-bg);
  border-color: rgba(0, 0, 0, .1)
}

body.light-mode .deal-card-title {
  color: #1A1E2C
}

body.light-mode .deal-card-desc {
  color: rgba(26, 30, 44, .6)
}

body.light-mode .testi-card {
  background: #fff;
  border-color: rgba(0, 0, 0, .1)
}

body.light-mode .testi-quote {
  color: #2A2F3E
}

body.light-mode .hero-h1,
body.light-mode .featured-card-title {
  color: #fff !important;
}

body.light-mode footer {
  background: #DDE1E8
}

body.light-mode .theme-toggle {
  background: transparent;
  border-color: rgba(0, 0, 0, .15);
  color: #1A1E2C
}

@media(max-width:768px) {
  .hero-sub {
    display: none !important
  }

  .nav-btn {
    display: none !important
  }

  .nav-hamburger {
    display: flex
  }
}

.custom-deal-cta {
  display: flex;
  justify-content: center;
  padding: 40px 72px 0
}

.btn-custom-deal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  padding: 22px 64px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(200, 155, 60, .35)
}

.btn-custom-deal:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 155, 60, .5)
}

@media(max-width:768px) {
  .custom-deal-cta {
    padding: 32px 20px 0
  }

  .btn-custom-deal {
    width: 100%;
    justify-content: center;
    padding: 20px 32px;
    font-size: .95rem
  }

  .featured-card {
    height: auto !important;
    min-height: 400px;
    align-items: stretch !important;
  }

  .featured-card-content {
    padding: 40px 24px 30px !important;
    flex-direction: column;
    text-align: center;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.6);
  }

  .featured-card-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .featured-card-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .featured-card-cta-box {
    align-items: center !important;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-sub {
    display: none !important;
  }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 32px;
  z-index: 199;
  border-bottom: 1px solid rgba(200, 155, 60, 0.12);
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

/* ── HERO – full parallax editorial ── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1538964173425-93884d739596?w=1800&q=88&fit=crop&h=1000') center 30%/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.10) 0%,
      rgba(10, 10, 10, 0.35) 50%,
      rgba(10, 10, 10, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 72px 72px;
  display: flex;
  flex-direction: column;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 155, 60, 0.4);
  background: rgba(200, 155, 60, 0.1);
  padding: 7px 18px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200, 155, 60, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}

.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item {
  flex: 1;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  border-right: 1px solid var(--border2);
  text-align: center;
}

.trust-item:last-child {
  border-right: none;
}

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── FEATURED DEAL (full-width editorial) ── */
.featured-section {
  padding: 80px 72px 0;
}

.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 56px;
  text-align: center;
}

.section-h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ── FEATURED CARD (hero-sized editorial) ── */
.featured-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 600px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.featured-card:hover {
  border-color: rgba(200, 155, 60, 0.5);
}

.featured-card-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1584132967334-10e028bd69f7?w=1400&q=85&fit=crop&h=700') center/cover no-repeat;
  transition: transform 0.8s ease;
}

.featured-card:hover .featured-card-bg {
  transform: scale(1.04);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.4) 55%, rgba(10, 10, 10, 0.0) 100%);
}

.featured-card-content {
  position: relative;
  z-index: 2;
  padding: 48px 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.featured-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  padding: 7px 16px;
  border-radius: 4px;
}

.featured-card-text {
  flex: 1;
}

.featured-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.featured-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.featured-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 24px;
}

.featured-card-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.featured-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.featured-card-cta-box {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.featured-price-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.featured-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

.featured-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.featured-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 155, 60, 0.4);
}

.featured-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ── DEAL CARDS GRID ── */
.deals-section {
  padding: 56px 72px 80px;
}

.deals-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.packages-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.deal-card {
  background: var(--card-bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.deal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 155, 60, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 155, 60, 0.08);
}

.deal-card-img {
  position: relative;
  overflow: hidden;
}

.deal-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.deal-card:hover .deal-card-img img {
  transform: scale(1.06);
}

.deal-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
}

.deal-ribbon.gold {
  background: var(--gold);
  color: var(--bg);
}

.deal-ribbon.teal {
  background: var(--teal);
  color: var(--bg);
}

.deal-ribbon.red {
  background: #c0392b;
  color: var(--white);
}

.deal-card-body {
  padding: 22px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deal-card-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.deal-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}

.deal-card-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.deal-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.inclusion-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(200, 155, 60, 0.25);
  color: rgba(200, 155, 60, 0.7);
  background: rgba(200, 155, 60, 0.05);
}

.deal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.deal-price-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.deal-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.deal-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 5px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
}

.deal-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── WHY BOOK US (horizontal strip) ── */
.why-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 72px;
}

.why-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.why-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testi-section {
  padding: 72px 72px 80px;
}

.testi-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}

.testi-card:hover {
  border-color: rgba(200, 155, 60, 0.25);
  transform: translateY(-3px);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--off-white);
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 155, 60, 0.3);
}

.testi-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.testi-origin {
  font-size: 0.68rem;
  color: var(--muted);
}

/* ── CONTACT CTA ── */
.cta-section {
  position: relative;
  padding: 96px 72px;
  overflow: hidden;
  text-align: center;
}

.cta-section-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80&fit=crop&h=500') center/cover;
}

.cta-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}

.cta-section-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-section-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-section-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 36px;
}

.cta-section-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #060606;
  padding: 64px 72px 36px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: 1400px;
  margin: 0 auto 56px;
}

.footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: var(--card-bg);
  border: 1px solid rgba(200, 155, 60, 0.12);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}

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

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(200, 155, 60, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  background: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-row2 {
    grid-template-columns: 1fr;
  }
}

@media(max-width:1024px) {

  nav,
  footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-content {
    padding: 0 40px 60px;
  }

  .trust-bar {
    padding: 0 32px;
  }

  .featured-section {
    padding: 64px 32px 0;
  }

  .deals-section,
  .testi-section {
    padding: 48px 32px 64px;
  }

  .why-section {
    padding: 52px 32px;
  }

  .cta-section {
    padding: 72px 32px;
  }

  .featured-card {
    height: 500px;
  }

  .featured-card-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 36px;
  }

  .featured-card-cta-box {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid>div:first-child {
    grid-column: span 2;
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 20px;
    height: 64px;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    height: 80vh;
  }

  .hero-content {
    padding: 0 24px 56px;
  }

  .hero-scroll {
    display: none;
  }

  .trust-bar {
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 1 1 calc(50% - 1px);
    max-width: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .featured-section {
    padding: 48px 20px 0;
  }

  .deals-section,
  .testi-section,
  .why-section {
    padding: 40px 20px 56px;
  }

  .cta-section {
    padding: 56px 20px;
  }

  .featured-card {
    height: auto;
    min-height: 460px;
  }

  .featured-card-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .packages-row2 {
    grid-template-columns: 1fr;
  }

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

  .testi-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 48px 20px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}
