/* ============================================================
   Travel Website — Design System
   Bold, playful, destination-marketing style (Lanzarote-inspired):
   sunny yellow + leaf green + punchy red, hand-drawn icon accents,
   brush-script headline treatment, organic wave dividers.
   Mobile-first, fully responsive.
   ============================================================ */

:root {
  --color-primary: #1E7A46;
  --color-primary-dark: #135530;
  --color-primary-light: #E7F5EC;
  --color-accent: #FFC42C;
  --color-accent-dark: #E8A800;
  --color-red: #E8442C;
  --color-red-dark: #C6341F;
  --color-ink: #16241B;
  --color-body: #445046;
  --color-muted: #7C8A7E;
  --color-line: #E7ECE6;
  --color-bg: #ffffff;
  --color-bg-soft: #F6F8F5;
  --color-white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 3px rgba(22, 36, 27, 0.07), 0 1px 2px rgba(22, 36, 27, 0.09);
  --shadow-md: 0 10px 26px rgba(22, 36, 27, 0.11);
  --shadow-lg: 0 24px 54px rgba(22, 36, 27, 0.18);
  --container: 1220px;
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; position: relative; }
.section--soft { background: var(--color-bg-soft); }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head.align-left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}
.eyebrow::before { content: '✦'; color: var(--color-accent); font-size: 16px; }
.section-head h2 { font-size: clamp(28px, 4.2vw, 42px); }
.section-head h2 .script { font-family: var(--font-script); font-weight: 700; color: var(--color-primary); font-size: 1.35em; display: inline-block; transform: rotate(-2deg); }
.section-head p { color: var(--color-muted); font-size: 17px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--color-accent); color: var(--color-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-accent { background: var(--color-red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--color-red-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-green { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-green:hover { background: var(--color-primary-dark); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-ink); border-color: var(--color-line); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-white { background: #fff; color: var(--color-primary-dark); }
.btn-white:hover { box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ── Utility bar (thin green strip above main nav) ── */
.util-bar { background: var(--color-primary); color: rgba(255,255,255,.92); font-size: 12.5px; }
.util-bar-inner { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; gap: 12px; }
.util-links { display: flex; gap: 18px; flex-wrap: wrap; }
.util-links a:hover { color: #fff; text-decoration: underline; }
.util-social { display: flex; gap: 12px; align-items: center; }
.util-social a { display: flex; opacity: .9; }
.util-social a:hover { opacity: 1; }

/* ── Topbar ── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 1px 0 rgba(22,36,27,.02);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--color-ink); flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: conic-gradient(from 180deg, var(--color-accent), var(--color-red), var(--color-primary), var(--color-accent));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; box-shadow: var(--shadow-sm);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 14px; font-weight: 700; color: var(--color-ink); transition: color .15s, background .15s;
  text-transform: uppercase; letter-spacing: .03em;
  padding: 8px 14px; border-radius: 999px;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-primary-dark); background: var(--color-primary-light); }
.topbar-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.topbar-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--color-ink); font-size: 14px; }
.topbar-phone svg { color: var(--color-primary); flex-shrink: 0; }

.nav-toggle {
  display: none; background: none; border: none; padding: 8px;
  color: var(--color-ink);
}
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: #fff; padding: 20px; overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { display: block; padding: 14px 4px; font-size: 18px; font-weight: 700; border-bottom: 1px solid var(--color-line); color: var(--color-ink); }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
}
.hero-media-full { position: relative; height: min(72vh, 620px); min-height: 420px; overflow: hidden; background: var(--color-ink); }
.hero-media-full img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-full::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(22,36,27,.05) 0%, rgba(22,36,27,.12) 55%, rgba(22,36,27,.4) 100%);
}
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0;
  opacity: 0; transition: opacity 1.1s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
.hero-copy {
  position: absolute; left: 0; right: 0; bottom: 90px; text-align: center; color: #fff; z-index: 3;
  padding: 0 20px;
}
.hero-eyebrow, .hero-copy h1 { transition: opacity .28s ease; }
.hero-eyebrow { font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .3em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 6px; }
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.5);
  color: #fff; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
  transition: background .15s;
}
.hero-nav:hover { background: rgba(255,255,255,.32); }
.hero-nav-prev { left: 18px; }
.hero-nav-next { right: 18px; }
.hero-dots { position: relative; margin-top: 26px; display: flex; justify-content: center; gap: 8px; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; padding: 0; transition: background .2s, transform .2s; }
.hero-dot.is-active { background: var(--color-accent); transform: scale(1.25); }
@media (max-width: 720px) { .hero-nav { width: 38px; height: 38px; } .hero-nav svg { width: 18px; height: 18px; } }
.hero-copy h1 { color: #fff; font-size: clamp(38px, 7vw, 74px); margin: 0; text-shadow: 0 4px 24px rgba(0,0,0,.25); }
.hero-copy h1 .script { font-family: var(--font-script); font-weight: 700; display: block; font-size: 1.3em; color: var(--color-accent); transform: rotate(-2deg); line-height: 1; margin-top: 2px; }
.hero-copy .hero-actions { justify-content: center; margin-top: 26px; }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -2px; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: auto; display: block; }

.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 span { color: var(--color-primary); }
.hero p.lead { font-size: 18px; color: var(--color-body); max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--color-ink); }
.hero-stat span { font-size: 13px; color: var(--color-muted); text-transform: uppercase; letter-spacing: .05em; }

/* ── Search / inquiry bar ── */
.search-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 24px; margin-top: -28px; position: relative; z-index: 5;
  border: 1px solid var(--color-line);
}
.search-grid { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px; align-items: end; }
.field label { display: block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--color-muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--color-line); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; color: var(--color-ink); background: var(--color-bg-soft);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-primary); background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }

/* ── Icon row (hand-drawn-style category badges) ── */
.icon-row { display: flex; gap: 30px; overflow-x: auto; padding: 8px 4px 18px; scrollbar-width: thin; }
.icon-row-item { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; width: 96px; text-align: center; }
.icon-row-badge {
  width: 74px; height: 74px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 30px; background: var(--color-bg-soft); border: 2px dashed var(--color-line);
  transition: transform .2s, border-color .2s, background .2s;
}
.icon-row-item:nth-child(6n+1) .icon-row-badge { background: #FFF4D6; border-color: var(--color-accent); }
.icon-row-item:nth-child(6n+2) .icon-row-badge { background: #E7F5EC; border-color: var(--color-primary); }
.icon-row-item:nth-child(6n+3) .icon-row-badge { background: #FDE7E3; border-color: var(--color-red); }
.icon-row-item:nth-child(6n+4) .icon-row-badge { background: #E6F0FB; border-color: #4C86D6; }
.icon-row-item:nth-child(6n+5) .icon-row-badge { background: #F1E7FB; border-color: #9B6FD6; }
.icon-row-item:nth-child(6n+6) .icon-row-badge { background: #FFF4D6; border-color: var(--color-accent); }
.icon-row-item:hover .icon-row-badge { transform: scale(1.08) rotate(-4deg); }
.icon-row-item span.label { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--color-ink); }

/* ── Highlight band (bold color block section, wavy edges) ── */
.highlight-band { position: relative; background: var(--color-accent); padding: 74px 0 90px; overflow: hidden; }
.highlight-band.is-green { background: var(--color-primary); color: #fff; }
.highlight-band.is-green .section-head h2, .highlight-band.is-green .eyebrow { color: #fff; }
.highlight-band .wave-top, .highlight-band .wave-bottom { position: absolute; left: 0; right: 0; line-height: 0; z-index: 1; }
.highlight-band .wave-top { top: -1px; }
.highlight-band .wave-bottom { bottom: -1px; transform: scaleY(-1); }
.highlight-band .section-head { position: relative; z-index: 2; }
.highlight-band .eyebrow { color: var(--color-ink); }
.highlight-band .eyebrow::before { color: var(--color-red); }

/* ── Cards / grids ── */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg-card { display: flex; flex-direction: column; }
.pkg-media { position: relative; aspect-ratio: 4/3; background: var(--color-bg-soft); }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; }
.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--color-red); color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
  padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.pkg-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.pkg-dest { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--color-primary); margin-bottom: 6px; }
.pkg-body h3 { font-size: 19px; margin-bottom: 8px; }
.pkg-body p { font-size: 14px; color: var(--color-muted); flex: 1; }
.pkg-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--color-line); }
.pkg-price { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--color-ink); }
.pkg-price small { font-size: 12px; font-weight: 500; color: var(--color-muted); }
.pkg-duration { font-size: 13px; color: var(--color-muted); display: flex; align-items: center; gap: 6px; font-weight: 600; }

.icon-tile {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  border: 2px dashed var(--color-primary);
}
.feature-card { padding: 30px 26px; }
.feature-card h3 { font-size: 18px; }
.feature-card p { font-size: 14.5px; color: var(--color-muted); margin: 0; }

.team-card { text-align: center; padding: 28px 20px; }
.team-photo {
  width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px;
  background: var(--color-primary-light); border: 3px solid var(--color-accent);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 17px; margin-bottom: 2px; }
.team-role { font-size: 13px; color: var(--color-primary); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .03em; }
.team-card p { font-size: 13.5px; color: var(--color-muted); }

.testi-card { padding: 28px; position: relative; }
.testi-stars { color: var(--color-accent-dark); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-msg { font-size: 15px; color: var(--color-body); font-style: italic; margin-bottom: 18px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--color-primary-light); border: 2px solid var(--color-accent); }
.testi-name { font-weight: 800; color: var(--color-ink); font-size: 14px; }
.testi-loc { font-size: 12.5px; color: var(--color-muted); }

/* ── About / split sections ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3.2; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 15px; color: var(--color-body); font-weight: 600; }
.checklist svg { flex-shrink: 0; color: var(--color-primary); margin-top: 3px; }

/* ── CTA band ── */
.cta-band {
  background: var(--color-ink);
  border-radius: var(--radius-lg); padding: 56px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%;
  background: var(--color-accent); opacity: .15;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; font-size: 28px; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-info-card { background: var(--color-bg-soft); border-radius: var(--radius-lg); padding: 32px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.contact-row h4 { font-size: 15px; margin-bottom: 3px; }
.contact-row p { font-size: 14px; color: var(--color-muted); margin: 0; }
.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--color-line);
  display: flex; align-items: center; justify-content: center; color: var(--color-primary);
  transition: background .15s, color .15s;
}
.social-btn:hover { background: var(--color-primary); color: #fff; }

.form-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 20px; }
.form-alert.success { background: #e7f6ee; color: #1a7a45; border: 1px solid #b9e6cc; }
.form-alert.error { background: #fdeceb; color: #b3261e; border: 1px solid #f6c6c2; }

/* ── Footer ── */
.footer { background: var(--color-ink); color: #cfd8c9; padding: 0 0 26px; }
.footer-newsletter {
  background: var(--color-primary-dark); padding: 34px 0; margin-bottom: 54px;
}
.footer-newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-newsletter h3 { color: #fff; font-size: 20px; margin: 0; }
.footer-newsletter p { color: rgba(255,255,255,.75); margin: 4px 0 0; font-size: 13.5px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 12px 16px; border-radius: 999px; border: none; font-size: 14px; min-width: 200px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .04em; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer p { font-size: 14px; color: #9fb0ac; }
.footer ul li { margin-bottom: 10px; }
.footer a { font-size: 14px; color: #b7c4c1; transition: color .15s; }
.footer a:hover { color: var(--color-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; font-size: 13px; color: #7f918d; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--color-accent); font-weight: 700; }

/* ── Page header (About/Packages/Team/Contact/Book/CMS) ── */
.page-hero { background: var(--color-primary-light); padding: 56px 0 76px; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); }
.page-hero p { max-width: 560px; margin: 0 auto; color: var(--color-body); font-size: 16.5px; }
/* Same wave-divider treatment as the homepage hero, so the flat colour band
   never cuts straight into the white section below on any inner page. */
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 42px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,64 C240,10 480,10 720,42 C960,74 1200,74 1440,32 L1440,90 L0,90 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%; pointer-events: none;
}
.breadcrumb { font-size: 13px; color: var(--color-muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--color-primary); }

/* ── Detail page ── */
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }
.detail-media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 26px; box-shadow: var(--shadow-md); aspect-ratio: 16/9; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-facts { display: flex; gap: 22px; flex-wrap: wrap; margin: 20px 0 26px; padding: 18px 0; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.detail-fact { font-size: 14px; }
.detail-fact strong { display: block; color: var(--color-ink); font-size: 15px; }
.sticky-card { position: sticky; top: 100px; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }

.wysiwyg :is(h1,h2,h3) { margin-top: 1.4em; }
.wysiwyg p { margin-bottom: 1.1em; }
.wysiwyg img { border-radius: var(--radius-md); margin: 1.2em 0; }

/* ── Floating WhatsApp ── */
.float-whatsapp {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  transition: transform .15s;
}
.float-whatsapp:hover { transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; aspect-ratio: 16/9; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .hero-media-full { height: 60vh; }
  .util-links { display: none; }
}

@media (max-width: 720px) {
  .nav-links, .topbar-phone-text { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 56px 0; }
  .highlight-band { padding: 56px 0 70px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr; }
  .search-card { margin-top: 20px; padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1; min-width: 0; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 26px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .page-hero { padding: 40px 0 58px; }
  .hero-media-full { height: 50vh; min-height: 340px; }
  .hero-copy { bottom: 40px; }
  .icon-row-badge { width: 62px; height: 62px; font-size: 24px; }
  .icon-row-item { width: 78px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-copy h1 { font-size: 32px; }
  .brand span.brand-text { display: none; }
  .util-bar-inner { justify-content: center; }
}

/* ── Book Now — type tabs ── */
.book-type-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.book-type-tab {
  flex: 1 1 90px; display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 8px; border: 1.5px solid var(--color-line); border-radius: var(--radius-md);
  background: var(--color-bg-soft); cursor: pointer; font-size: 13px; font-weight: 700;
  color: var(--color-body); transition: all .15s;
}
.book-type-tab:hover { border-color: var(--color-primary); }
.book-type-tab.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.book-type-icon { font-size: 22px; line-height: 1; }
@media (max-width: 480px) { .book-type-tab { font-size: 11.5px; padding: 10px 6px; } .book-type-icon { font-size: 18px; } }

/* ── Book Now — round trip / one way toggle ── */
.trip-toggle-row { display: flex; align-items: center; gap: 12px; margin: 4px 0 20px; }
.trip-toggle { position: relative; display: inline-flex; cursor: pointer; }
.trip-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.trip-toggle-track { width: 42px; height: 24px; background: var(--color-line); border-radius: 999px; transition: background .2s; display: block; }
.trip-toggle-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .2s; }
.trip-toggle input:checked + .trip-toggle-track { background: var(--color-primary); }
.trip-toggle input:checked + .trip-toggle-track .trip-toggle-thumb { transform: translateX(18px); }
.trip-toggle-label { font-size: 13.5px; font-weight: 700; color: var(--color-ink); }
