/* =============================================================
   Dubrovnik Boat Excursion — site styles
   Lean, modern, mobile-first. Edit freely.
   ============================================================= */

:root {
  --c-deep:      #0a2540;   /* deep navy */
  --c-sea:       #0e6ba8;   /* sea blue */
  --c-sky:       #4ea7df;   /* matches the logo blue */
  --c-foam:      #eaf4fb;
  --c-sand:      #f8f5ef;
  --c-ink:       #16243a;
  --c-muted:     #5a6a83;
  --c-line:      #e3e9f1;
  --c-white:     #ffffff;
  --c-accent:    #f59e0b;   /* warm sunset accent */

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(10,37,64,.08);
  --shadow:    0 10px 30px rgba(10,37,64,.10);
  --shadow-lg: 0 20px 60px rgba(10,37,64,.18);

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Poppins', var(--font-body);

  --container: 1180px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-sea); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-deep); }
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--c-deep); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; }
.lead { font-size: 1.125rem; color: var(--c-muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-sea);
  font-weight: 600;
  margin-bottom: .75rem;
  position: relative;
  padding-bottom: 8px;
}
.eyebrow::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--c-sea); border-radius: 2px;
}
.center .eyebrow::after { left: 50%; transform: translateX(-50%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: .98rem;
  letter-spacing: .01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--c-sea), var(--c-deep));
  color: #fff;
  box-shadow: 0 6px 18px rgba(14,107,168,.25);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 10px 24px rgba(14,107,168,.35);
}
.btn-ghost { background: transparent; color: var(--c-deep); border-color: var(--c-deep); }
.btn-ghost:hover { background: var(--c-deep); color: #fff; }
.btn-light { background: #fff; color: var(--c-deep); }
.btn-light:hover { background: var(--c-foam); }
.btn-accent { background: var(--c-accent); color: #fff; }
.btn-accent:hover { background: #d97706; color: #fff; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe57; color: #fff; }
.btn-gyg { background: #FF5533; color: #fff; }
.btn-gyg:hover { background: #e6481f; color: #fff; }
.btn-viator { background: #00A680; color: #fff; }
.btn-viator:hover { background: #00876a; color: #fff; }

/* "Also bookable on" block in the booking sidebar */
.ota-box { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--c-line); }
.ota-label { font-size: .82rem; color: var(--c-muted); margin: 0 0 10px; text-align: center; }
.ota-box .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.ota-box .btn:last-child { margin-bottom: 0; }

/* ---------- Top contact bar ---------- */
.topbar {
  background: var(--c-deep);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 36px; gap: 12px; flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-link {
  color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: .4rem;
}
.topbar-link:hover { color: #fff; }
.topbar-link .ico { font-size: 1rem; line-height: 1; }
@media (max-width: 600px) {
  .topbar { font-size: .8rem; }
  .topbar .container { gap: 8px; min-height: 32px; }
  .topbar-left, .topbar-right { gap: 12px; }
  .hide-sm { display: none !important; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
}
.brand img { height: 56px; width: auto; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-family: var(--font-display); font-weight: 600; color: var(--c-deep);
  font-size: .98rem; padding: .35rem 0; position: relative;
}
.nav a:hover { color: var(--c-sea); }
.nav a.active::after,
.nav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--c-sea); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--c-deep); border-radius: 2px; margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav { display: none; }
  .site-header.is-open .nav {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    padding: 1rem 1.25rem 1.25rem; gap: .8rem;
    border-bottom: 1px solid var(--c-line); box-shadow: var(--shadow);
  }
  .nav-cta .btn { padding: .65rem 1.1rem; font-size: .9rem; }
  .brand img { height: 48px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(520px, 80vh, 760px);
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,37,64,.35) 0%, rgba(10,37,64,.55) 100%),
    var(--hero-img, url('../images/tours/img1.jpeg')) center/cover no-repeat;
  z-index: -1;
}
.hero-inner { padding-top: 96px; padding-bottom: 96px; max-width: 760px; }
@media (max-width: 600px) {
  .hero-inner { padding-top: 64px; padding-bottom: 64px; }
}
.hero h1 { color: #fff; }
.hero p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 580px; }
.hero .actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero .eyebrow { color: var(--c-sky); }

/* Hero scroll-down chevron */
.hero-scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 32px; height: 48px; border: 2px solid rgba(255,255,255,.7);
  border-radius: 999px; display: block;
  transition: border-color .2s ease, transform .2s ease;
}
.hero-scroll:hover { border-color: #fff; transform: translateX(-50%) translateY(2px); }
.hero-scroll span {
  position: absolute; left: 50%; top: 10px; width: 6px; height: 6px;
  background: #fff; border-radius: 50%; transform: translateX(-50%);
  animation: heroScroll 1.8s ease-in-out infinite;
}
@keyframes heroScroll {
  0%   { transform: translate(-50%, 0);   opacity: 0; }
  20%  { opacity: 1; }
  80%  { transform: translate(-50%, 22px); opacity: 0; }
  100% { transform: translate(-50%, 22px); opacity: 0; }
}
@media (max-width: 600px) { .hero-scroll { display: none; } }

/* Trust strip */
.trust-strip {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
}
.trust-strip .container {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap; text-align: center;
}
.trust-label {
  margin: 0; color: var(--c-muted); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.trust-logos {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
}
.trust-logos span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .9rem; color: var(--c-muted); letter-spacing: .02em;
}
.trust-logos span strong { color: var(--c-deep); font-family: var(--font-display); }
@media (max-width: 600px) { .trust-logos { gap: 16px; } .trust-logos span { font-size: .82rem; } }

/* Page header (smaller hero for inner pages) */
.page-hero {
  position: relative; color: #fff; padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 6vw, 80px);
  background: linear-gradient(180deg, rgba(10,37,64,.4), rgba(10,37,64,.6)),
              var(--hero-img, url('../images/tours/img4.jpeg')) center/cover no-repeat;
}
.page-hero h1 { color: #fff; margin-bottom: .25rem; }
.page-hero .crumbs { color: rgba(255,255,255,.85); font-size: .95rem; }
.page-hero .crumbs a { color: var(--c-sky); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.tour-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(10,37,64,.06);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.4,.2,.2,1), box-shadow .3s ease, border-color .25s ease;
  border: 1px solid var(--c-line);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(10,37,64,.18);
  border-color: transparent;
}
.tour-card:hover .badge { transform: scale(1.05); }
.tour-card .thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.tour-card .thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
}
.tour-card:hover .thumb img { transform: scale(1.05); }
.tour-card .badge {
  position: absolute; left: 14px; top: 14px;
  background: rgba(255,255,255,.95); color: var(--c-deep);
  padding: .35rem .8rem; border-radius: 999px; font-size: .78rem; font-weight: 600;
  font-family: var(--font-display);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(10,37,64,.15);
  transition: transform .25s ease;
}
.tour-card .body { padding: 22px; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.tour-card h3 { margin: 0; }
.tour-card .meta {
  display: flex; gap: 14px; flex-wrap: wrap; color: var(--c-muted); font-size: .9rem; margin: .25rem 0 .5rem;
}
.tour-card .meta span { display: inline-flex; align-items: center; gap: .35rem; }
.tour-card .price {
  margin-top: auto; padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--c-line);
}
.tour-card .price strong { color: var(--c-deep); font-size: 1.2rem; font-family: var(--font-display); }
.tour-card .price small { color: var(--c-muted); font-size: .82rem; }

/* ---------- Features / why us ---------- */
.feature {
  background: #fff; padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--c-line);
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.4,.2,.2,1), border-color .25s ease;
}
.feature:hover {
  box-shadow: 0 14px 32px rgba(10,37,64,.12);
  transform: translateY(-4px);
  border-color: transparent;
}
.feature .ico {
  transition: transform .25s ease;
}
.feature:hover .ico { transform: rotate(-5deg) scale(1.08); }
.feature .ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-sky), var(--c-sea));
  color: #fff; font-size: 22px; margin-bottom: 14px;
}
.feature h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.feature p { color: var(--c-muted); margin: 0; font-size: .95rem; }

/* ---------- Sections ---------- */
.bg-foam { background: var(--c-foam); }
.bg-deep { background: var(--c-deep); color: #fff; }
.bg-deep h2 { color: #fff; }
.bg-deep p  { color: rgba(255,255,255,.85); }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- CTA banner ---------- */
.cta {
  background:
    linear-gradient(120deg, rgba(10,37,64,.85), rgba(14,107,168,.6)),
    url('../images/tours/img4.jpeg') center/cover;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  color: #fff;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto 1.5rem; }

/* ---------- Tour detail ---------- */
.tour-meta-bar {
  display: flex; flex-wrap: wrap; gap: 24px 36px;
  justify-content: center;
  background: var(--c-foam);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 28px;
  text-align: center;
}
.tour-meta-bar > div { min-width: 120px; }
.tour-meta-bar small {
  display: block; color: var(--c-muted); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 4px;
}
.tour-meta-bar strong { color: var(--c-deep); font-family: var(--font-display); font-size: 1.05rem; }

.tour-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
@media (max-width: 980px) { .tour-layout { grid-template-columns: 1fr; } }

.book-box {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 20px);
}
.book-box .price-big { font-family: var(--font-display); color: var(--c-deep); font-size: 2rem; font-weight: 700; }
.book-box .price-big small { font-size: .9rem; color: var(--c-muted); font-weight: 500; }
.book-box .btn { width: 100%; justify-content: center; }
.book-box ul { list-style: none; padding: 0; margin: 1rem 0; font-size: .92rem; color: var(--c-muted); }
.book-box ul li { padding: .35rem 0; border-bottom: 1px dashed var(--c-line); display: flex; justify-content: space-between; }
.book-box ul li:last-child { border-bottom: 0; }

.tour-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.tour-gallery img:first-child { grid-row: span 2; aspect-ratio: 4/5; }
@media (max-width: 720px) { .tour-gallery { grid-template-columns: 1fr 1fr; } .tour-gallery img:first-child { grid-row: auto; aspect-ratio: 4/3; grid-column: span 2; } }

.itinerary { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.itinerary li {
  counter-increment: step;
  padding: 14px 0 14px 56px;
  position: relative;
  border-bottom: 1px solid var(--c-line);
}
.itinerary li:last-child { border-bottom: 0; }
.itinerary li::before {
  content: counter(step);
  position: absolute; left: 0; top: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-sea); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  display: grid; place-items: center;
}
.itinerary h4 { margin: 0 0 .15rem; font-size: 1.05rem; }
.itinerary p { margin: 0; color: var(--c-muted); }

.includes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; padding: 0; list-style: none; }
.includes li { padding: 6px 0 6px 28px; position: relative; color: var(--c-deep); }
.includes li::before {
  content: '✓'; position: absolute; left: 0; top: 6px; color: #16a34a; font-weight: 700;
}
.includes.cross li::before { content: '✕'; color: #dc2626; }
@media (max-width: 600px) { .includes { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.input, textarea, select {
  width: 100%; padding: .85rem 1.05rem; border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem;
  color: var(--c-ink); background: #fff;
  transition: border-color .18s ease, box-shadow .2s ease, background .18s ease;
}
.input:hover, textarea:hover, select:hover { border-color: #cdd6e3; }
.input:focus, textarea:focus, select:focus {
  outline: 0; border-color: var(--c-sea); background: #fafdff;
  box-shadow: 0 0 0 4px rgba(14,107,168,.15);
}
label { font-weight: 600; font-size: .9rem; color: var(--c-deep); display: block; margin-bottom: .4rem; }
textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-deep); color: rgba(255,255,255,.8); padding: 64px 0 24px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 880px) { .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 { padding: .25rem 0; }
.site-footer .brand-block img { height: 56px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.site-footer .socials { display: flex; gap: 10px; margin-top: 12px; }
.site-footer .socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: background .2s ease;
}
.site-footer .socials a:hover { background: var(--c-sea); }
.copy {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .88rem; color: rgba(255,255,255,.6);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Private tours CTA ---------- */
.private-cta {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: center;
  background: var(--c-foam);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.private-cta h2 { margin: .25rem 0 .5rem; }
.private-actions { display: flex; flex-direction: column; gap: 10px; }
.private-actions .btn { width: 100%; justify-content: center; }
@media (max-width: 820px) {
  .private-cta { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.faq-item {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  padding: 0 18px; transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 14px 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--c-deep);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-weight: 400; font-size: 1.4rem; color: var(--c-sea); line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 14px; color: var(--c-muted); line-height: 1.6; }

/* ---------- Reviews ---------- */
.stars-big {
  color: #f59e0b; letter-spacing: .1em; font-size: 1.25rem; margin-right: .35rem;
  display: inline-block; vertical-align: middle;
}
.review-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-head { display: flex; justify-content: space-between; align-items: center; }
.review-stars { color: #f59e0b; letter-spacing: .08em; font-size: 1.05rem; line-height: 1; }
.review-source {
  font-family: var(--font-display); font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--c-foam); color: var(--c-deep);
}
.review-source--google      { background: #fef3c7; color: #92400e; }
.review-source--tripadvisor { background: #ecfdf5; color: #065f46; }
.review-source--viator      { background: #eef2ff; color: #3730a3; }
.review-source--getyourguide{ background: #ffe4e6; color: #9f1239; }

.review-text {
  margin: 0; font-size: 1.02rem; line-height: 1.6; color: var(--c-ink);
  font-style: italic;
}
.review-foot {
  margin-top: auto; padding-top: 8px; border-top: 1px solid var(--c-line);
  font-size: .9rem; display: flex; flex-wrap: wrap; gap: 6px; align-items: baseline;
}
.review-foot strong { color: var(--c-deep); font-family: var(--font-display); }
.review-date { margin-left: auto; font-size: .8rem; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  background: rgba(10, 37, 64, .97);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(10,37,64,.35);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  border: 1px solid rgba(255,255,255,.06);
  animation: cookie-in .35s ease-out;
}
@keyframes cookie-in { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-banner[hidden] { display: none !important; }
.cookie-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 20px; flex-wrap: wrap;
}
.cookie-text { flex: 1 1 280px; min-width: 240px; }
.cookie-text strong { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.cookie-text p { margin: 0; font-size: .9rem; line-height: 1.55; color: rgba(255,255,255,.85); }
.cookie-text a { color: var(--c-sky); }
.cookie-text a:hover { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-banner .btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.cookie-banner .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cookie-banner .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
@media (max-width: 600px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- Checkbox ---------- */
.check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--c-muted); line-height: 1.5; cursor: pointer;
  user-select: none;
}
.check input[type=checkbox] {
  width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--c-sea);
  cursor: pointer; flex-shrink: 0;
}
.check a { color: var(--c-sea); }
.check a:hover { color: var(--c-deep); text-decoration: underline; }

/* ---------- Alerts ---------- */
.alert {
  padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 24px;
  font-weight: 500; border: 1px solid transparent;
}
.alert-ok    { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.alert-info  { background: var(--c-foam); color: var(--c-deep); border-color: var(--c-line); }

/* ---------- Utility ---------- */
.text-muted { color: var(--c-muted); }
.divider { height: 1px; background: var(--c-line); margin: 32px 0; border: 0; }
.tag { display: inline-block; background: var(--c-foam); color: var(--c-sea); padding: .25rem .65rem; border-radius: 999px; font-size: .78rem; font-weight: 600; }


/* =============================================================
   MODERN RESTYLE LAYER — purely visual refinements on top of the
   existing system. No structural changes; just polish.
   ============================================================= */

/* ---- Typography: more confident hierarchy ---- */
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -.025em;
  font-weight: 800;
  line-height: 1.05;
}
h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -.02em;
  font-weight: 700;
  line-height: 1.15;
}
h3 { letter-spacing: -.01em; }
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

/* ---- Hero: more cinematic ---- */
.hero {
  min-height: clamp(560px, 86vh, 820px);
}
.hero::before {
  background:
    linear-gradient(180deg, rgba(10,37,64,.25) 0%, rgba(10,37,64,.45) 55%, rgba(10,37,64,.7) 100%),
    var(--hero-img, url('../images/tours/img1.jpeg')) center/cover no-repeat;
}
.hero h1 {
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.hero p {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  text-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.hero .actions .btn {
  padding: 1rem 1.75rem;
  font-size: 1.02rem;
}

/* ---- Page-hero (inner pages) — bolder ---- */
.page-hero {
  background-blend-mode: multiply;
  padding-top: clamp(96px, 12vw, 180px) !important;
  padding-bottom: clamp(72px, 8vw, 110px) !important;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.page-hero .crumbs { font-weight: 500; }

/* ---- Sections: more breathing room ---- */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-tight { padding: clamp(48px, 7vw, 88px) 0; }

/* ---- Tour cards: more confident price + image ---- */
.tour-card .thumb { aspect-ratio: 4/3; }
.tour-card .thumb img { transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.tour-card:hover .thumb img { transform: scale(1.08); }
.tour-card .body { padding: 26px; gap: .65rem; }
.tour-card h3 {
  font-size: 1.35rem; font-weight: 700; letter-spacing: -.01em;
}
.tour-card .price strong {
  font-size: 1.45rem; letter-spacing: -.01em;
}
.tour-card .badge {
  font-size: .72rem; padding: .4rem .85rem;
  letter-spacing: .03em;
  background: rgba(255,255,255,.96);
}

/* ---- Tour meta bar: more refined ---- */
.tour-meta-bar {
  background: linear-gradient(180deg, var(--c-foam), #ffffff);
  border: 1px solid var(--c-line);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
}
.tour-meta-bar small { font-size: .72rem; }
.tour-meta-bar strong { font-size: 1.1rem; font-weight: 700; }

/* ---- Feature cards: more sophisticated ---- */
.feature {
  padding: 32px;
  border: 1px solid var(--c-line);
  background: linear-gradient(180deg, #fff, #fafdff);
}
.feature .ico {
  width: 56px; height: 56px; border-radius: 16px;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(14,107,168,.25);
}
.feature h3 { font-size: 1.2rem; font-weight: 700; }

/* ---- Tour gallery: prettier ---- */
.tour-gallery {
  border-radius: var(--radius-lg);
  gap: 10px;
  box-shadow: 0 10px 30px rgba(10,37,64,.1);
}
.tour-gallery img { transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.tour-gallery:hover img { transform: scale(1.03); }

/* ---- Itinerary: nicer steps ---- */
.itinerary li {
  padding: 18px 0 18px 64px;
}
.itinerary li::before {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--c-sea), var(--c-deep));
  box-shadow: 0 6px 16px rgba(14,107,168,.3);
  top: 18px;
}
.itinerary h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.005em; }

/* ---- Reviews: more refined ---- */
.review-card { padding: 30px; }
.review-text { font-size: 1.05rem; line-height: 1.65; }

/* ---- Split sections: bigger image ---- */
.split img { border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(10,37,64,.18); }

/* ---- CTA blocks: richer gradient ---- */
.cta {
  background:
    linear-gradient(120deg, rgba(10,37,64,.92), rgba(14,107,168,.65)),
    url('../images/tours/img4.jpeg') center/cover;
  padding: clamp(48px, 6vw, 80px);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(10,37,64,.25);
}
.cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

/* ---- Booking sidebar: more polished ---- */
.book-box {
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(10,37,64,.10);
  border: 1px solid var(--c-line);
}
.book-box .price-big {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--c-sea), var(--c-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.book-box .price-big small {
  -webkit-text-fill-color: var(--c-muted);
  color: var(--c-muted);
  font-weight: 500;
}

/* ---- Forms: modern look ---- */
label { font-weight: 600; font-size: .88rem; letter-spacing: .01em; margin-bottom: .5rem; }
.input, textarea, select { font-size: 1rem; }

/* ---- Buttons: slightly more refined ---- */
.btn {
  padding: .95rem 1.65rem;
  font-size: 1rem;
  letter-spacing: .005em;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
}
.btn-ghost {
  background: transparent; color: var(--c-deep);
  border: 2px solid var(--c-deep);
}
.btn-ghost:hover {
  background: var(--c-deep); color: #fff;
  box-shadow: 0 8px 22px rgba(10,37,64,.25);
}

/* ---- Site footer: cleaner + nice social icons ---- */
.site-footer { padding-top: 80px; }
.site-footer .brand-block img { height: 68px; }
.site-footer .socials { gap: 12px; }
.site-footer .socials a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  transition: background .2s ease, transform .15s ease;
}
.site-footer .socials a:hover {
  background: var(--c-sea);
  transform: translateY(-2px);
}
.site-footer .socials a svg { display: block; }
.site-footer h4 {
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.95);
}
.site-footer ul li { padding: .35rem 0; font-size: .96rem; }

/* ---- Section eyebrow: kept (already nice) ---- */

/* ---- Reveal animation: smoother + slight stagger ---- */
.reveal { transition: opacity .8s ease, transform .8s cubic-bezier(.2,.6,.2,1); }
.grid .reveal:nth-child(2) { transition-delay: .08s; }
.grid .reveal:nth-child(3) { transition-delay: .16s; }
.grid .reveal:nth-child(4) { transition-delay: .24s; }
.grid .reveal:nth-child(5) { transition-delay: .32s; }
.grid .reveal:nth-child(6) { transition-delay: .40s; }

/* ---- Mobile refinements ---- */
@media (max-width: 600px) {
  .hero { min-height: 540px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .section { padding: 64px 0; }
  .tour-card .body { padding: 22px; }
  .book-box { padding: 22px; }
  .book-box .price-big { font-size: 2rem; }
}
