/* Delight Lanka Travels & Tours — main stylesheet */
/* Self-hosted fonts (SIL Open Font License) - no data sent to third parties */
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/fraunces-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/fraunces-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/inter-latin-700-normal.woff2") format("woff2"); }

:root {
  --teal-900: #0b3b36;
  --teal-700: #0f5a51;
  --teal-500: #1b7d70;
  --teal-100: #e3f1ee;
  --gold: #e3a322;
  --gold-dark: #b97f0c;
  --cream: #faf6ef;
  --sand: #f2eadb;
  --ink: #1d2624;
  --muted: #5b6765;
  --line: #e2dccf;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 59, 54, 0.10);
  --max: 1180px;
  --head: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-700); }
h1, h2, h3, h4 { font-family: var(--head); line-height: 1.15; margin: 0 0 .5em; color: var(--teal-900); font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.container { width: min(var(--max), 100% - 32px); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--sand { background: var(--sand); }
.section--teal { background: var(--teal-900); color: #dfeeea; }
.section--teal h2, .section--teal h3 { color: #fff; }
.eyebrow { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold-dark); margin-bottom: .6rem; display: block; }
.section--teal .eyebrow { color: var(--gold); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 680px; }
.section--teal .lead { color: #bcd6d0; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5em; justify-content: center;
  padding: .85em 1.5em; border-radius: 999px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  font-family: var(--body);
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #231a05; box-shadow: 0 6px 18px rgba(227,163,34,.35); }
.btn--gold:hover { background: #f0b53c; }
.btn--ghost { border-color: rgba(255,255,255,.75); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--teal { background: var(--teal-700); color: #fff; }
.btn--teal:hover { background: var(--teal-500); }
.btn--outline { border-color: var(--teal-700); color: var(--teal-700); }
.btn--wa { background: #25d366; color: #06301a; }
.btn svg { width: 1.2em; height: 1.2em; fill: currentColor; }

/* Top bar + header */
.topbar { background: var(--teal-900); color: #cfe3de; font-size: .85rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,246,239,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 48px; width: auto; }
.brand-text { font-family: var(--head); font-weight: 600; color: var(--teal-900); font-size: 1.2rem; line-height: 1.05; }
.brand-text small { display: block; font-family: var(--body); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; align-items: center; }
.nav a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--ink); text-decoration: none; font-weight: 500; font-size: .96rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--teal-700); background: var(--teal-100); }
.nav .btn { padding: .6em 1.2em; margin-left: 8px; }
.nav .btn:hover { background: #f0b53c; color: #231a05; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--teal-900); margin: 6px 0; transition: .2s; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 72px 0 auto 0; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; padding: 12px 16px 20px; }
  .nav a { padding: 12px; }
  .nav .btn { margin: 8px 0 0; }
  .topbar .hide-sm { display: none; }
}

/* Hero */
.hero { position: relative; min-height: min(88vh, 760px); display: grid; align-items: center; color: #fff; overflow: hidden; background: var(--teal-900); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,40,36,.88) 0%, rgba(8,40,36,.55) 50%, rgba(8,40,36,.15) 100%); }
.hero .container { position: relative; z-index: 1; padding: 80px 0; }
.hero h1 { color: #fff; max-width: 760px; }
.hero p { font-size: 1.2rem; max-width: 600px; color: #e4efec; }
.hero .greeting { font-family: var(--head); font-style: italic; color: var(--gold); font-size: 1.25rem; margin-bottom: .5rem; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 32px; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; padding: 0; margin: 0; font-size: .95rem; color: #d7e7e3; }
.hero__ticks li::before { content: "✓"; color: var(--gold); font-weight: 700; margin-right: 8px; }

.page-hero { position: relative; padding: 110px 0 70px; color: #fff; background: var(--teal-900); overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #e0ece9; max-width: 640px; font-size: 1.15rem; margin: 0; }

/* Cards & grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.feature { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.feature__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; margin-bottom: 16px; }
.feature__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature p { color: var(--muted); margin: 0; }

.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.card__img { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--teal-500), var(--teal-900)); overflow: hidden; position: relative; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.05); }
.card__tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #231a05; font-weight: 700; font-size: .78rem; padding: 4px 12px; border-radius: 999px; }
.card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body p { color: var(--muted); }
.card__meta { font-size: .88rem; color: var(--teal-700); font-weight: 600; margin-bottom: .4rem; }
.card__foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.price { font-size: .9rem; color: var(--muted); }
.price strong { display: block; font-size: 1.05rem; color: var(--ink); }
.link-arrow { font-weight: 600; text-decoration: none; }
.link-arrow::after { content: " →"; }

/* Destination tiles */
.dest { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; background: linear-gradient(135deg, var(--teal-500), var(--teal-900)); color: #fff; display: block; text-decoration: none; }
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dest:hover img { transform: scale(1.06); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0) 55%); }
.dest__txt { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; }
.dest__txt h3 { color: #fff; margin: 0; font-size: 1.3rem; }
.dest__txt span { font-size: .88rem; color: #e6efed; }
.grid-dest { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }

/* Split */
.split { display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: 1fr 1fr; align-items: center; }
.split__img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--teal-500), var(--teal-900)); box-shadow: var(--shadow); }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split__img { aspect-ratio: 16/11; } }
.ticklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.ticklist li { padding-left: 30px; position: relative; margin-bottom: .55em; }
.ticklist li::before { content: ""; position: absolute; left: 0; top: .45em; width: 18px; height: 18px; border-radius: 50%; background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f5a51' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat; }
.crosslist li::before { background: #f8e4e0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a4382a' stroke-width='3.5' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E") center / 10px no-repeat; }

/* Reviews */
.review { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 10px; }
.review blockquote { margin: 0 0 18px; font-size: 1.02rem; }
.review footer { margin-top: auto; font-size: .9rem; color: var(--muted); }
.review footer strong { color: var(--ink); }
.review .note { font-size: .8rem; font-style: italic; }
.section--teal .review { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #e6f0ee; }
.section--teal .review footer { color: #a9c7c1; }
.section--teal .review footer strong { color: #fff; }

/* Seasons */
.seasons { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.season { background: var(--white); border-radius: var(--radius); padding: 24px; border-top: 5px solid var(--gold); }
.season h3 { font-size: 1.15rem; }
.season .months { font-weight: 700; color: var(--teal-700); font-size: .92rem; }
.season p { margin: .4em 0 0; color: var(--muted); font-size: .96rem; }

/* Itinerary */
.tour-block { background: var(--white); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; margin-bottom: 40px; }
.tour-block__head { display: grid; grid-template-columns: 1.1fr 1fr; }
.tour-block__img { min-height: 300px; background: linear-gradient(135deg, var(--teal-500), var(--teal-900)); }
.tour-block__img img { width: 100%; height: 100%; object-fit: cover; }
.tour-block__intro { padding: 36px; }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 18px; padding: 0; list-style: none; }
.facts li { background: var(--teal-100); color: var(--teal-900); padding: 5px 14px; border-radius: 999px; font-size: .88rem; font-weight: 600; }
@media (max-width: 860px) { .tour-block__head { grid-template-columns: 1fr; } .tour-block__img { min-height: 220px; } .tour-block__intro { padding: 26px 22px; } }
details.itin { border-top: 1px solid var(--line); }
details.itin summary { cursor: pointer; padding: 18px 36px; font-weight: 600; color: var(--teal-700); list-style: none; }
details.itin summary::-webkit-details-marker { display: none; }
details.itin summary::after { content: " +"; }
details.itin[open] summary::after { content: " −"; }
.days { list-style: none; margin: 0; padding: 0 36px 30px; }
.days li { display: grid; grid-template-columns: 84px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.days li:last-child { border-bottom: 0; }
.days .d { font-weight: 700; color: var(--gold-dark); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.days h4 { font-family: var(--body); font-size: 1.02rem; margin: 0 0 .2em; color: var(--ink); }
.days p { margin: 0; color: var(--muted); font-size: .96rem; }
.days .stay { display: inline-block; margin-top: 4px; font-size: .82rem; color: var(--teal-700); font-weight: 600; }
@media (max-width: 600px) { details.itin summary { padding: 16px 22px; } .days { padding: 0 22px 24px; } .days li { grid-template-columns: 1fr; gap: 2px; } }

/* Gallery */
.gallery { columns: 3 260px; column-gap: 16px; }
.gallery a { display: block; margin-bottom: 16px; border-radius: 12px; overflow: hidden; background: var(--sand); break-inside: avoid; min-height: 120px; }
.gallery img { width: 100%; height: auto; transition: transform .4s; }
.gallery a:hover img { transform: scale(1.04); }
.lightbox { position: fixed; inset: 0; background: rgba(5,20,18,.93); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 94vw; border-radius: 8px; }
.lightbox button { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.lightbox .lb-close { top: 18px; right: 18px; }
.lightbox .lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* Forms */
.form-card { background: var(--white); border-radius: 20px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); color: var(--ink); }
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
input, select, textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 1rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; background: #fffdf9;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(27,125,112,.15); }
textarea { min-height: 120px; resize: vertical; }
.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.checks label { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; background: var(--cream); border: 1.5px solid var(--line); padding: 7px 12px; border-radius: 999px; cursor: pointer; margin: 0; }
.checks input { width: auto; margin: 0; accent-color: var(--teal-700); }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 12px; }
.form-error { color: #a4382a; font-weight: 600; font-size: .9rem; display: none; }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 14px; margin-bottom: 18px; }
.contact-list .ic { flex: 0 0 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; }
.contact-list svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-list a { color: #fff; }
.contact-list small { display: block; color: #a9c7c1; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--teal-700), var(--teal-900)); color: #fff; border-radius: 24px; padding: clamp(32px, 5vw, 56px); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin: 0 0 .3em; }
.cta-band p { margin: 0; color: #cfe3de; }

/* Footer */
.site-footer { background: #072a26; color: #a9c7c1; padding: 64px 0 28px; font-size: .95rem; }
.site-footer h4 { font-family: var(--body); color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 14px; }
.site-footer a { color: #d9ebe7; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; }
.ta-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; background: rgba(255,255,255,.08); padding: 8px 14px; border-radius: 999px; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

.notice { background: #fff7e3; border: 1px solid #f1d58f; border-radius: 12px; padding: 14px 18px; font-size: .95rem; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* fixes */
.form-card h3 { color: var(--teal-900); }
.brand img { width: 125px; height: 48px; object-fit: cover; object-position: center; }
.site-footer .brand img { width: 104px; height: 40px; background: #fff; border-radius: 8px; object-fit: cover; }
@media (max-width: 400px) { .brand img { width: 104px; height: 40px; } .brand-text { font-size: 1.05rem; } }
.dest__txt span { display: block; line-height: 1.4; margin-top: 4px; }

/* Tripadvisor */
.hero__ticks a { color: inherit; text-decoration: underline; text-decoration-color: rgba(227,163,34,.7); text-underline-offset: 3px; }
.ta-grid { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: 28px; align-items: start; }
@media (max-width: 860px) { .ta-grid { grid-template-columns: 1fr; } }
.ta-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.05rem; }
.ta-owl { width: 30px; height: 30px; fill: currentColor; color: #34e0a1; }
.ta-summary { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 30px; color: #e6f0ee; }
.ta-summary .ta-brand { color: #fff; }
.ta-score { font-family: var(--head); font-size: 4rem; line-height: 1; color: #fff; margin: 18px 0 6px; }
.ta-score span { font-size: 1.3rem; color: #a9c7c1; margin-left: 6px; }
.ta-bubbles { color: #34e0a1; letter-spacing: 4px; font-size: 1.4rem; margin-bottom: 12px; }
.ta-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.btn--ta { background: #34e0a1; color: #00291a; }
.btn--ta:hover { background: #5ce9b6; }
.section--sand .ta-summary { background: var(--teal-900); }
.ta-widget { background: #fff; border-radius: 20px; padding: 22px; min-height: 220px; color: var(--ink); box-shadow: var(--shadow); overflow: hidden; }
.ta-widget .TA_selfserveprop, .ta-widget iframe { max-width: 100% !important; }
.ta-widget [id^="CDSWIDSSP"] { width: 100% !important; }
.ta-fallback { display: flex; flex-direction: column; gap: 10px; justify-content: center; min-height: 176px; padding: 10px; }
.ta-fallback .ta-owl { color: #00aa6c; }
.ta-fallback p { margin: 0; color: var(--muted); }

/* ===== UK site additions ===== */
/* Dropdown nav */
.has-sub { position: relative; }
.caret { font-size: .7em; margin-left: 2px; }
.sub { position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 8px !important; display: none !important; flex-direction: column !important; align-items: stretch !important; gap: 0 !important; }
.has-sub:hover .sub, .has-sub:focus-within .sub { display: flex !important; }
.sub a { padding: 9px 12px; font-size: .94rem; }
.sub-all a { font-weight: 700; color: var(--teal-700); border-top: 1px solid var(--line); margin-top: 4px; }
@media (max-width: 1100px) { .nav a { padding: 8px 9px; font-size: .92rem; } }
@media (max-width: 960px) {
  .nav { max-height: calc(100vh - 72px); overflow-y: auto; }
  .sub { position: static; display: flex !important; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 0 0 6px 14px; padding: 0 0 0 6px !important; min-width: 0; }
  .sub a { padding: 7px 10px; }
  .caret { display: none; }
}

/* Tour style cards */
.style-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.style-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .style-grid, .style-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .style-grid, .style-grid--4 { grid-template-columns: 1fr; } }
.style-card { position: relative; display: block; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; background: linear-gradient(135deg, var(--teal-500), var(--teal-900)); color: #fff; text-decoration: none; box-shadow: var(--shadow); }
@media (max-width: 520px) { .style-card { aspect-ratio: 16 / 11; } }
.style-card__img { position: absolute; inset: 0; }
.style-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.style-card:hover .style-card__img img { transform: scale(1.06); }
.style-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,30,27,.9) 0%, rgba(5,30,27,.25) 55%, rgba(5,30,27,0) 100%); }
.style-card__body { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 1; }
.style-card__body h3 { color: #fff; font-size: 1.35rem; margin-bottom: .2em; }
.style-card__body p { color: #dcebe7; font-size: .92rem; line-height: 1.4; margin: 0 0 10px; }
.style-card__price { display: inline-block; background: var(--gold); color: #231a05; border-radius: 999px; padding: 4px 12px; font-size: .85rem; }

/* Price tag */
.price-tag { display: inline-flex; flex-direction: column; background: var(--teal-100); border-radius: 14px; padding: 12px 20px; margin: 6px 0 10px; }
.price-tag .from { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-700); font-weight: 700; }
.price-tag strong { font-family: var(--head); font-size: 2.3rem; line-height: 1.1; color: var(--teal-900); }
.price-tag .pp { font-size: .88rem; color: var(--muted); }
.price-child { font-size: .85rem; color: var(--teal-700); font-weight: 600; margin-top: 4px; }
.small-print { font-size: .82rem; color: var(--muted); }
.page-hero--tall { padding: 130px 0 90px; }
.page-hero .hero__ctas { margin: 24px 0 0; }

/* Tables */
.table-wrap { overflow-x: auto; background: #fff; border-radius: 16px; box-shadow: var(--shadow); }
.price-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.price-table th, .price-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { background: var(--teal-900); color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table .muted { color: var(--muted); font-size: .88rem; }

/* Attractions */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; position: sticky; top: 72px; z-index: 5; background: var(--cream); padding: 12px 0; }
.chip { border: 1.5px solid var(--line); background: #fff; color: var(--ink); padding: 8px 16px; border-radius: 999px; font: inherit; font-size: .92rem; font-weight: 600; cursor: pointer; }
.chip.active, .chip:hover { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
.att-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
@media (max-width: 400px) { .att-grid { grid-template-columns: 1fr; } }
.att-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; scroll-margin-top: 150px; }
.att-card.hidden { display: none; }
.att-card__img { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--teal-500), var(--teal-900)); }
.att-card__img img { width: 100%; height: 100%; object-fit: cover; }
.att-card__ph { position: absolute; inset: 0; display: grid; place-items: center; padding: 20px; text-align: center; font-family: var(--head); font-size: 1.5rem; color: rgba(255,255,255,.9); }
.att-card__region { position: absolute; left: 14px; top: 14px; background: rgba(255,255,255,.92); color: var(--teal-900); font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.att-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.att-card__body h2 { font-size: 1.4rem; }
.att-card__body p { color: #3c4846; font-size: .98rem; }
.att-tours { font-size: .88rem; color: var(--muted) !important; margin-top: auto; }
.att-mini-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.att-mini { position: relative; display: block; aspect-ratio: 1; border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, var(--teal-500), var(--teal-900)); text-decoration: none; }
.att-mini img { width: 100%; height: 100%; object-fit: cover; }
.att-mini::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%); }
.att-mini span { position: absolute; left: 12px; right: 12px; bottom: 10px; z-index: 1; color: #fff; font-weight: 600; font-size: .95rem; line-height: 1.25; }

/* About stats, info, FAQ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat strong { display: block; font-family: var(--head); font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gold); line-height: 1.1; }
.stat span { color: #cfe3de; font-size: .95rem; }
.info-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.info-ico { font-size: 1.8rem; margin-bottom: 8px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 600; list-style: none; position: relative; padding-right: 48px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 14px; font-size: 1.4rem; color: var(--teal-700); }
.faq[open] summary::after { content: "−"; }
.faq p { padding: 0 22px 18px; margin: 0; color: var(--muted); }
.att-card__img img, .card__img img { position: absolute; inset: 0; }
.card__img { position: relative; }

/* ===== v3 additions ===== */
.topbar-right { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cur-label { display: inline-flex; align-items: center; gap: 6px; color: #cfe3de; }
.cur-label select { width: auto; padding: 2px 6px; font-size: .82rem; border-radius: 6px; border: 1px solid rgba(255,255,255,.3); background: #0f4a43; color: #fff; }
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); }
.trust-bar ul { list-style: none; margin: 0; padding: 18px 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; text-align: center; }
.trust-bar li strong { display: block; font-family: var(--head); color: var(--teal-900); font-size: 1.15rem; }
.trust-bar li span { font-size: .84rem; color: var(--muted); }
@media (max-width: 860px) { .trust-bar ul { grid-template-columns: repeat(2, 1fr); } .trust-bar li:last-child { grid-column: 1 / -1; } }
.style-card--tailor { background: linear-gradient(135deg, var(--gold-dark), var(--teal-900)); }
.style-card--tailor::after { background: none; }
.price-sub { display: block; font-size: .85rem; color: var(--teal-700); margin-top: 6px; }
.fees-note { font-size: .88rem; color: var(--muted); background: #fff7e3; border-radius: 10px; padding: 10px 12px; }
.market { text-decoration: none; color: inherit; display: block; transition: transform .2s; }
.market:hover { transform: translateY(-3px); }
.market__flag { font-size: 2rem; margin-bottom: 6px; }
.market p { color: var(--muted); }
.steps { list-style: none; padding: 0; margin: 0 auto; max-width: 860px; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; margin-bottom: 14px; }
.step-n { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: #231a05; display: grid; place-items: center; font-weight: 700; font-size: 1.2rem; }
.steps h3 { margin-bottom: .2em; font-size: 1.2rem; }
.steps p { margin: 0; color: var(--muted); }
.page-hero--small { padding: 70px 0 40px; }
.legal { max-width: 860px; }
.legal h2 { font-size: 1.45rem; margin-top: 2em; }
.legal ul.ticklist li { margin-bottom: .7em; }
.credits { columns: 2 280px; padding-left: 18px; font-size: .92rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 34px; font-size: .88rem; }
.linklike { background: none; border: 0; color: #d9ebe7; font: inherit; cursor: pointer; padding: 0; }
.linklike:hover { color: var(--gold); }
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150; max-width: 760px; margin: 0 auto; background: #fff; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.25); padding: 16px 20px; display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.consent[hidden] { display: none; }
.consent p { margin: 0; font-size: .92rem; flex: 1 1 320px; }
.consent div { display: flex; gap: 10px; }
.consent .btn { padding: .6em 1.2em; }
.consent-check { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.consent-check input { width: auto; margin-top: 4px; accent-color: var(--teal-700); }
.section--teal .review h3 { color: var(--gold); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid-5 .feature { padding: 22px 20px; } .grid-5 .feature p { font-size: .95rem; }

/* v4 fixes: keep menu on one line; use the mobile menu below 1140px */
.nav a { white-space: nowrap; }
@media (max-width: 1140px) {
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 72px 0 auto 0; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; padding: 12px 16px 20px; }
  .nav a { padding: 12px; font-size: .96rem; }
  .nav .btn { margin: 8px 0 0; }
  .sub { position: static; display: flex !important; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 0 0 6px 14px; padding: 0 0 0 6px !important; min-width: 0; }
  .caret { display: none; }
}
/* Keep the WhatsApp button clear of the host's "Powered by" badge */
.wa-float { bottom: 76px; }
