/* ═══════════════════════════════════════════════════════════
   SUKČIAVA — style.css
   Clean white & minimal. Playfair Display + DM Sans.
═══════════════════════════════════════════════════════════ */

:root {
  --blue:    #1a3eff;
  --black:   #0d0d0d;
  --dark:    #1a1a1a;
  --gray:    #6b7280;
  --light:   #f0f3ff;
  --white:   #ffffff;
  --border:  #e5e5e5;
  --radius:  12px;
  --nav-h:   76px;
  --trans:   0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { line-height: 1.7; color: var(--gray); }
a  { text-decoration: none; color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── FADE-UP ANIMATIONS (pure CSS, no JS needed) ─────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tagline { animation: fadeUp 0.6s ease both; }
.hero-title   { animation: fadeUp 0.6s ease 0.1s both; }
.hero-sub     { animation: fadeUp 0.6s ease 0.22s both; }
.hero-btns    { animation: fadeUp 0.6s ease 0.34s both; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover { background: #0028d4; border-color: #0028d4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,62,255,0.28); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.btn-ghost:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

/* ── SECTION LABEL ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 520px; margin: 0 auto; }

/* ═══════════════ NAV ═══════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled { border-color: var(--border); box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

/* ── NAV ROAD SVG ───────────────────────────────────────── */
#nav-road {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}




/* Push logo and links above the road layer */



/* ── NAV LOGO IMAGE ─────────────────────────────────────── */
.nav-logo-img-wrap {
  width: 52px;
  height: 52px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  /* multiply blend makes black background invisible on white nav */
  mix-blend-mode: multiply;
  /* smooth 3x vertical flip on hover */
  animation-fill-mode: both;
  transition: none;
}

@keyframes flipHorizontal3x {
  0%          { transform: scaleX(1); }
  16.66%      { transform: scaleX(-1); }
  33.33%      { transform: scaleX(1); }
  50%         { transform: scaleX(-1); }
  66.66%      { transform: scaleX(1); }
  83.33%      { transform: scaleX(-1); }
  100%        { transform: scaleX(1); }
}

.nav-logo:hover .nav-logo-img {
  animation: flipHorizontal3x 0.9s ease forwards;
}

/* Logo staircase */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}
.logo-stack .ls1 { font-size: 1.05rem; color: var(--black); align-self: flex-start; }
.logo-stack .ls2 { font-size: 1.05rem; color: var(--blue);  align-self: center; margin-top: -2px; }
.logo-stack .ls3 { font-size: 1.05rem; color: var(--black); align-self: flex-end; margin-top: -2px; }
.logo-stack.small .ls1,
.logo-stack.small .ls2,
.logo-stack.small .ls3 { font-size: 0.85rem; }

.logo-compass svg { width: 42px; height: 42px; transition: transform 0.8s ease; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15)); }
.nav-logo:hover .logo-compass svg { transform: rotate(90deg); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #0028d4 !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: transform 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 20px 40px;
  gap: 18px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--dark); }

/* ═══════════════ HERO ══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Subtle road graphic in corner */
.hero-road {
  position: absolute;
  right: -60px; bottom: -60px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, #e8ecff 0%, transparent 65%);
  opacity: 0.6;
}


/* ── HERO IMAGE ─────────────────────────────────────────── */
/* Place your photo at images/hero.jpg — if missing, white bg shows */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Gradient overlay so text stays readable over any photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 40px 80px 80px;
}
.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d0d0d;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-title { margin-bottom: 24px; color: #0d0d0d; }
.hero-title em { font-style: italic; color: var(--blue); }
.hero-sub { font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; color: #1a1a1a; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbbbbb;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--gray);
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--blue);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0%{left:-100%} 100%{left:100%} }

/* ═══════════════ SERVICES ═══════════════════════════════ */
.services { padding: 100px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.services-grid.five { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) { .services-grid.five { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow var(--trans), transform var(--trans);
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p  { font-size: 0.9rem; }

/* ── LEAFLET MAP ─────────────────────────────────────────── */
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  position: relative;
}

#leafletMap {
  width: 100%;
  height: 520px;
  z-index: 1;
  margin-bottom: 0;
}

.map-toggle-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.map-toggle-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.map-toggle-btn:hover { border-color: var(--blue); color: var(--blue); }
.map-toggle-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
  border: 1px solid #e5e5e5;
  font-family: 'DM Sans', sans-serif !important;
}
.leaflet-popup-content { margin: 16px 18px !important; }
.leaflet-popup-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0d0d0d;
  margin: 0 0 6px 0;
}
.leaflet-popup-content p {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0 0 10px 0;
  line-height: 1.5;
}
.leaflet-popup-content a {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}
.leaflet-popup-tip-container { display: none; }

.destinations { padding: 100px 0 160px; background: var(--white); }

/* ═══════════════ STATS ══════════════════════════════════ */
.stats { padding: 80px 0; background: var(--black); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

/* ═══════════════ ABOUT ══════════════════════════════════ */
.about { padding: 100px 0; background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; }
.about-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { font-size: 0.9rem; font-weight: 500; color: var(--dark); }

.about-visual { display: flex; flex-direction: column; gap: 20px; }
.about-card-big {
  background: var(--blue);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
}
.about-compass-wrap { flex-shrink: 0; }
.big-compass {
  width: 100px; height: 100px;
  animation: compassSpin 20s linear infinite;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}
@keyframes compassSpin { to { transform: rotate(360deg); } }
.about-card-text { font-family: 'Playfair Display', serif; }
.about-card-text strong { display: block; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-card-text { font-size: 1rem; }

.about-card-small {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-card-small span { font-size: 1.8rem; }
.about-card-small p { font-size: 0.85rem; font-weight: 500; color: var(--dark); }

/* ═══════════════ BOOKING ════════════════════════════════ */
.booking { padding: 100px 0; background: var(--white); }

.booking-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  max-width: 860px;
  margin: 0 auto;
}

.booking-steps {
  display: flex;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.step {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color var(--trans), background var(--trans);
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step span {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--border);
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background var(--trans), color var(--trans);
}
.step.active { color: var(--blue); }
.step.active span { background: var(--blue); color: var(--white); }
.step.done span { background: #22c55e; color: var(--white); }

.booking-form { padding: 48px; }
.form-step { display: none; }
.form-step.active { display: block; }

.form-step h3 { margin-bottom: 32px; }

.trip-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.trip-type-card { cursor: pointer; }
.trip-type-card input { display: none; }
.trip-type-inner {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
}
.trip-type-inner span { font-size: 2rem; display: block; margin-bottom: 10px; }
.trip-type-inner strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 6px; }
.trip-type-inner p { font-size: 0.8rem; }
.trip-type-card input:checked + .trip-type-inner {
  border-color: var(--blue);
  background: #f0f3ff;
  box-shadow: 0 0 0 3px rgba(26,62,255,0.1);
}
.trip-type-card:hover .trip-type-inner { border-color: #aab4ff; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--dark); }
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,62,255,0.12); }
.form-group textarea { resize: vertical; min-height: 90px; }

.passengers-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
}
.passengers-control button {
  background: var(--light);
  border: none;
  padding: 12px 18px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.passengers-control button:hover { background: var(--border); }
.passengers-control span { flex: 1; text-align: center; font-weight: 600; font-size: 1rem; }

.checkbox-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem !important;
  color: var(--gray) !important;
  font-weight: 400 !important;
}
.checkbox-label input { width: auto; accent-color: var(--blue); margin-top: 2px; }

.form-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-next { align-self: flex-start; }

/* Success */
.success-msg { text-align: center; padding: 20px 0; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes popIn { from{transform:scale(0)} to{transform:scale(1)} }
.success-msg h3 { margin-bottom: 12px; }
.success-msg p  { margin-bottom: 28px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* ═══════════════ CONTACT ════════════════════════════════ */
.contact { padding: 100px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item span { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; }

.gmap-placeholder {
  background: var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.9rem;
}
.gmap-placeholder span { font-size: 2rem; }

.contact-map-placeholder iframe {
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: block;
  width: 100%;
  height: 320px;
}

/* ═══════════════ FOOTER ═════════════════════════════════ */
.footer { background: var(--black); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 0fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* ── FOOTER LOGO ─────────────────────────────────────────── */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
  margin-top: 20px;
  /* Black bg on the PNG becomes invisible against the dark footer */
  filter: brightness(0) invert(1) sepia(1) saturate(4) hue-rotate(200deg);
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
}


/* Footer center logo column */
.footer-center-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-center-logo .footer-logo-img {
  width: 160px;
  height: 160px;
  margin-top: 0;
}

/* Footer wordmark */
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.footer-brand .ls1, .footer-brand .ls2, .footer-brand .ls3 { color: var(--white) !important; font-size: 1.1rem; }
.footer-brand .ls2 { color: var(--blue) !important; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-links h4 { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 24px 40px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ═══════════════ RESPONSIVE ═════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid.five { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }

  
/* ── HERO IMAGE ─────────────────────────────────────────── */
/* Place your photo at images/hero.jpg — if missing, white bg shows */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Gradient overlay so text stays readable over any photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.25) 100%);
  z-index: 1;
}

.hero-content { padding: 60px 24px; }
  .hero-scroll-hint { left: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid.five { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .booking-form { padding: 32px 24px; }
  .trip-type-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-steps .step { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Reset zoom button — matches Leaflet's native zoom style */
.leaflet-control-zoom-reset {
  color: #333 !important;
  font-weight: bold;
  text-decoration: none !important;
}
.leaflet-control-zoom-reset:hover {
  background: #f4f4f4;
  color: var(--blue) !important;
}

/* Extra bottom margin on map section so stats have breathing room */
.destinations {
  padding-bottom: 160px !important;
}

/* Seat limit badge on trip type cards */
.seat-badge {
  display: inline-block;
  margin-top: 8px;
  background: var(--light);
  color: var(--blue);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.trip-type-card input:checked + .trip-type-inner .seat-badge {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* Passenger error message */
.passenger-error {
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 14px;
  background: #fff0f0;
  border-radius: 8px;
  border: 1px solid #fca5a5;
  margin-top: 8px;
  display: none;
}
.passenger-error.visible { display: block; }

/* Clickable service card */
.service-card--link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.service-card--link:hover { box-shadow: 0 16px 48px rgba(26,62,255,0.13); transform: translateY(-6px); border-color: var(--blue); }
.service-card-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
}

/* ═══════════════ DRAUDIMAS PAGE ════════════════════════ */
.draudimas-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 80px 80px;
  background: var(--light);
  gap: 10px;
}
.draudimas-hero-content { max-width: 600px; }
.draudimas-hero-content h1 { margin: 12px 0 20px; font-size: clamp(2rem, 4vw, 3.2rem); }
.draudimas-hero-content h1 em { font-style: italic; color: var(--blue); }
.draudimas-hero-content p { margin-bottom: 32px; font-size: 1.05rem; }
.draudimas-hero-icon { font-size: 8rem; opacity: 0.15; flex-shrink: 0; }

.draudimas-types { padding: 100px 0; background: var(--white); }
.draudimas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.draudimas-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.draudimas-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.draudimas-card--cta { background: var(--blue); border-color: var(--blue); color: #fff; }
.draudimas-card--cta h3, .draudimas-card--cta p { color: #fff; }
.draudimas-card--cta .btn-primary { background: #fff; color: var(--blue); border-color: #fff; margin-top: 16px; }
.draudimas-card--cta .btn-primary:hover { background: var(--light); }
.draudimas-icon { font-size: 2.2rem; margin-bottom: 16px; }
.draudimas-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.draudimas-card p { font-size: 0.9rem; margin-bottom: 16px; }
.draudimas-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.draudimas-card ul li { font-size: 0.85rem; color: var(--gray); padding-left: 14px; position: relative; }
.draudimas-card ul li::before { content: ✓; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.draudimas-card--cta ul li { color: rgba(255,255,255,0.8); }
.draudimas-card--cta ul li::before { color: #fff; }

.draudimas-why { padding: 100px 0; background: var(--light); }
.draudimas-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.draudimas-why-item span { font-size: 2rem; display: block; margin-bottom: 14px; }
.draudimas-why-item h4 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.draudimas-why-item p { font-size: 0.88rem; }

.draudimas-cta { padding: 100px 0; background: var(--black); text-align: center; }
.draudimas-cta h2 { color: #fff; margin-bottom: 16px; }
.draudimas-cta p { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 36px; }
.draudimas-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.draudimas-cta .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.draudimas-cta .btn-ghost:hover { background: #fff; color: var(--black); }

@media (max-width: 1024px) { .draudimas-grid { grid-template-columns: repeat(2, 1fr); } .draudimas-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .draudimas-hero { flex-direction: column; padding: 120px 24px 60px; } .draudimas-hero-icon { display: none; } .draudimas-grid { grid-template-columns: 1fr; } .draudimas-why-grid { grid-template-columns: 1fr 1fr; } }

/* Clickable contact items */
.contact-item--link {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item--link:hover { background: rgba(26,62,255,0.04); transform: translateX(4px); }
.contact-item--link:hover p { color: var(--blue); }
/* ── FLATPICKR THEME ─────────────────────────────────────── */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.flatpickr-day.today {
  border-color: var(--blue);
}
.flatpickr-day:hover {
  background: var(--light);
}
.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
span.flatpickr-weekday {
  background: var(--blue);
  color: #fff;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #fff;
}
.flatpickr-calendar {
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════ LEGAL PAGES ════════════════════════════ */
.legal-page {
  padding: 120px 0 100px;
  background: var(--white);
}

.legal-container {
  max-width: 860px;
}

.legal-header {
  margin-bottom: 48px;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 24px;
}

.legal-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--gray);
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 14px;
  font-family: 'DM Sans', sans-serif;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 24px 0 12px;
  font-family: 'DM Sans', sans-serif;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-content a:hover {
  opacity: 0.8;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.88rem;
}

.legal-table th {
  background: var(--light);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--border);
}

.legal-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: #374151;
  vertical-align: top;
}

.legal-table tr:nth-child(even) td {
  background: #fafafa;
}