/* ==========================================================================
   Ami Tours n Travels — stylesheet
   ========================================================================== */

@font-face { font-family: "IBM Plex Sans"; src: url("../fonts/ibm-plex-sans-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "IBM Plex Sans"; src: url("../fonts/ibm-plex-sans-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "IBM Plex Sans"; src: url("../fonts/ibm-plex-sans-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "IBM Plex Sans"; src: url("../fonts/ibm-plex-sans-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
    --navy-900: #0c1830;
    --navy-800: #13233f;
    --navy-700: #1c3156;
    --teal-600: #0e7c7b;
    --teal-700: #0a6463;
    --teal-50:  #e8f4f3;
    --amber:    #f2b544;

    --ink:      #14213d;
    --text:     #3d4758;
    --muted:    #677186;
    --line:     #e2e7ee;
    --line-2:   #d3dae4;
    --tint:     #f4f6f9;
    --white:    #ffffff;

    --radius:    6px;
    --radius-lg: 10px;
    --shadow-sm: 0 1px 2px rgba(16, 30, 54, .06);
    --shadow:    0 6px 20px -8px rgba(16, 30, 54, .18);
    --shadow-lg: 0 18px 40px -16px rgba(12, 24, 48, .35);

    --container: 1200px;
    --gutter:    20px;
    --section:   52px;
    --ease:      cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
    margin: 0;
    font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 600; line-height: 1.25; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--teal-600); outline-offset: 2px; border-radius: 3px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.skip-link { position: absolute; left: 12px; top: -40px; z-index: 1000; padding: 8px 12px; background: var(--navy-800); color: #fff; border-radius: var(--radius); }
.skip-link:focus { top: 12px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 42px; padding: 0 18px;
    border: 1px solid transparent; border-radius: var(--radius);
    font-size: 14.5px; font-weight: 600; line-height: 1; white-space: nowrap;
    cursor: pointer; transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn--sm { height: 34px; padding: 0 14px; font-size: 13.5px; }
.btn--lg { height: 46px; padding: 0 22px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--teal-600); color: #fff; }
.btn--primary:hover { background: var(--teal-700); }
.btn--ghost { background: #fff; border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--teal-600); color: var(--teal-700); background: var(--teal-50); }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { background: #eef2f6; }
.btn--outline-light { border-color: rgba(255, 255, 255, .45); color: #fff; background: rgba(255, 255, 255, .04); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .12); }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14.5px; color: var(--teal-700); }
.link-arrow svg { transition: transform .18s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

.eyebrow { margin-bottom: 6px; font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--teal-600); }
.eyebrow--light { color: #8fe0d6; }
.section { padding: var(--section) 0; }
.section--tint { background: var(--tint); }
.section-title { font-size: 24px; line-height: 1.3; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: #c3cce0; font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 16px; }
.topbar__list { display: flex; align-items: center; gap: 22px; }
.topbar__list li, .topbar__list a { display: inline-flex; align-items: center; gap: 7px; }
.topbar__list svg { color: #6fd0c5; }
.topbar__list a:hover { color: #fff; }
.topbar__label { color: #8791a8; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .97); border-bottom: 1px solid var(--line); backdrop-filter: saturate(160%) blur(6px); }
.header.is-scrolled { box-shadow: 0 4px 18px -12px rgba(12, 24, 48, .35); }
.header__inner { display: flex; align-items: center; gap: 28px; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.015em; }
.brand__name em { font-style: normal; font-weight: 500; color: var(--teal-600); }
.brand__sub { font-size: 11.5px; color: var(--muted); letter-spacing: .02em; }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__name em { color: #6fd0c5; }
.brand--light .brand__sub { color: #93a0b8; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 4px; height: 70px; padding: 0 12px; font-size: 14.5px; font-weight: 500; color: var(--ink); position: relative; }
.nav__link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 2px; background: var(--teal-600); transform: scaleX(0); transition: transform .2s var(--ease); }
.nav__link:hover { color: var(--teal-700); }
.nav__link.is-active::after, .nav__link:hover::after { transform: scaleX(1); }
.nav__link svg { color: var(--muted); transition: transform .2s var(--ease); }
.nav__item--has-menu:hover .nav__link svg, .nav__item--has-menu:focus-within .nav__link svg { transform: rotate(180deg); }

.menu {
    position: absolute; top: 100%; left: 50%; width: 560px; padding: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translate(-50%, 6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__item--has-menu:hover .menu, .nav__item--has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.menu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.menu__link { display: flex; flex-direction: column; padding: 9px 12px; border-radius: var(--radius); }
.menu__link:hover { background: var(--tint); }
.menu__title { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.menu__meta { font-size: 12.5px; color: var(--muted); }
.menu__all { display: flex; align-items: center; gap: 6px; margin-top: 6px; padding: 10px 12px 4px; border-top: 1px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--teal-700); }

.header__actions { display: flex; align-items: center; gap: 16px; }
.header__call { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14.5px; color: var(--ink); line-height: 1.2; }
.header__call small { display: block; font-size: 11.5px; font-weight: 500; color: var(--muted); }
.header__call-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); }
.nav-toggle { display: none; width: 44px; height: 44px; margin-right: -8px; border: 0; background: none; color: var(--ink); cursor: pointer; place-items: center; }

/* ---------- Drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 100; background: rgba(8, 16, 32, .5); }
.drawer[hidden] { display: none; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 88vw); padding: 16px 20px 24px; background: #fff; overflow-y: auto; display: flex; flex-direction: column; gap: 18px; animation: drawer-in .22s var(--ease); }
@keyframes drawer-in { from { transform: translateX(24px); opacity: 0; } }
.drawer__head { display: flex; justify-content: space-between; align-items: center; }
.drawer__close { width: 44px; height: 44px; margin-right: -10px; border: 0; background: none; cursor: pointer; display: grid; place-items: center; color: var(--ink); }
.drawer__nav a { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 500; color: var(--ink); }
.drawer__nav a.is-active { color: var(--teal-700); }
.drawer__contacts { display: grid; gap: 12px; }
.drawer__contacts a { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.drawer__contacts svg { color: var(--teal-600); flex-shrink: 0; }
.drawer__contacts small { display: block; font-size: 12px; font-weight: 500; color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; background: var(--navy-900); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9, 18, 36, .86) 0%, rgba(9, 18, 36, .62) 36%, rgba(9, 18, 36, .12) 64%, rgba(9, 18, 36, .28) 100%), linear-gradient(0deg, rgba(9, 18, 36, .35) 0%, rgba(9, 18, 36, 0) 40%); }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) 370px; align-items: center; gap: 48px; padding-top: 56px; padding-bottom: 56px; min-height: 480px; }
.hero__content { max-width: 560px; }
.hero__title { font-size: 34px; line-height: 1.2; font-weight: 600; color: #fff; letter-spacing: -.02em; }
.hero__text { margin-top: 14px; font-size: 16px; line-height: 1.65; color: #d5dcea; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; font-size: 13.5px; color: #cfd7e6; }
.hero__points li { display: inline-flex; align-items: center; gap: 6px; }
.hero__points svg { color: #6fd0c5; }

.quick-form { background: #fff; color: var(--text); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg); display: grid; gap: 12px; }
.quick-form__head { margin-bottom: 2px; }
.quick-form__title { font-size: 18px; }
.quick-form__head p { margin-top: 2px; font-size: 13.5px; color: var(--muted); }
.quick-form__note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12.5px; color: var(--muted); }
.quick-form__note svg { color: var(--teal-600); }

/* ---------- Form fields ---------- */
.field { display: grid; gap: 5px; min-width: 0; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink); }
.field label span { color: #c2410c; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field input, .field select, .field textarea {
    width: 100%; height: 42px; padding: 0 12px;
    background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius);
    font-size: 14.5px; color: var(--ink);
    transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field select { appearance: none; padding-right: 32px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23677186' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; text-overflow: ellipsis; }
.field textarea { height: auto; min-height: 96px; padding: 10px 12px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #b9c3d1; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(14, 124, 123, .15); }

/* ---------- Facts strip ---------- */
.facts { border-bottom: 1px solid var(--line); background: #fff; }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { display: flex; align-items: center; gap: 12px; padding: 20px 20px; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact:first-child { padding-left: 0; }
.fact__icon { display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--radius); background: var(--teal-50); color: var(--teal-700); }
.fact strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.fact span { font-size: 13px; color: var(--muted); }

/* ---------- Package cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease); }
.card:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-2px); }
.card__media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--tint); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__badge { position: absolute; left: 10px; top: 10px; padding: 3px 8px; border-radius: 4px; background: rgba(12, 24, 48, .82); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 14px 16px 16px; }
.card__region { font-size: 12px; font-weight: 500; color: var(--teal-700); letter-spacing: .02em; }
.card__title { margin-top: 4px; font-size: 16px; line-height: 1.35; }
.card__title a:hover { color: var(--teal-700); }
.card__route { display: flex; gap: 6px; margin-top: 8px; font-size: 13px; line-height: 1.45; color: var(--muted); }
.card__route svg { flex-shrink: 0; margin-top: 2px; color: #98a2b3; }
.card__route span { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__body > .card__route { margin-bottom: 14px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.card__link { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 600; color: var(--teal-700); }
.card__link svg { transition: transform .18s var(--ease); }
.card__link:hover svg { transform: translateX(3px); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.steps__intro p:not(.eyebrow) { margin: 10px 0 14px; color: var(--muted); }
.steps__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step__num { display: inline-block; font-size: 13px; font-weight: 700; color: var(--teal-600); letter-spacing: .04em; }
.step__num::after { content: ""; display: inline-block; width: 28px; height: 1px; margin-left: 8px; vertical-align: middle; background: var(--line-2); }
.step__title { margin-top: 8px; font-size: 16px; }
.step p { margin-top: 6px; font-size: 14px; color: var(--muted); }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why__media { position: relative; }
.why__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.why__contact { position: absolute; left: 16px; bottom: 16px; padding: 14px 16px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: grid; gap: 6px; min-width: 250px; }
.why__contact p { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.why__contact a { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; font-weight: 600; color: var(--ink); }
.why__contact a span { font-weight: 500; color: var(--text); }
.why__contact a:hover { color: var(--teal-700); }
.why__lead { margin-top: 10px; color: var(--muted); }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.why__list li { display: flex; gap: 10px; }
.why__list svg { flex-shrink: 0; margin-top: 2px; padding: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); }
.why__list strong { display: block; font-size: 14.5px; color: var(--ink); font-weight: 600; }
.why__list span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* ---------- Accordion ---------- */
.faq-preview { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.faq-preview__intro p:not(.eyebrow) { margin: 10px 0 14px; color: var(--muted); }
.accordion { display: grid; gap: 10px; }
.accordion__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.accordion__item[open] { border-color: var(--line-2); }
.accordion__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; }
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary:hover { color: var(--teal-700); }
.accordion__icon { display: grid; place-items: center; width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--tint); color: var(--ink); transition: transform .2s var(--ease), background-color .2s var(--ease); }
.accordion__item[open] .accordion__icon { transform: rotate(45deg); background: var(--teal-50); color: var(--teal-700); }
.accordion__item p { padding: 0 16px 16px; margin-top: -4px; font-size: 14.5px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { background: var(--navy-800); color: #c9d2e3; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 30px; padding-bottom: 30px; }
.cta__title { font-size: 21px; color: #fff; }
.cta p { margin-top: 3px; }
.cta__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #a9b3c7; font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: 1.35fr 1.2fr .8fr 1.25fr; gap: 40px; padding-top: 48px; padding-bottom: 40px; }
.footer__about p { margin-top: 14px; line-height: 1.65; max-width: 330px; }
.footer__about .footer__domain { margin-top: 10px; font-weight: 600; color: #6fd0c5; }
.footer__title { margin-bottom: 12px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.footer__title--spaced { margin-top: 22px; }
.footer__links { display: grid; gap: 7px; }
.footer__links a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact { display: grid; gap: 14px; }
.footer__contact li { display: flex; gap: 10px; line-height: 1.55; }
.footer__contact svg { flex-shrink: 0; margin-top: 3px; color: #6fd0c5; }
.footer__contact strong { display: block; color: #fff; font-weight: 600; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13px; color: #8591a8; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 12px; padding-top: 16px; padding-bottom: 16px; }
.footer__bottom-inner p { display: flex; gap: 10px; }
.footer__bottom a:hover { color: #fff; }

.whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .35); transition: transform .2s var(--ease); }
.whatsapp:hover { transform: scale(1.06); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Page header (inner pages) ---------- */
.page-header { position: relative; isolation: isolate; overflow: hidden; background: var(--navy-900); color: #c3cce0; }
.page-header__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.page-header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9, 18, 36, .9) 0%, rgba(9, 18, 36, .72) 45%, rgba(9, 18, 36, .35) 100%), linear-gradient(0deg, rgba(9, 18, 36, .45) 0%, rgba(9, 18, 36, 0) 60%); }
.page-header .container { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 230px; padding-top: 30px; padding-bottom: 32px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; color: #b3bdd0; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: #7b879e; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: #fff; }
.page-header__title { margin-top: 8px; font-size: 30px; color: #fff; letter-spacing: -.02em; }
.page-header__text { margin-top: 6px; max-width: 640px; font-size: 15.5px; color: #d5dcea; }

.section--compact { padding-top: 28px; }

/* ---------- Packages toolbar ---------- */
.toolbar { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 13.5px; font-weight: 500; color: var(--ink); cursor: pointer; transition: background-color .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease); }
.chip span { min-width: 20px; padding: 0 6px; border-radius: 999px; background: var(--tint); font-size: 12px; font-weight: 600; line-height: 20px; color: var(--muted); text-align: center; }
.chip:hover { border-color: var(--line-2); background: var(--tint); }
.chip.is-active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.chip.is-active span { background: rgba(255, 255, 255, .16); color: #fff; }
.toolbar__controls { display: flex; gap: 8px; flex-shrink: 0; }
.toolbar__search { position: relative; }
.toolbar__search svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: #98a2b3; pointer-events: none; }
.toolbar__search input, .toolbar__select { height: 38px; border: 1px solid var(--line-2); border-radius: var(--radius); background-color: #fff; font-size: 14px; color: var(--ink); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.toolbar__search input { width: 210px; padding: 0 12px 0 34px; }
.toolbar__search input::placeholder { color: #98a2b3; }
.toolbar__select { appearance: none; padding: 0 32px 0 12px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23677186' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; cursor: pointer; }
.toolbar__search input:focus, .toolbar__select:focus { outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(14, 124, 123, .15); }

.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 14px 0 18px; font-size: 14px; color: var(--muted); }
.results-bar__count { display: flex; align-items: center; gap: 14px; }
.results-bar strong { color: var(--ink); }
.results-bar__reset { border: 0; background: none; padding: 4px 0; font-size: 13.5px; font-weight: 600; color: var(--teal-700); cursor: pointer; }
.results-bar__reset:hover { text-decoration: underline; }

.card-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card[hidden] { display: none; }
.card--detailed .card__media { aspect-ratio: 16 / 10; }
.card--detailed .card__title { font-size: 17px; }
.card--detailed .card__body > .card__route { margin-bottom: 0; }
.card__summary { margin-top: 10px; font-size: 14px; line-height: 1.55; color: var(--text); }
.card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 16px; }
.card__tags li { padding: 2px 8px; border-radius: 4px; background: var(--tint); font-size: 12px; font-weight: 500; color: var(--muted); }

.empty-state { padding: 40px 20px; text-align: center; border: 1px dashed var(--line-2); border-radius: var(--radius-lg); }
.empty-state h2 { font-size: 18px; }
.empty-state p { margin: 6px auto 0; max-width: 460px; color: var(--muted); }
.empty-state__actions { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }

.custom-trip { display: flex; flex-direction: column; justify-content: space-between; gap: 22px; padding: 24px 22px; background: var(--navy-800); border-radius: var(--radius-lg); color: #b9c3d6; }
.custom-trip[hidden] { display: none; }
.custom-trip .eyebrow { color: #8fe0d6; }
.custom-trip__title { font-size: 20px; color: #fff; }
.custom-trip__text > p:not(.eyebrow) { margin-top: 6px; font-size: 14px; }
.custom-trip__list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.custom-trip__list li { padding: 3px 10px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; font-size: 12.5px; color: #dfe5ef; }
.custom-trip__actions { display: grid; gap: 14px; }
.custom-trip__call { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; line-height: 1.25; }
.custom-trip__call svg { color: #6fd0c5; }
.custom-trip__call small { display: block; font-size: 12px; font-weight: 500; color: #93a0b8; }
.custom-trip__call:hover { color: #8fe0d6; }

/* ---------- Tour detail ---------- */
.tour-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--navy-900); color: #fff; }
.tour-hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.tour-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(9, 18, 36, .9) 0%, rgba(9, 18, 36, .4) 50%, rgba(9, 18, 36, .12) 100%), linear-gradient(90deg, rgba(9, 18, 36, .5) 0%, rgba(9, 18, 36, 0) 55%); }
.tour-hero__inner { display: flex; flex-direction: column; justify-content: flex-end; min-height: 340px; padding-top: 26px; padding-bottom: 30px; }
.tour-hero .breadcrumb { margin-bottom: auto; }
.tour-hero .breadcrumb ol { color: #b3bdd0; }
.tour-hero .breadcrumb li + li::before { color: #7b879e; }
.tour-hero .breadcrumb [aria-current] { color: #fff; }
.tour-hero__region { margin-top: 48px; font-size: 12.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: #8fe0d6; }
.tour-hero__title { margin-top: 4px; max-width: 760px; font-size: 32px; line-height: 1.2; color: #fff; letter-spacing: -.02em; }
.tour-hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tour-hero__meta li { display: inline-flex; align-items: center; gap: 7px; height: 32px; padding: 0 12px; border-radius: 999px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .16); font-size: 13.5px; font-weight: 500; backdrop-filter: blur(4px); }
.tour-hero__meta svg { color: #8fe0d6; }

.tour-bar { position: sticky; top: 70px; z-index: 30; background: #fff; border-bottom: 1px solid var(--line); }
.tour-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 50px; }
.tour-bar__nav { display: flex; gap: 4px; height: 100%; }
.tour-bar__nav a { display: flex; align-items: center; padding: 0 12px; font-size: 14px; font-weight: 500; color: var(--text); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tour-bar__nav a:first-child { padding-left: 0; }
.tour-bar__nav a:hover { color: var(--teal-700); }
.tour-bar__nav a.is-current { color: var(--ink); border-bottom-color: var(--teal-600); }
.tour-bar__price { font-size: 14px; font-weight: 600; color: var(--ink); }
.tour-bar__price span { font-weight: 400; color: var(--muted); }

.tour-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 40px; align-items: start; }
.tour-main { display: grid; gap: 36px; }
.tour-block { scroll-margin-top: 136px; }
.tour-block__title { font-size: 19px; }
.tour-block__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.tour-summary { font-size: 16.5px; line-height: 1.6; color: var(--ink); }

.facts-table { display: grid; grid-template-columns: repeat(4, 1fr); margin: 18px 0 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.facts-table > div { padding: 12px 14px; }
.facts-table > div + div { border-left: 1px solid var(--line); }
.facts-table dt { font-size: 12px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.facts-table dd { margin: 2px 0 0; font-size: 14.5px; font-weight: 600; line-height: 1.4; color: var(--ink); }

.route { margin-top: 26px; }
.route__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; margin-top: 12px; counter-reset: stop; }
.route__stop { position: relative; display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.route__num { display: grid; place-items: center; width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--navy-800); font-size: 12px; font-weight: 600; color: #fff; }
.route__stop > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.route__place { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.route__nights { font-size: 12.5px; line-height: 1.3; color: var(--muted); }

.highlights { margin-top: 26px; }
.highlights__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 12px; }
.highlights__list li { display: flex; gap: 9px; font-size: 14.5px; line-height: 1.5; }
.highlights__list svg { flex-shrink: 0; margin-top: 2px; color: var(--teal-600); }

.expand-all { border: 0; background: none; padding: 6px 0; font-size: 13.5px; font-weight: 600; color: var(--teal-700); cursor: pointer; }
.expand-all:hover { text-decoration: underline; }

.timeline { position: relative; display: grid; gap: 10px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 22px; bottom: 22px; width: 1px; background: var(--line-2); }
.timeline__item { position: relative; padding-left: 30px; }
.timeline__item::before { content: ""; position: absolute; left: 2px; top: 19px; width: 11px; height: 11px; border-radius: 50%; background: #fff; border: 2px solid var(--teal-600); }
.timeline__item:first-child::before, .timeline__item:last-child::before { background: var(--teal-600); }
.day { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.day[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.day__summary { display: flex; align-items: center; gap: 12px; padding: 12px 14px; cursor: pointer; list-style: none; }
.day__summary::-webkit-details-marker { display: none; }
.day__num { flex-shrink: 0; min-width: 52px; padding: 2px 0; border-radius: 4px; background: var(--teal-50); font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--teal-700); text-align: center; }
.day__title { flex: 1; font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.day__summary:hover .day__title { color: var(--teal-700); }
.day__chevron { display: grid; place-items: center; color: var(--muted); transition: transform .2s var(--ease); }
.day[open] .day__chevron { transform: rotate(180deg); }
.day__body { display: grid; gap: 8px; padding: 0 14px 14px 78px; margin-top: -2px; font-size: 14.5px; line-height: 1.65; }
.day__overnight { display: inline-flex; align-items: center; gap: 7px; justify-self: start; margin-top: 4px; padding: 4px 10px; border-radius: 4px; background: var(--tint); font-size: 13px; color: var(--muted); }
.day__overnight svg { color: var(--teal-600); }
.day__overnight strong { color: var(--ink); font-weight: 600; }

.notes { display: grid; gap: 8px; margin-top: 12px; padding: 16px 18px; background: #fffaf0; border: 1px solid #f3e3c3; border-radius: var(--radius-lg); }
.notes li { position: relative; padding-left: 16px; font-size: 14px; line-height: 1.55; color: #5a4a2c; }
.notes li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: #d4a24c; }

.tour-aside { position: sticky; top: 136px; display: grid; gap: 14px; scroll-margin-top: 136px; }
.enquiry-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.enquiry-card__head { padding: 14px 18px; background: var(--navy-800); color: #b9c3d6; }
.enquiry-card__head h2 { font-size: 16.5px; color: #fff; }
.enquiry-card__head p { margin-top: 1px; font-size: 13px; }
.enquiry-card__body { padding: 16px 18px 14px; }
.enquiry-card__note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.enquiry-card__note svg { color: var(--teal-600); }
.enquiry-form { display: grid; gap: 10px; }
.enquiry-form .field input, .enquiry-form .field select { height: 40px; font-size: 14px; }
.enquiry-form .field textarea { min-height: 72px; font-size: 14px; }
.field label small { font-weight: 400; color: var(--muted); }
.field-row--3 { grid-template-columns: 1.3fr 1fr 1fr; }

.help-card { padding: 14px 18px; background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius-lg); display: grid; gap: 10px; }
.help-card h3 { font-size: 14px; }
.help-card__row { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.help-card__row small { display: block; font-size: 12px; font-weight: 500; color: var(--muted); }
.help-card__row:hover { color: var(--teal-700); }
.help-card__icon { display: grid; place-items: center; width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--teal-700); }
.help-card__icon--wa { color: #1da851; }

.mobile-enquire { display: none; }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: start; }
.contact-form { padding: 22px 24px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.contact-form__head { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.contact-form__head h2 { font-size: 19px; }
.contact-form__head p { margin-top: 4px; font-size: 14px; color: var(--muted); }
.contact-form .enquiry-form { gap: 12px; }
.contact-form .enquiry-form .field input, .contact-form .enquiry-form .field select { height: 42px; }
.contact-form .enquiry-form .field textarea { min-height: 110px; }
.contact-form .enquiry-form .btn { height: 44px; }
.contact-form__next { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.contact-form__next li { display: inline-flex; align-items: center; gap: 7px; }
.contact-form__next svg { color: var(--teal-600); }

.contact-aside { display: grid; gap: 14px; }
.contact-card { display: grid; gap: 14px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.contact-card__title { font-size: 16px; }
.person { display: flex; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.person__avatar { display: grid; place-items: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); }
.person__info { display: grid; gap: 3px; min-width: 0; }
.person__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.person__info a { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--text); overflow-wrap: anywhere; }
.person__info a svg { flex-shrink: 0; color: var(--teal-600); }
.person__info a:hover { color: var(--teal-700); }
.btn--whatsapp { background: #1fae52; color: #fff; }
.btn--whatsapp:hover { background: #178f43; }
.contact-list { display: grid; gap: 12px; }
.contact-list li { display: flex; gap: 10px; font-size: 14px; line-height: 1.55; color: var(--text); }
.contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--teal-600); }
.contact-list small { font-size: 12.5px; color: var(--muted); }
.contact-list a { overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--teal-700); }

.map-section { padding-bottom: var(--section); }
.map { overflow: hidden; height: 340px; background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ---------- About page ---------- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-intro__text > p:not(.eyebrow) { margin-top: 12px; color: var(--text); }
.about-intro__text .section-title { max-width: 520px; }
.about-intro__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; border-top: 1px solid var(--line); }
.about-intro__facts li { padding: 14px 16px 0 0; }
.about-intro__facts li + li { padding-left: 16px; border-left: 1px solid var(--line); }
.about-intro__facts strong { display: block; font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.about-intro__facts span { font-size: 13px; color: var(--muted); }
.about-intro__media { position: relative; padding: 0 0 40px 40px; }
.about-intro__main { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.about-intro__inset { position: absolute; left: 0; bottom: 0; width: 42%; aspect-ratio: 4 / 3; object-fit: cover; border: 5px solid #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service { display: flex; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.service__icon { display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius); background: var(--teal-50); color: var(--teal-700); }
.service__title { font-size: 15.5px; }
.service p { margin-top: 3px; font-size: 14px; line-height: 1.55; color: var(--muted); }

.approach { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.approach__intro p:not(.eyebrow) { margin-top: 10px; color: var(--muted); }
.approach__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.approach__item { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.approach__item:nth-child(-n+2) { border-top: 0; padding-top: 0; }
.approach__num { flex-shrink: 0; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--teal-600); line-height: 1.7; }
.approach__item h3 { font-size: 16px; }
.approach__item p { margin-top: 4px; font-size: 14px; color: var(--muted); }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-card { display: flex; flex-direction: column; gap: 14px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.team-card__top { display: flex; align-items: center; gap: 12px; }
.team-card__initial { display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; background: var(--navy-800); font-size: 18px; font-weight: 600; color: #fff; }
.team-card__initial--icon { background: var(--teal-50); color: var(--teal-700); }
.team-card h3 { font-size: 16px; }
.team-card__top p { font-size: 13px; color: var(--muted); }
.team-card__links { display: grid; gap: 6px; padding-top: 14px; border-top: 1px solid var(--line); }
.team-card__links a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); overflow-wrap: anywhere; }
.team-card__links svg { flex-shrink: 0; color: var(--teal-600); }
.team-card__links a:hover { color: var(--teal-700); }
.team-card__address { padding-top: 14px; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.55; }
.team-card--office .link-arrow { margin-top: auto; font-size: 14px; }

.destinations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.destination { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy-800); isolation: isolate; }
.destination img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.destination::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(9, 18, 36, .85) 0%, rgba(9, 18, 36, .1) 60%); }
.destination:hover img { transform: scale(1.05); }
.destination__text { position: absolute; left: 14px; right: 14px; bottom: 12px; display: flex; flex-direction: column; color: #fff; line-height: 1.3; }
.destination__text strong { font-size: 15.5px; font-weight: 600; }
.destination__text span { font-size: 12.5px; color: #d0d8e6; }

/* ---------- FAQs page ---------- */
.faq-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 40px; align-items: start; }
.faq-aside { position: sticky; top: 90px; display: grid; gap: 14px; }
.faq-nav { display: grid; gap: 2px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.faq-nav__label { padding: 4px 10px 6px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.faq-nav a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 10px; border-radius: var(--radius); font-size: 14.5px; font-weight: 500; color: var(--ink); transition: background-color .15s var(--ease), color .15s var(--ease); }
.faq-nav a:hover { background: var(--tint); }
.faq-nav a.is-current { background: var(--teal-50); color: var(--teal-700); }
.faq-nav__count { min-width: 22px; padding: 0 6px; border-radius: 999px; background: var(--tint); font-size: 12px; font-weight: 600; line-height: 20px; color: var(--muted); text-align: center; }
.faq-nav a.is-current .faq-nav__count { background: #fff; color: var(--teal-700); }
.faq-help { display: grid; gap: 10px; padding: 16px; background: var(--navy-800); border-radius: var(--radius-lg); color: #b9c3d6; }
.faq-help h2 { font-size: 16px; color: #fff; }
.faq-help p { font-size: 13.5px; line-height: 1.5; }
.faq-help__row { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #fff; line-height: 1.25; }
.faq-help__row svg { color: #6fd0c5; }
.faq-help__row small { display: block; font-size: 12px; font-weight: 500; color: #93a0b8; }
.faq-help__row:hover { color: #8fe0d6; }
.faq-help .btn { margin-top: 4px; }

.faq-main { display: grid; gap: 30px; }
.faq-search { position: relative; }
.faq-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #98a2b3; pointer-events: none; }
.faq-search input { width: 100%; height: 46px; padding: 0 14px 0 42px; border: 1px solid var(--line-2); border-radius: var(--radius-lg); font-size: 15px; color: var(--ink); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.faq-search input::placeholder { color: #98a2b3; }
.faq-search input:focus { outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(14, 124, 123, .15); }
.faq-empty { margin-top: -14px; padding: 16px; border: 1px dashed var(--line-2); border-radius: var(--radius-lg); font-size: 14.5px; color: var(--muted); text-align: center; }
.faq-empty a { font-weight: 600; color: var(--teal-700); }
.faq-group { scroll-margin-top: 90px; }
.faq-group[hidden], .accordion__item[hidden] { display: none; }
.faq-group__title { margin-bottom: 12px; font-size: 19px; }
.accordion__item p a { font-weight: 600; color: var(--teal-700); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Policy pages ---------- */
.policy-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 48px; align-items: start; }
.policy-aside { position: sticky; top: 90px; display: grid; gap: 14px; }
.policy-nav, .policy-toc { padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.policy-nav { display: grid; gap: 2px; }
.policy-nav__label { padding: 4px 10px 6px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.policy-nav a { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: var(--radius); font-size: 14.5px; font-weight: 500; color: var(--ink); }
.policy-nav a svg { color: var(--muted); }
.policy-nav a:hover { background: var(--tint); }
.policy-nav a.is-current { background: var(--teal-50); color: var(--teal-700); }
.policy-nav a.is-current svg { color: var(--teal-600); }
.policy-toc ol { display: grid; gap: 1px; padding: 0 0 2px; counter-reset: toc; }
.policy-toc li { counter-increment: toc; }
.policy-toc a { display: flex; gap: 8px; padding: 5px 10px; border-radius: var(--radius); font-size: 13.5px; line-height: 1.45; color: var(--text); }
.policy-toc a::before { content: counter(toc) "."; min-width: 16px; color: var(--muted); }
.policy-toc a:hover { background: var(--tint); color: var(--teal-700); }

.policy { max-width: 780px; }
.policy__intro { padding-bottom: 20px; margin-bottom: 8px; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.policy__section { padding: 18px 0 6px; scroll-margin-top: 90px; }
.policy__section h2 { display: flex; gap: 8px; margin-bottom: 10px; font-size: 18px; }
.policy__section h2 span { color: var(--teal-600); }
.prose { color: var(--text); font-size: 15px; line-height: 1.7; }
.prose > * + * { margin-top: 10px; }
.prose ul { display: grid; gap: 6px; padding-left: 2px; }
.prose ul li { position: relative; padding-left: 18px; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-600); opacity: .7; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { font-weight: 500; color: var(--teal-700); text-decoration: underline; text-underline-offset: 2px; }
.policy-table { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.policy-table table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.policy-table th { padding: 10px 14px; background: var(--tint); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); text-align: left; }
.policy-table td { padding: 11px 14px; border-top: 1px solid var(--line); color: var(--ink); }
.policy-table td:last-child { font-weight: 600; white-space: nowrap; }
.policy__contact { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding: 18px 20px; background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.policy__contact h2 { font-size: 16px; }
.policy__contact p { margin-top: 2px; font-size: 13.5px; color: var(--muted); }
.policy__contact-links { display: grid; gap: 6px; flex-shrink: 0; }
.policy__contact-links a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.policy__contact-links svg { color: var(--teal-600); }
.policy__contact-links a:hover { color: var(--teal-700); }

/* ---------- 404 ---------- */
.not-found { padding: 56px 0; background: linear-gradient(180deg, var(--tint) 0%, #fff 100%); }
.not-found__inner { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 56px; align-items: center; }
.not-found__code { display: inline-block; padding: 3px 10px; border-radius: 999px; background: var(--teal-50); font-size: 13px; font-weight: 600; color: var(--teal-700); }
.not-found h1 { margin-top: 12px; max-width: 540px; font-size: 30px; line-height: 1.25; letter-spacing: -.02em; }
.not-found__text > p:not(.not-found__code):not(.not-found__help) { margin-top: 10px; max-width: 520px; color: var(--muted); }
.not-found__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.not-found__help { margin-top: 18px; font-size: 14px; color: var(--muted); }
.not-found__help a { font-weight: 600; color: var(--teal-700); }
.not-found__tours { display: grid; gap: 8px; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.mini-tour { display: flex; align-items: center; gap: 12px; padding: 6px; border-radius: var(--radius); transition: background-color .15s var(--ease); }
.mini-tour:hover { background: var(--tint); }
.mini-tour img { width: 64px; height: 46px; flex-shrink: 0; object-fit: cover; border-radius: 5px; }
.mini-tour span { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.35; }
.mini-tour strong { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-tour small { font-size: 12.5px; color: var(--muted); }
.mini-tour > svg { flex-shrink: 0; color: var(--muted); }

/* ---------- Form states ---------- */
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #d14343; box-shadow: 0 0 0 3px rgba(209, 67, 67, .12); }
.field__error { font-size: 12.5px; line-height: 1.35; color: #b42318; }
.form-alert { padding: 9px 12px; border: 1px solid #f5c2c0; border-radius: var(--radius); background: #fef3f2; font-size: 13.5px; line-height: 1.45; color: #912018; }
.btn.is-loading { opacity: .85; cursor: progress; }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
form.is-sent > *:not(.form-success) { display: none !important; }
.form-success { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 18px 8px 10px; text-align: center; }
.form-success__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 4px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); }
.form-success h3 { font-size: 18px; }
.form-success p { max-width: 320px; font-size: 14px; color: var(--muted); }
.form-success .btn { margin-top: 10px; }

/* ---------- Enquiry modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8, 16, 32, .6); opacity: 0; transition: opacity .18s var(--ease); }
.modal__dialog { position: relative; display: flex; flex-direction: column; width: 100%; max-width: 520px; max-height: calc(100vh - 40px); background: #fff; border-radius: 12px; box-shadow: 0 30px 60px -20px rgba(8, 16, 32, .5); opacity: 0; transform: translateY(12px) scale(.98); transition: opacity .2s var(--ease), transform .2s var(--ease); }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal.is-open .modal__dialog { opacity: 1; transform: none; }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 18px 20px 14px; border-bottom: 1px solid var(--line); }
.modal__title { font-size: 19px; }
.modal__subtitle { margin-top: 3px; font-size: 13.5px; line-height: 1.45; color: var(--muted); }
.modal__close { display: grid; place-items: center; width: 36px; height: 36px; margin: -6px -8px 0 0; flex-shrink: 0; border: 0; border-radius: 50%; background: none; color: var(--muted); cursor: pointer; transition: background-color .15s var(--ease), color .15s var(--ease); }
.modal__close:hover { background: var(--tint); color: var(--ink); }
.modal__body { padding: 16px 20px 18px; overflow-y: auto; overscroll-behavior: contain; }
.modal__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px; padding: 12px 20px; border-top: 1px solid var(--line); background: var(--tint); border-radius: 0 0 12px 12px; font-size: 13px; color: var(--muted); }
.modal__foot a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); }
.modal__foot a svg { color: var(--teal-600); }
.modal__foot a:hover { color: var(--teal-700); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
    .header__call { display: none; }
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .steps, .faq-preview { grid-template-columns: 1fr; gap: 24px; }
    .steps__intro, .faq-preview__intro { max-width: 620px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
    :root { --section: 40px; }
    .topbar__hours { display: none; }
    .nav, .header__actions .btn { display: none; }
    .nav-toggle { display: grid; }
    .header__actions { margin-left: auto; }
    .header__inner { height: 62px; }
    .hero__inner { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding-top: 40px; padding-bottom: 32px; }
    .hero__content { max-width: 640px; }
    .quick-form { max-width: 560px; }
    .hero::before { background: linear-gradient(180deg, rgba(9, 18, 36, .8) 0%, rgba(9, 18, 36, .72) 55%, rgba(9, 18, 36, .9) 100%); }
    .facts__grid { grid-template-columns: 1fr 1fr; }
    .fact { padding: 16px 12px; }
    .fact:nth-child(odd) { padding-left: 0; border-left: 0; }
    .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .why { grid-template-columns: 1fr; gap: 28px; }
    .cta__inner { flex-direction: column; align-items: flex-start; }
    .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .policy-layout { grid-template-columns: 1fr; gap: 20px; }
    .policy-aside { position: static; }
    .policy-toc { display: none; }
    .policy-nav { grid-template-columns: repeat(3, auto); justify-content: start; overflow-x: auto; scrollbar-width: none; }
    .policy-nav .policy-nav__label { display: none; }
    .policy-nav a { white-space: nowrap; }
    .not-found__inner { grid-template-columns: 1fr; gap: 32px; }
    .not-found__tours { max-width: 560px; }
    .faq-layout { grid-template-columns: 1fr; gap: 20px; }
    .faq-aside { position: static; order: 2; grid-template-columns: 1fr 1fr; align-items: start; }
    .faq-nav { display: none; }
    .faq-aside .faq-help { grid-column: 1 / -1; }
    .faq-group { scroll-margin-top: 76px; }
    .faq-main { gap: 24px; }
    .about-intro { grid-template-columns: 1fr; gap: 32px; }
    .about-intro__media { max-width: 620px; }
    .services { grid-template-columns: 1fr 1fr; }
    .approach { grid-template-columns: 1fr; gap: 20px; }
    .team { grid-template-columns: 1fr 1fr; }
    .destinations { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-aside { grid-template-columns: 1fr 1fr; align-items: start; }
    .tour-bar { top: 62px; }
    .tour-bar__price { display: none; }
    .tour-layout { grid-template-columns: 1fr; gap: 32px; }
    .tour-aside { position: static; max-width: 620px; }
    .tour-block { scroll-margin-top: 124px; }
    .facts-table { grid-template-columns: 1fr 1fr; }
    .facts-table > div:nth-child(3) { border-left: 0; }
    .facts-table > div:nth-child(n+3) { border-top: 1px solid var(--line); }
    .mobile-enquire { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: flex; gap: 10px; padding: 10px var(--gutter); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px -12px rgba(12, 24, 48, .3); }
    .mobile-enquire .btn--primary { flex: 1; }
    .mobile-enquire .btn--ghost { width: 44px; padding: 0; }
    body:has(.mobile-enquire) { padding-bottom: 64px; }
    body:has(.mobile-enquire) .whatsapp { bottom: 78px; }
}

@media (max-width: 640px) {
    :root { --gutter: 16px; --section: 36px; }
    body { font-size: 15px; }
    .topbar__list--end { display: none; }
    .topbar__list { gap: 14px; font-size: 12.5px; }
    .topbar__label { display: none; }
    .brand__sub { display: none; }
    .hero__title { font-size: 26px; }
    .hero__text { font-size: 15px; }
    .hero__actions .btn { flex: 1 1 auto; }
    .quick-form { padding: 18px; }
    .field input, .field select, .field textarea { font-size: 16px; height: 44px; }
    .field-row { grid-template-columns: 1fr; }
    .section-title { font-size: 21px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 18px; }
    .facts__grid { grid-template-columns: 1fr 1fr; }
    .fact { flex-direction: column; align-items: flex-start; gap: 8px; }
    .fact__icon { width: 36px; height: 36px; }
    .card-grid { grid-template-columns: 1fr; gap: 16px; }
    .steps__list { grid-template-columns: 1fr; gap: 12px; }
    .why__list { grid-template-columns: 1fr; }
    .why__contact { position: static; margin-top: 12px; box-shadow: none; border: 1px solid var(--line); }
    .cta__actions { width: 100%; flex-direction: column; }
    .cta__actions .btn { width: 100%; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; padding-top: 36px; }
    .footer__bottom-inner { flex-direction: column; }
    .whatsapp { right: 14px; bottom: 14px; width: 48px; height: 48px; }
    .page-header .container { min-height: 190px; padding-top: 22px; padding-bottom: 24px; }
    .page-header::before { background: linear-gradient(90deg, rgba(9, 18, 36, .88) 0%, rgba(9, 18, 36, .65) 100%); }
    .page-header__title { font-size: 24px; }
    .page-header__text { font-size: 14.5px; }
    .section--compact { padding-top: 20px; }
    .toolbar { padding-bottom: 10px; }
    .chips { flex-wrap: nowrap; overflow-x: auto; margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter) 4px; scrollbar-width: none; }
    .chips::-webkit-scrollbar { display: none; }
    .chip { flex-shrink: 0; }
    .toolbar__search input, .toolbar__select { height: 44px; font-size: 16px; }
    .toolbar__select { max-width: 42%; }
    .results-bar { flex-direction: column-reverse; align-items: stretch; gap: 10px; margin: 12px 0 14px; }
    .results-bar__count { justify-content: space-between; }
    .toolbar__controls { width: 100%; }
    .toolbar__search { flex: 1; min-width: 0; }
    .toolbar__search input { width: 100%; }
    .card-grid--3 { grid-template-columns: 1fr; gap: 16px; }
    .custom-trip { padding: 20px 18px; }
    .policy-nav { margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter); border: 0; border-radius: 0; background: none; }
    .policy-nav a { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; }
    .policy-nav a svg { display: none; }
    .policy__section h2 { font-size: 17px; }
    .prose { font-size: 14.5px; }
    .policy__contact { flex-direction: column; align-items: flex-start; }
    .not-found { padding: 36px 0; }
    .not-found h1 { font-size: 24px; }
    .about-intro__media { padding: 0 0 28px 24px; }
    .about-intro__facts strong { font-size: 16px; }
    .about-intro__facts li { padding-right: 8px; }
    .about-intro__facts li + li { padding-left: 10px; }
    .services, .team { grid-template-columns: 1fr; gap: 10px; }
    .service { padding: 14px; gap: 12px; }
    .service__icon { width: 38px; height: 38px; }
    .about-intro__facts span { line-height: 1.4; display: block; }
    .approach__list { grid-template-columns: 1fr; }
    .approach__item:nth-child(2) { border-top: 1px solid var(--line); padding-top: 16px; }
    .destinations { gap: 10px; }
    .destination__text { left: 10px; right: 10px; bottom: 9px; }
    .destination__text strong { font-size: 14px; }
    .destination__text span { display: none; }
    .contact-form { padding: 18px 16px 16px; }
    .contact-aside { grid-template-columns: 1fr; }
    .map { height: 260px; }
    .modal { align-items: flex-end; padding: 0; }
    .modal__dialog { max-width: none; max-height: 92vh; border-radius: 14px 14px 0 0; transform: translateY(24px); }
    .modal__foot { border-radius: 0; }
    .tour-hero__inner { min-height: 300px; padding-top: 18px; padding-bottom: 22px; }
    .tour-hero__title { font-size: 25px; }
    .tour-hero__meta li { height: 30px; font-size: 12.5px; }
    .tour-bar__nav { overflow-x: auto; scrollbar-width: none; }
    .tour-bar__nav a { flex-shrink: 0; }
    .tour-summary { font-size: 15.5px; }
    .highlights__list { grid-template-columns: 1fr; }
    .route__list { grid-template-columns: 1fr 1fr; }
    .day__summary { flex-wrap: wrap; gap: 6px 10px; }
    .day__title { order: 3; flex-basis: 100%; }
    .day__chevron { margin-left: auto; }
    .day__body { padding: 0 14px 14px; }
    .field-row--3 { grid-template-columns: 1fr 1fr; }
    .field-row--3 .field:first-child { grid-column: 1 / -1; }
}
