/* ── Reset & Variables ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #f28c00;
  --orange-dark: #d97a00;
  --dark:        #1c1c1c;
  --muted:       #6b7280;
  --light:       #f9fafb;
  --border:      #e5e7eb;
  --white:       #ffffff;
  --radius-card: 16px;
  --radius-btn:  10px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.14);
  --font:        'Poppins', sans-serif;
  --max-w:       1200px;
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; }
img  { display: block; max-width: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Typography ────────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem;    font-weight: 600; }
p  { color: var(--muted); font-size: .95rem; }

.accent { color: var(--orange); }
.section-label {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .5rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub   { max-width: 520px; margin: 0 auto 2.5rem; text-align: center; }

/* ── Layout helpers ────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 80px 0; }
.section--light { background: var(--light); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius-btn);
  font-family: var(--font); font-size: .92rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary {
  background: var(--orange); color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(242,140,0,.35); }
.btn-outline {
  background: transparent; color: var(--orange); border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--orange);
}
.btn-white:hover { background: var(--light); }

/* ── Nav ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 1.5rem; max-width: var(--max-w); margin: 0 auto;
}
.nav__logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.2rem; font-weight: 700; color: var(--dark);
}
.nav__logo img { height: 42px; width: auto; border-radius: 6px; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: color var(--transition); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--orange); transform: scaleX(0);
  transition: transform var(--transition); border-radius: 2px;
}
.nav__links a:hover, .nav__links a.active { color: var(--dark); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__cta { padding: .55rem 1.2rem; font-size: .85rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; flex-direction: column; padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border); gap: .75rem;
}
.nav__mobile a { font-size: 1rem; font-weight: 500; color: var(--dark); padding: .4rem 0; }
.nav__mobile.open { display: flex; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; padding-top: 68px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding-left: max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
  padding-bottom: 3rem;
}
.hero__promo {
  position: absolute;
  top: 50%; left: 50%;
  width: min(210px, 18vw);
  transform: translate(-95%, -95%) rotate(-7deg);
  transform-origin: center center;
  z-index: 3;
  cursor: pointer;
  display: block;
  outline: none;
  border: 0;
  background: transparent;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.25));
  transition: transform 0.25s ease;
}
.hero__promo:focus,
.hero__promo:focus-visible,
.hero__promo:active { outline: none; box-shadow: none; }
.hero__promo img {
  display: block; width: 100%; height: auto;
  border: 0;
  background: transparent;
  vertical-align: top;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 78% 70% at center, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 78% 70% at center, #000 55%, transparent 100%);
}
.hero__promo:hover {
  transform: translate(-95%, -95%) rotate(-7deg) scale(1.04);
}
.hero__text { max-width: 520px; }
.hero__headline { margin-bottom: 1.25rem; }
.hero__sub { margin-bottom: 2rem; font-size: 1rem; max-width: 420px; }
.hero__search {
  display: flex; gap: .75rem; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-btn); padding: .75rem;
  box-shadow: var(--shadow);
}
.hero__search select {
  flex: 1; min-width: 120px; border: none; outline: none;
  font-family: var(--font); font-size: .88rem; color: var(--dark);
  background: transparent; cursor: pointer;
}
.hero__search input[type="date"] {
  border: none; outline: none; font-family: var(--font);
  font-size: .88rem; color: var(--dark); background: transparent;
}
.hero__search .btn { padding: .65rem 1.4rem; font-size: .88rem; }

.hero__media {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  height: 460px; background: var(--light); box-shadow: var(--shadow);
}
.hero__video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2; width: 76px; height: 76px; border-radius: 50%; border: 0;
  background: rgba(0, 0, 0, 0.55); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background 0.2s, transform 0.2s, opacity 0.2s;
}
.hero__play:hover { background: rgba(0, 0, 0, 0.75); transform: translate(-50%, -50%) scale(1.06); }
.hero__play svg { width: 34px; height: 34px; fill: currentColor; margin-left: 4px; }
.hero__media.is-playing .hero__play { opacity: 0; pointer-events: none; }
.hero__video { cursor: pointer; }
.hero__badge {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--white); border-radius: 9px; padding: .45rem .85rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .55rem;
  white-space: nowrap; font-size: .7rem; z-index: 2;
}
.hero__badge-icon { font-size: 1.05rem; }
.hero__badge strong { display: block; font-size: .85rem; color: var(--dark); line-height: 1.15; }

/* ── Steps ─────────────────────────────────────────────────────────────────── */
.steps { padding: 80px 0; }
.steps__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.steps__image { border-radius: var(--radius-card); overflow: hidden; height: 420px; }
.steps__image img { width: 100%; height: 100%; }
.steps__list { display: flex; flex-direction: column; gap: 2rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step__num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700;
}
.step__body h3 { margin-bottom: .3rem; }

/* ── Destinations ──────────────────────────────────────────────────────────── */
.destinations__grid { }
.dest-card {
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  background: var(--white); cursor: pointer;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card__img { height: 220px; width: 100%; position: relative; overflow: hidden; }
.dest-card__img img { width: 100%; height: 100%; transition: transform .4s ease; }
.dest-card:hover .dest-card__img img { transform: scale(1.08); }
.dest-card__badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--white); border-radius: 20px;
  padding: .25rem .7rem; font-size: .78rem; font-weight: 600;
  display: flex; align-items: center; gap: .3rem;
}
.dest-card__body { padding: 1.25rem; }
.dest-card__body h3 { margin-bottom: .25rem; }
.dest-card__tag { font-size: .78rem; color: var(--orange); font-weight: 500; margin-bottom: .5rem; }
.dest-card__body p { font-size: .85rem; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dest-card__footer { display: flex; align-items: center; justify-content: space-between; }
.dest-card__price { font-weight: 700; font-size: .92rem; color: var(--dark); }
.dest-card__link { font-size: .82rem; color: var(--orange); font-weight: 600; }
.dest-card__link:hover { text-decoration: underline; }

/* ── Stats ─────────────────────────────────────────────────────────────────── */
.stats { background: var(--light); }
.stats__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.stats__image { border-radius: var(--radius-card); overflow: hidden; height: 400px; }
.stats__image img { width: 100%; height: 100%; }
.stats__content { }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.stat-item { }
.stat-item__num { font-size: 2.2rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-item__label { font-size: .85rem; color: var(--muted); margin-top: .25rem; }

/* ── Promo Band ────────────────────────────────────────────────────────────── */
.promo-band { padding: 56px 0 16px; }
.promo-band__card {
  display: block; max-width: 1100px; margin: 0 auto;
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  background: var(--light);
}
.promo-band__card::after {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--radius-card);
  box-shadow: inset 0 0 0 1px rgba(242,140,0,.18);
  pointer-events: none;
}
.promo-band__card img {
  width: 100%; height: auto; display: block;
}
.promo-band__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
@media (max-width: 720px) { .promo-band { padding: 40px 0 8px; } }

/* ── Packages ──────────────────────────────────────────────────────────────── */
.packages__grid { }
.pkg-card {
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--white);
  transition: var(--transition);
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pkg-card__img { height: 200px; position: relative; }
.pkg-card__img img { width: 100%; height: 100%; }
.pkg-card__duration {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: var(--white);
  border-radius: 20px; padding: .25rem .8rem; font-size: .78rem; font-weight: 600;
}
.pkg-card__body { padding: 1.25rem; }
.pkg-card__dest { font-size: .75rem; color: var(--orange); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.pkg-card__body h3 { margin-bottom: .5rem; }
.pkg-card__body p { font-size: .85rem; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pkg-card__footer { display: flex; align-items: center; justify-content: space-between; }
.pkg-card__price { font-weight: 700; font-size: .9rem; }

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testimonials { }
.testi__grid { }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 1.75rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-card__stars { color: var(--orange); font-size: 1rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testi-card__text { font-size: .9rem; color: var(--muted); margin-bottom: 1.25rem; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: .75rem; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testi-card__name { font-weight: 600; font-size: .9rem; }
.testi-card__loc { font-size: .78rem; color: var(--muted); }
.testi-card__meta { font-size: .78rem; color: var(--muted); margin-top: .15rem; }

/* ── Newsletter ────────────────────────────────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, #fff8ee 0%, #fff 100%);
  border-top: 1px solid var(--border);
}
.newsletter__box { max-width: 520px; margin: 0 auto; text-align: center; }
.newsletter__box h2 { margin-bottom: .75rem; }
.newsletter__box p { margin-bottom: 1.75rem; }
.newsletter__form { display: flex; gap: .75rem; }
.newsletter__form input {
  flex: 1; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-btn); font-family: var(--font); font-size: .9rem; outline: none;
  transition: border-color var(--transition);
}
.newsletter__form input:focus { border-color: var(--orange); }
.newsletter__form .btn { flex-shrink: 0; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer { background: var(--orange); color: var(--white); padding: 60px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand p { opacity: .85; font-size: .88rem; margin: .75rem 0 1.25rem; }
.footer__logo { display: flex; align-items: center; gap: .5rem; font-size: 1.15rem; font-weight: 700; }
.footer__logo img { height: 36px; width: auto; filter: brightness(0) invert(1); border-radius: 4px; }
.footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; opacity: .7; }
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { font-size: .88rem; opacity: .85; transition: opacity var(--transition); }
.footer__links a:hover { opacity: 1; text-decoration: underline; }
.footer__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.footer__gallery img { border-radius: 8px; height: 64px; width: 100%; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 1.25rem 0; text-align: center;
  font-size: .82rem; opacity: .75;
}
.footer__social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: flex; align-items: center;
  justify-content: center; color: var(--white);
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,.3);
}
.footer__social a svg { width: 18px; height: 18px; display: block; }
.footer__social a:hover { background: var(--white); color: var(--orange); border-color: var(--white); }

.footer__licenses { margin: 1rem 0 .5rem; }
.footer__licenses p {
  color: var(--white); opacity: .8; font-size: .78rem;
  margin-bottom: .25rem; line-height: 1.5;
}

/* ── Page hero banner (about / destinations / contact) ─────────────────────── */
.page-hero {
  padding: 120px 0 60px; background: linear-gradient(135deg, #fff8ee 0%, #fff 60%);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { text-align: left; }
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p { max-width: 540px; font-size: 1rem; }

/* ── About page ────────────────────────────────────────────────────────────── */
.about-mission {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-mission__img { border-radius: var(--radius-card); overflow: hidden; height: 420px; }
.about-mission__img img { width: 100%; height: 100%; }
.about-mission__text .section-label { text-align: left; }
.about-mission__text h2 { text-align: left; margin-bottom: 1rem; }
.about-mission__text p { max-width: 100%; }
.values__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 1.5rem; transition: var(--transition);
}
.value-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.value-card__icon { font-size: 1.8rem; margin-bottom: .75rem; }
.value-card h3 { margin-bottom: .4rem; }
.value-card p { font-size: .88rem; }

/* ── Destinations page ─────────────────────────────────────────────────────── */
.dest-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start;
}
.dest-split__gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: sticky; top: 88px;
}
.dest-split__gallery img { border-radius: var(--radius-card); height: 190px; width: 100%; }
.dest-split__gallery img:first-child { grid-column: span 2; height: 260px; }

.dest-split__content .section-label { text-align: left; }
.dest-split__content h2 { text-align: left; margin-bottom: .75rem; }
.dest-split__content > p { max-width: 100%; margin-bottom: 1.25rem; }

.dest-full__highlights { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.dest-full__tag {
  background: #fff8ee; border: 1px solid #fde8c0; color: var(--orange);
  border-radius: 20px; padding: .3rem .85rem; font-size: .8rem; font-weight: 500;
}
.dest-full__price { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; }

.dest-full__sections { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.dest-section { border-left: 3px solid var(--orange); padding-left: 1rem; }
.dest-section h4 { font-size: .95rem; font-weight: 600; color: var(--dark); margin-bottom: .35rem; }
.dest-section p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── Destination Tabs ──────────────────────────────────────────────────────── */
.dest-tabs {
  display: flex; gap: .75rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.dest-tab {
  padding: .7rem 1.8rem; border-radius: var(--radius-btn); cursor: pointer;
  font-family: var(--font); font-size: .92rem; font-weight: 600;
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange); transition: var(--transition);
}
.dest-tab:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }
.dest-tab.active {
  background: var(--orange); color: var(--white);
  box-shadow: 0 6px 20px rgba(242,140,0,.35);
}

.dest-panel { display: none; }
.dest-panel.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ── Contact page ──────────────────────────────────────────────────────────── */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact__item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #fff8ee; border: 1px solid #fde8c0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact__item h4 { margin-bottom: .2rem; font-size: .88rem; }
.contact__item p  { font-size: .9rem; }
.contact__form { background: var(--light); border-radius: var(--radius-card); padding: 2rem; }
.contact__form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-btn); font-family: var(--font); font-size: .9rem;
  outline: none; transition: border-color var(--transition); background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Scroll animations ─────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── Language Select ───────────────────────────────────────────────────────── */
.lang-select select {
  font-family: var(--font); font-size: .82rem; font-weight: 500;
  color: var(--dark); background: transparent;
  border: 1px solid var(--border); border-radius: var(--radius-btn);
  padding: .45rem .7rem; cursor: pointer; outline: none;
  transition: border-color var(--transition);
}
.lang-select select:hover { border-color: var(--orange); }

/* ── WhatsApp Inline Chat Widget ───────────────────────────────────────────── */
.wa-widget { position: fixed; right: 20px; bottom: 20px; z-index: 200; }

.wa-widget__toggle {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white); border: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  cursor: pointer; position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-pulse 4s cubic-bezier(.4, 0, .6, 1) infinite;
}
.wa-widget__toggle:hover { transform: scale(1.06); box-shadow: 0 12px 32px rgba(37, 211, 102, .55); animation: none; }
.wa-widget--open .wa-widget__toggle { animation: none; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 0   rgba(37, 211, 102, .55); }
  20%  { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-widget__toggle { animation: none; }
}
.wa-widget__toggle svg { width: 32px; height: 32px; }
.wa-widget__toggle-icon { display: flex; }

.wa-widget__dot {
  position: absolute; top: 4px; right: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #ef4444; border: 2px solid var(--white);
}

.wa-widget--open .wa-widget__dot { display: none; }

.wa-widget__panel {
  position: absolute; right: 0; bottom: 72px;
  width: 340px; max-width: calc(100vw - 40px);
  max-height: min(560px, calc(100vh - 120px));
  background: #e5ddd5;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  display: flex; flex-direction: column;
  transform: translateY(16px) scale(.92);
  opacity: 0; pointer-events: none;
  transform-origin: bottom right;
  transition: opacity .22s ease, transform .22s ease;
}
.wa-widget--open .wa-widget__panel {
  opacity: 1; pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wa-widget__header {
  background: #075e54; color: var(--white);
  padding: .9rem 1rem; display: flex; align-items: center; gap: .75rem;
}
.wa-widget__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-widget__avatar svg { width: 24px; height: 24px; }
.wa-widget__head-text { flex: 1; min-width: 0; }
.wa-widget__title { font-size: .95rem; font-weight: 600; line-height: 1.2; }
.wa-widget__status { font-size: .72rem; opacity: .8; margin-top: 2px; }
.wa-widget__close {
  background: transparent; border: none; color: var(--white);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  opacity: .85; padding: 0 .25rem;
}
.wa-widget__close:hover { opacity: 1; }

.wa-widget__body {
  flex: 1; overflow-y: auto; padding: 1rem;
  background:
    linear-gradient(rgba(229, 221, 213, .92), rgba(229, 221, 213, .92)),
    radial-gradient(circle at 20% 20%, #d4c9b8 1px, transparent 1px) 0 0/24px 24px;
}

.wa-widget__bubble {
  background: var(--white); border-radius: 0 8px 8px 8px;
  padding: .65rem .8rem; max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  position: relative; margin-bottom: .85rem;
}
.wa-widget__bubble::before {
  content: ''; position: absolute; top: 0; left: -8px;
  width: 0; height: 0; border-top: 8px solid var(--white);
  border-left: 8px solid transparent;
}
.wa-widget__bubble-name {
  font-size: .75rem; font-weight: 600; color: #128c7e; margin-bottom: .2rem;
}
.wa-widget__bubble-text {
  font-size: .88rem; color: var(--dark); line-height: 1.45;
}
.wa-widget__bubble-time {
  font-size: .68rem; color: var(--muted); text-align: right;
  margin-top: .25rem;
}

.wa-widget__chips {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem;
}
.wa-widget__chip {
  background: var(--white); border: 1px solid #d1c7b8;
  border-radius: 18px; padding: .4rem .8rem;
  font-family: var(--font); font-size: .8rem; color: #075e54;
  cursor: pointer; transition: var(--transition);
}
.wa-widget__chip:hover { background: #dcf8c6; border-color: #25d366; }

.wa-widget__form {
  display: flex; gap: .5rem; padding: .6rem;
  background: #f0f0f0; border-top: 1px solid #d8d8d8;
}
.wa-widget__input {
  flex: 1; border: none; outline: none;
  background: var(--white); border-radius: 20px;
  padding: .6rem 1rem; font-family: var(--font); font-size: .88rem;
}
.wa-widget__send {
  width: 40px; height: 40px; border-radius: 50%;
  background: #25d366; color: var(--white); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.wa-widget__send:hover { background: #128c7e; }

@media (max-width: 600px) {
  .wa-widget { right: 14px; bottom: 14px; }
  .wa-widget__panel { width: calc(100vw - 28px); bottom: 68px; }
  .wa-widget__toggle { width: 54px; height: 54px; }
  .wa-widget__toggle svg { width: 28px; height: 28px; }
}

/* ── Carousel ──────────────────────────────────────────────────────────────── */
.carousel { position: relative; padding: 0 40px; }
.carousel__track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 1.75rem) / 3);
  gap: 1.75rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .5rem 0 1.25rem;
  -webkit-overflow-scrolling: touch;
}
.carousel__track > * { scroll-snap-align: start; }
.carousel__track::-webkit-scrollbar { height: 6px; }
.carousel__track::-webkit-scrollbar-track { background: transparent; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  color: var(--orange); font-size: 1.5rem; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 5;
}
.carousel__nav:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.carousel__nav--prev { left: 0; }
.carousel__nav--next { right: 0; }

@media (max-width: 900px) {
  .carousel__track { grid-auto-columns: calc((100% - 1.75rem) / 2); }
}
@media (max-width: 600px) {
  .carousel { padding: 0 8px; }
  .carousel__track { grid-auto-columns: 85%; }
  .carousel__nav { display: none; }
}

/* ── Custom Package Card ───────────────────────────────────────────────────── */
.pkg-card--custom .pkg-card__img--custom {
  background: linear-gradient(135deg, #fff8ee 0%, #ffe8c4 100%);
  display: flex; align-items: center; justify-content: center;
  height: 200px;
}
.pkg-card__plus {
  font-size: 4rem; color: var(--orange); font-weight: 300;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* ── Contact form extras ───────────────────────────────────────────────────── */
.phone-row { display: grid; grid-template-columns: 110px 1fr; gap: .5rem; }
.phone-prefix { padding: .75rem .5rem !important; }
.travellers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.travellers-grid .sublabel { font-size: .78rem; color: var(--muted); font-weight: 400; margin-bottom: .25rem; display: block; }

.radio-group { display: flex; flex-direction: column; gap: .5rem; }
.radio-option {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem .9rem; border: 1px solid var(--border);
  border-radius: var(--radius-btn); cursor: pointer;
  font-size: .88rem; font-weight: 500;
  transition: var(--transition);
}
.radio-option:hover { border-color: var(--orange); }
.radio-option input[type=radio] { accent-color: var(--orange); width: auto; }
.radio-option input[type=radio]:checked + span { color: var(--orange); }

.form-note {
  font-size: .8rem; color: var(--muted); margin-top: 1rem;
  text-align: center; line-height: 1.5;
}
.form-success {
  margin-top: 1.25rem; padding: 1rem 1.25rem;
  background: #f0fdf4; border: 1px solid #86efac;
  border-radius: var(--radius-btn); color: #166534;
  font-size: .88rem; line-height: 1.6;
}
.contact__tag { font-size: .78rem; color: var(--muted); }
.contact__wa {
  display: inline-flex; align-items: center; vertical-align: middle;
  width: 16px; height: 16px; color: #25d366;
}
.contact__wa svg { width: 100%; height: 100%; }
.contact__office { display: block; margin-bottom: .75rem; line-height: 1.5; }
.contact__office:last-child { margin-bottom: 0; }
.contact__office strong { display: block; font-size: .82rem; color: var(--dark); margin-bottom: .15rem; }
.contact__office span { font-size: .9rem; color: inherit; }

@media (max-width: 600px) {
  .travellers-grid { grid-template-columns: 1fr; }
  .phone-row { grid-template-columns: 90px 1fr; }
}

/* ── Trades Page ───────────────────────────────────────────────────────────── */
.trades__list { display: flex; flex-direction: column; gap: 3.5rem; }
.trade-post {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
  align-items: center; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.trade-post--reverse { grid-template-columns: 1.2fr 1fr; }
.trade-post--reverse .trade-post__img,
.trade-post--reverse .trade-post__media { order: 2; }
.trade-post__img { height: 100%; min-height: 360px; }
.trade-post__img img { width: 100%; height: 100%; object-fit: cover; }
.trade-post__media {
  position: relative; height: 100%; min-height: 360px;
  background: #000; overflow: hidden;
}
.trade-post__video {
  width: 100%; height: 100%; object-fit: contain; display: block; cursor: pointer;
  background: #000;
}
.trade-post__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2; width: 76px; height: 76px; border-radius: 50%; border: 0;
  background: rgba(0, 0, 0, 0.55); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}
.trade-post__play:hover {
  background: rgba(0, 0, 0, 0.75); transform: translate(-50%, -50%) scale(1.06);
}
.trade-post__play svg { width: 34px; height: 34px; fill: currentColor; margin-left: 4px; }
.trade-post__media.is-playing .trade-post__play { opacity: 0; pointer-events: none; }
.trade-post__body { padding: 2rem 2.5rem; }
.trade-post__body h2 { margin-bottom: .5rem; }
.trade-post__body p { margin-bottom: 1rem; line-height: 1.7; }
.trade-post__loc { font-size: .88rem; color: var(--orange); font-weight: 500; margin-bottom: 1.25rem; }

@media (max-width: 1200px) {
  .trade-post__media { min-height: 420px; }
}

@media (max-width: 900px) {
  .trade-post, .trade-post--reverse { grid-template-columns: 1fr; }
  .trade-post--reverse .trade-post__img,
  .trade-post--reverse .trade-post__media { order: 0; }
  .trade-post__img { min-height: 240px; }
  .trade-post__media { min-height: 320px; }
  .trade-post__body { padding: 1.75rem; }
}

/* ── Package Detail Page ───────────────────────────────────────────────────── */
.package-detail { padding: 120px 0 60px; }
.back-link {
  display: inline-block; color: var(--orange); font-weight: 600;
  font-size: .88rem; margin-bottom: 2rem;
}
.back-link:hover { text-decoration: underline; }
.package-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; margin-bottom: 4rem;
}
.package-hero__img {
  height: 420px; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow);
}
.package-hero__img img { width: 100%; height: 100%; }
.package-hero__photos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: .75rem;
  height: 420px;
}
.package-hero__photos img {
  width: 100%; height: 100%;
  min-width: 0; min-height: 0;
  object-fit: cover; display: block;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}
.package-hero__body h1 { margin-bottom: 1rem; }
.package-hero__body p { font-size: 1rem; margin-bottom: 1rem; }
.package-season {
  color: var(--dark) !important; font-size: .95rem !important;
}

.package-section {
  padding: 3rem 0; border-top: 1px solid var(--border);
}
.package-section h2 { margin-bottom: 1rem; text-align: center; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 1.5rem;
  position: relative; text-align: center;
  transition: var(--transition);
}
.pricing-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
.pricing-card--tagged { border-color: var(--orange); border-width: 2px; }
.pricing-card__tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  padding: .25rem .75rem; border-radius: 20px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; white-space: nowrap;
}
.pricing-card__pax {
  font-size: 1rem; font-weight: 700; color: var(--dark);
  background: var(--orange); color: var(--white);
  border-radius: var(--radius-btn);
  padding: .5rem 1rem; margin-bottom: 1rem;
}
.pricing-card__price {
  font-size: 2rem; font-weight: 700; color: var(--dark);
  margin-bottom: 1rem;
}
.pricing-card__list {
  display: flex; flex-direction: column; gap: .5rem;
  text-align: left; font-size: .85rem; color: var(--muted);
}
.pricing-card__list li {
  padding: .4rem 0; border-top: 1px solid var(--border);
}
.pricing-card__note {
  font-size: .78rem; color: var(--muted); margin: -.5rem 0 1rem;
  font-style: italic;
}
.package-pricing-note {
  text-align: center; max-width: 720px; margin: 0 auto 1rem;
  font-size: .9rem; color: var(--muted);
}
.package-pricing-after {
  max-width: 720px; margin: 2.5rem auto 0;
  padding: 1.5rem 1.75rem;
  background: var(--light);
  border-radius: var(--radius-card);
  font-size: .9rem; color: var(--muted); line-height: 1.6;
}
.package-pricing-after h4 {
  font-size: .9rem; color: var(--dark);
  text-transform: uppercase; letter-spacing: .04em;
  margin: 1rem 0 .35rem; line-height: 1.3;
}
.package-pricing-after h4:first-child { margin-top: 0; }
.package-pricing-after p { margin: 0 0 .65rem; }
.package-pricing-after p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .package-hero { grid-template-columns: 1fr; }
  .package-hero__img { height: 280px; }
  .package-hero__photos { height: 320px; }
}
@media (max-width: 600px) {
  .package-hero__photos { height: 260px; gap: .5rem; }
}

/* ── Day-by-Day Itinerary Cards ───────────────────────────────────────────── */
.days-carousel .carousel__track {
  grid-auto-columns: calc((100% - 2 * 1.75rem) / 3);
}
.day-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.day-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.day-card__img {
  position: relative; height: 220px; background: #f3f3f3; overflow: hidden;
}
.day-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.day-card__label {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: var(--white);
  padding: .35rem .9rem; border-radius: var(--radius-btn);
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  box-shadow: var(--shadow-sm);
}
.day-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: .9rem; color: var(--muted); line-height: 1.6;
  flex: 1;
}
.day-card__body p { margin: 0; }
.day-card__heading {
  font-size: 1.05rem; color: var(--dark);
  margin: 0 0 .5rem; line-height: 1.3;
}

@media (max-width: 900px) {
  .days-carousel .carousel__track {
    grid-auto-columns: calc((100% - 1.75rem) / 2);
  }
}
@media (max-width: 600px) {
  .days-carousel .carousel__track { grid-auto-columns: 88%; }
  .day-card__img { height: 200px; }
}

/* ── Legal pages (privacy.html, statute.html) ──────────────────────────────── */
.legal { padding: 120px 0 60px; }
.legal__content { max-width: 820px; margin: 0 auto; }
.legal__content h1 {
  font-size: 2rem; line-height: 1.25; margin-bottom: 2rem;
  color: var(--dark);
}
.legal__section { margin-top: 2.5rem; }
.legal__section h2 {
  font-size: 1.15rem; color: var(--orange);
  margin-bottom: .75rem; line-height: 1.35;
}
.legal__section p {
  font-size: .95rem; color: var(--dark);
  line-height: 1.7; margin-bottom: .65rem;
}

/* ── Destinations tabs scroll ──────────────────────────────────────────────── */
.dest-tabs { overflow-x: auto; scrollbar-width: none; }
.dest-tabs::-webkit-scrollbar { display: none; }
.dest-tab { white-space: nowrap; flex-shrink: 0; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero__text { order: 1; }
  .hero__promo { order: 2; }
  .hero__media { height: 320px; order: 3; }
  .hero__promo {
    position: static;
    width: 100%;
    max-width: 360px;
    margin: 1.5rem auto 0;
    transform: none;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
  }
  .hero__promo:hover { transform: scale(1.02); }
  .hero__promo img {
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: var(--radius-card);
  }
  .steps__inner,
  .stats__inner,
  .about-mission,
  .contact__inner { grid-template-columns: 1fr; }
  .dest-split { grid-template-columns: 1fr; }
  .dest-split__gallery { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }
  .values__grid,
  .footer__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__media { height: 240px; }
  .section { padding: 50px 0; }
  h1 { font-size: 2rem; }
  .lang-select select { padding: .35rem .5rem; font-size: .78rem; }
  .hero__badge {
    bottom: 4px; left: 4px;
    padding: .2rem .45rem; gap: .3rem;
    font-size: .55rem; border-radius: 6px;
    box-shadow: var(--shadow-sm);
  }
  .hero__badge-icon { font-size: .8rem; }
  .hero__badge strong { font-size: .68rem; line-height: 1.1; }
}
