/* ============================================================
   MAG ADVENTURE — STYLES
   Mag Tropica Brand | One-Page Tour Website
============================================================ */

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --coral:   #FF6B35;
  --teal:    #00BFA6;
  --navy:    #1A2B4A;
  --gold:    #FFB800;
  --green:   #4CAF50;
  --cream:   #FDFBF7;
  --white:   #FFFFFF;
  --gray-50: #F8F8F6;
  --gray-100:#F0EDE8;
  --gray-400:#9A9590;
  --gray-600:#6B6560;
  --gray-800:#2D2A26;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;

  --ticker-h: 36px;
  --nav-h:    76px;
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 24px rgba(26,43,74,0.10);
  --shadow-lg:0 8px 48px rgba(26,43,74,0.16);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section header ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-tag--light { color: rgba(255,255,255,0.8); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

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

.section-desc {
  max-width: 540px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 15px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn--primary:hover {
  background: #e55a28;
  box-shadow: 0 6px 28px rgba(255,107,53,0.5);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.btn--email {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--email:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---- Scroll animations ---- */
.reveal, .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   TICKER BAR
============================================================ */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 36px;
  background: #2E7D32;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}

.ticker__track:hover {
  animation-play-state: paused;
}

.ticker__content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-right: 0;
}

.ticker__item {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 0 20px;
}

.ticker__sep {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(253,251,247,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,43,74,0.10);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav__logo-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.06em;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover, .nav__link--active { color: var(--coral); background: rgba(255,107,53,0.06); }

.nav__link--cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 3px 14px rgba(255,107,53,0.3);
}

.nav__link--cta:hover {
  background: #e55a28;
  box-shadow: 0 5px 20px rgba(255,107,53,0.45);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: calc(var(--ticker-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px 28px;
  box-shadow: 0 8px 30px rgba(26,43,74,0.12);
  flex-direction: column;
  gap: 4px;
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: 8px;
  transition: var(--transition);
}
.nav__mobile-link:hover { color: var(--coral); background: rgba(255,107,53,0.06); }

.nav__mobile-link--cta {
  background: var(--coral);
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
  border-radius: 50px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
}

.hero__bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  background: #0a1628; /* dark fallback while image loads */
  transition: opacity 1.2s ease;
}

.hero__placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1);    transform-origin: center center; }
  100% { transform: scale(1.14); transform-origin: 60% 40%; }
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/tour-overview-bg.png') center center / cover no-repeat;
  opacity: 0.20;
  pointer-events: none;
}

/* When hero-bg.jpg exists, add it to .hero__bg via JS or replace above */
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(
    160deg,
    rgba(26,43,74,0.65) 0%,
    rgba(26,43,74,0.40) 50%,
    rgba(10,32,24,0.60) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 5;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(52px, 10vw, 108px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-family: var(--font-head);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.hero__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.hero__dot { color: var(--coral); font-size: 10px; }

.hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 0.2; }
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about__card {
  text-align: center;
  overflow: hidden;
  border-radius: 0;
  background: var(--cream);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

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

.about__card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}

.about__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.about__card:hover .about__card-img-wrap img {
  transform: scale(1.05);
}

.about__card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 24px 28px 0;
}

.about__card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  padding: 0 28px 28px;
}

/* Tour overview */
.about__overview {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #243860 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  overflow: hidden;
}

.about__overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/tour-overview-bg.png') center center / cover no-repeat;
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
}

.about__overview > * {
  position: relative;
  z-index: 1;
}

.about__overview-header {
  text-align: center;
  margin-bottom: 36px;
}

.about__overview-header h3 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about__overview-header p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

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

.about__overview-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__overview-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__overview-icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.about__overview-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.about__overview-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

/* ============================================================
   EXPERIENCES
============================================================ */
.experiences {
  padding: 100px 0;
  background: var(--cream);
}

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

.exp__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.exp__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.exp__card-img {
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}

.exp__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.exp__card-body {
  padding: 28px;
}

.exp__card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.exp__card-body h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.exp__card-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 18px;
}

.exp__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp__features li {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
  padding-left: 16px;
  position: relative;
}

.exp__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 11px;
}

/* ============================================================
   HIGHLIGHTS
============================================================ */
.highlights {
  padding: 100px 0;
  background: var(--white);
}

.highlight__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.highlight__row:last-child { margin-bottom: 0; }

.highlight__row--reverse .highlight__img-wrap { order: 2; }
.highlight__row--reverse .highlight__content  { order: 1; }

.highlight__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.highlight__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-radius: var(--radius-lg);
}

.highlight__icon-img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}

.highlight__num {
  display: block;
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: var(--gray-100);
  margin-bottom: -16px;
}

.highlight__content h3 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.highlight__content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ---- Highlight photos ---- */
.highlight__photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--hl-bg);
}

.highlight__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.7s ease;
}

.highlight__row.visible .highlight__photo {
  transform: scale(1);
  opacity: 1;
}

.highlight__detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 8px 16px;
  background: rgba(0,191,166,0.08);
  border-radius: 50px;
  border: 1px solid rgba(0,191,166,0.2);
}

/* ============================================================
   ITINERARY
============================================================ */
.itinerary {
  padding: 100px 0;
  background: var(--cream);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), #2E7D32);
}

.timeline__item {
  display: grid;
  grid-template-columns: 110px 24px 1fr;
  gap: 0 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__time {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  padding-top: 3px;
  transition: color var(--transition);
}

.timeline__item:hover .timeline__time {
  color: #388E3C;
}

.timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
  position: relative;
  margin-top: 4px;
  flex-shrink: 0;
  z-index: 1;
  transition: var(--transition);
}

.timeline__dot--end {
  background: var(--green);
  border-color: var(--green);
}

.timeline__item:hover .timeline__dot {
  background: var(--green);
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(76,175,80,0.2);
}

.timeline__content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 2px 12px rgba(26,43,74,0.07);
  transition: var(--transition);
  cursor: pointer;
}

.timeline__item:hover .timeline__content {
  background: rgba(76,175,80,0.06);
  box-shadow: 0 6px 24px rgba(76,175,80,0.18);
  transform: translateX(4px);
  border-left: 3px solid var(--green);
}

.timeline__content h4 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.timeline__content p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   PRICING
============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing__table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing__table thead tr {
  background: var(--navy);
  color: var(--white);
}

.pricing__table th {
  padding: 18px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.pricing__table th:first-child { text-align: left; }

.pricing__table td {
  padding: 22px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.pricing__table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--navy);
}

.pricing__best {
  background: rgba(255,184,0,0.12) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 16px;
  font-style: italic;
}

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

.pricing__includes,
.pricing__excludes {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
}

.pricing__includes h3,
.pricing__excludes h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy);
}

.pricing__includes li,
.pricing__excludes li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}

.pricing__includes li:last-child,
.pricing__excludes li:last-child { border-bottom: none; }

.pricing__badge {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--gold), #FF9F00);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--navy);
}

.pricing__badge span {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.pricing__badge p {
  font-size: 12px;
  color: rgba(26,43,74,0.7);
}

/* ============================================================
   YOUTUBE VIDEO SECTION
============================================================ */
.video-section {
  background: var(--navy);
  padding: 80px 0;
}

.video-section .section-header { margin-bottom: 48px; }
.video-section .section-tag--light { color: rgba(255,255,255,0.6); }
.video-section .section-tag--light::after { background: rgba(255,255,255,0.3); }
.video-section .section-title { color: var(--white); }
.video-section .section-title em { color: var(--teal); }

.yt-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
}

.yt-embed__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.yt-embed:hover .yt-embed__thumb { transform: scale(1.04); }

.yt-embed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.yt-embed:hover .yt-embed__overlay { background: rgba(0,0,0,0.2); }

.yt-embed__play-btn {
  width: 80px;
  height: 80px;
  background: #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 32px rgba(255,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-embed:hover .yt-embed__play-btn {
  transform: scale(1.12);
  box-shadow: 0 8px 48px rgba(255,0,0,0.7);
}

.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   DESTINATIONS
============================================================ */
.destinations {
  padding: 100px 0;
  background: var(--cream);
}

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

.dest__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dest__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dest__card-img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.dest__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.dest__card-body {
  padding: 24px;
}

.dest__card-body h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.dest__subtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.dest__card-body > p:last-child {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   CALL TO ACTION
============================================================ */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy) 0%, #0d3d30 50%, #1a3a28 100%);
}

.cta__bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,191,166,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.cta__bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.14) 0%, transparent 70%);
  border-radius: 50%;
}

.cta__inner {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.cta__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin: 16px 0 20px;
}

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

.cta__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta__contact-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   TERMS & CONDITIONS
============================================================ */
.terms {
  padding: 100px 0;
  background: var(--white);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--gray-100);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.accordion__btn:hover { color: var(--coral); }

.accordion__btn[aria-expanded="true"] { color: var(--coral); }

.accordion__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--teal);
}

.accordion__btn[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  display: none;
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

.accordion__body.open { display: block; }

.terms__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.terms__checklist li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 6px 0;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer__top { padding: 72px 0 48px; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__logo-fallback { display: none; margin-bottom: 12px; }
.footer__logo-text {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer__social { display: flex; gap: 12px; }

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 8px; }

.footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--teal); }

.footer__contact { gap: 12px !important; }

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer__contact svg { flex-shrink: 0; margin-top: 1px; color: var(--teal); }
.footer__contact a:hover { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer__credit {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer__credit-link {
  color: var(--teal);
  transition: color var(--transition);
}

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

.footer__credit-sep {
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 3px 16px rgba(26,43,74,0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid var(--gray-100);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow);
}

/* ============================================================
   RESPONSIVE — TABLET (768px)
============================================================ */
@media (max-width: 1024px) {
  .about__cards { grid-template-columns: repeat(2, 1fr); }
  .about__overview-grid { grid-template-columns: repeat(2, 1fr); }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
  .dest__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .highlight__row,
  .highlight__row--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .highlight__row--reverse .highlight__img-wrap { order: 0; }
  .highlight__row--reverse .highlight__content  { order: 0; }

  .pricing__grid { grid-template-columns: 1fr; }
  .terms__checklist { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --ticker-h: 30px; --nav-h: 64px; }

  .ticker { height: 30px; }
  .ticker__item { font-size: 11px; padding: 0 14px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__tagline { flex-direction: column; gap: 4px; }
  .hero__dot { display: none; }

  .about__cards { grid-template-columns: 1fr; }
  .about__overview { padding: 28px 20px; }
  .about__overview-grid { grid-template-columns: 1fr; }

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

  .timeline::before { left: 80px; }
  .timeline__item { grid-template-columns: 80px 20px 1fr; gap: 0 12px; }
  .timeline__time { font-size: 11px; }

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

  .cta__buttons { flex-direction: column; align-items: center; }
  .cta__contact-info { flex-direction: column; gap: 8px; }

  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }
  .about { padding: 60px 0; }
  .experiences { padding: 60px 0; }
  .highlights { padding: 60px 0; }
  .itinerary { padding: 60px 0; }
  .pricing { padding: 60px 0; }
  .destinations { padding: 60px 0; }
  .cta { padding: 80px 0; }
  .terms { padding: 60px 0; }

  .highlight__num { font-size: 52px; }
  .highlight__content h3 { font-size: 28px; }

  .whatsapp-float { bottom: 16px; right: 16px; }
  .back-to-top { right: 82px; bottom: 16px; }
}
