/* ==========================================================================
   Guliverio kelionės — leadų landing
   Dizainas: kelionės dokumento / įlaipinimo talono estetika
   Paletė: gilus jūros navy, šiltas popierius, jūros žalsvas, gintaras, koralas
   ========================================================================== */

:root {
  --ink:      #123A56;  /* gilus „Guliverio“ mėlynas — tekstas, hero fonas */
  --ink-soft: #33506a;
  --paper:    #FBF7F0;  /* šiltas popierius — puslapio fonas */
  --card:     #ffffff;
  --sea:      #1B87C9;  /* „Guliverio“ dangaus mėlyna — akcentas, pasitikėjimas */
  --sea-dk:   #0f6ba6;
  --sun:      #F4A81F;  /* „Guliverio“ auksinė — skuba / nuolaida */
  --coral:    #E4572E;  /* koralas — CTA (siejasi su logotipo raudona) */
  --coral-dk: #c8461f;
  --line:     #e7ddcd;  /* popieriaus linijos */
  --muted:    #6b7785;
  --ok:       #2f8f5b;

  --radius: 16px;
  --shadow: 0 18px 40px -18px rgba(16, 38, 58, .35);
  --shadow-sm: 0 6px 18px -10px rgba(16, 38, 58, .4);
  --maxw: 620px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ------------------------------------------------------------------ HERO */
.hero {
  position: relative;
  min-height: 66svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18,58,86,.94) 0%, rgba(18,58,86,.55) 45%, rgba(18,58,86,.25) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 20px calc(30px + env(safe-area-inset-bottom));
}
.hero__kicker {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sun);
  border: 1px solid rgba(242,166,59,.5);
  border-radius: 100px;
  padding: 5px 13px;
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 8vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 12px;
  text-wrap: balance;
}
.hero__intro {
  font-size: 1.02rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 22px;
  max-width: 40ch;
}

/* Signature: įlaipinimo talonas */
.ticket {
  display: flex;
  background: var(--card);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 22px;
}
.ticket__main { flex: 1; padding: 16px 18px; }
.ticket__row { display: flex; gap: 14px; }
.ticket__cell { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.ticket__label {
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.ticket__value { font-weight: 600; font-size: .98rem; line-height: 1.15; }
.ticket__stub {
  position: relative;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(160deg, var(--ink), #1a5885);
  color: #fff;
  min-width: 128px;
}
/* perforacija tarp talono dalių */
.ticket__stub::before {
  content: "";
  position: absolute; left: -1px; top: 0; bottom: 0;
  width: 2px;
  background-image: radial-gradient(circle, var(--paper) 2px, transparent 2.5px);
  background-size: 2px 11px;
  background-repeat: repeat-y;
}
.ticket__price-old { font-size: .78rem; color: rgba(255,255,255,.55); text-decoration: line-through; }
.ticket__price { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; line-height: 1.05; }
.ticket__discount {
  font-size: .72rem;
  font-weight: 600;
  color: var(--sun);
}
.hero__cta { width: 100%; }

/* ------------------------------------------------------------------ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  padding: 15px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--coral-dk); }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--sea); color: var(--sea); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 24px; font-size: 1.05rem; }

/* ------------------------------------------------------------------ TRUST */
.trust {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.trust__item { text-align: center; display: flex; flex-direction: column; }
.trust__item strong { font-family: var(--serif); font-size: 1.55rem; color: var(--sea); line-height: 1; }
.trust__item span { font-size: .74rem; color: var(--muted); margin-top: 4px; }
.trust__sep { width: 1px; height: 34px; background: var(--line); }

/* ------------------------------------------------------------------ SECTIONS */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 20px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.section__lead { color: var(--muted); margin: 0 0 22px; }

/* ------------------------------------------------------------------ HIGHLIGHTS */
.highlights__grid {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.highlight__text { font-weight: 500; font-size: .94rem; }
.highlight__icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(27,135,201,.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px;
}
.highlight__icon[data-icon="plane"]   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B87C9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.8 19.2 16 11l3.5-3.5a2.1 2.1 0 0 0-3-3L13 8 4.8 6.2a.5.5 0 0 0-.5.8L8 11l-3 3-2-.5a.5.5 0 0 0-.5.8L5 17l1.7 2.5a.5.5 0 0 0 .8 0L11 16l3.4 3.7a.5.5 0 0 0 .8-.5Z'/%3E%3C/svg%3E"); }
.highlight__icon[data-icon="hotel"]   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B87C9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 20V6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v3h5a1 1 0 0 1 1 1v10'/%3E%3Cpath d='M3 20h18M7 9h.01M7 13h.01M11 9h.01M11 13h.01M18 13h.01M18 17h.01'/%3E%3C/svg%3E"); }
.highlight__icon[data-icon="guide"]   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B87C9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3C/svg%3E"); }
.highlight__icon[data-icon="compass"] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B87C9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m15.5 8.5-2 5-5 2 2-5z'/%3E%3C/svg%3E"); }

/* ------------------------------------------------------------------ ACCENTS (tikri punktai) */
.accents__list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 11px; }
.accent { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.accent__tick {
  flex: none; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 50%;
  background: rgba(27,135,201,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231B87C9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.accents__source { font-size: .82rem; color: var(--muted); margin: 18px 0 0; }
.accents__source a { color: var(--sea); }

/* ------------------------------------------------------------------ GALLERY */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: 4px 20px; }
.gallery__track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery__item { margin: 0; }
.gallery__item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: block;
}
@media (min-width: 640px) {
  .gallery__track { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .gallery__item img { height: 175px; }
}

/* ------------------------------------------------------------------ DATES */
.datecards { display: grid; gap: 10px; margin-top: 8px; }
.datecard {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.datecard__left { display: flex; flex-direction: column; gap: 3px; }
.datecard__date { font-weight: 600; font-size: .96rem; }
.datecard__seats { font-size: .78rem; color: var(--coral-dk); font-weight: 600; }
.datecard__right { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.datecard__old { font-size: .8rem; color: var(--muted); text-decoration: line-through; }
.datecard__disc { font-size: .74rem; font-weight: 700; color: var(--ok); }
.datecard__price { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.dates__note { font-size: .82rem; color: var(--muted); margin: 14px 0 0; }

/* ------------------------------------------------------------------ URGENCY */
.urgency {
  background: linear-gradient(100deg, #fff4e2, #fdead0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.urgency__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.urgency__text { margin: 0; font-size: .95rem; color: #7a4d10; }
.urgency__text strong { color: var(--coral-dk); }
.urgency__pulse {
  flex: none;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(228,87,46,.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(228,87,46,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(228,87,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(228,87,46,0); }
}

/* ------------------------------------------------------------------ FORM */
.formcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.steps { display: flex; gap: 8px; margin-bottom: 8px; }
.step {
  flex: 1; height: 6px;
  border-radius: 100px;
  background: var(--line);
  transition: background .3s ease;
}
.step.is-active { background: var(--sea); }
.step.is-done { background: var(--sea); opacity: .55; }
.steps__label { font-size: .78rem; color: var(--muted); margin: 0 0 18px; font-weight: 600; }

.panel { display: none; animation: fade .25s ease; }
.panel.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.panel__q {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 6px;
}
.panel__trip { color: var(--muted); margin: 0 0 20px; font-size: .95rem; }
.panel__soft { color: var(--muted); margin: 0 0 18px; }

.choices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.choice {
  text-align: left;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s;
}
.choice:hover { border-color: var(--sea); }
.choice:active { transform: scale(.99); }
.choice--muted { color: var(--muted); font-weight: 500; }

.field { display: block; margin-bottom: 15px; }
.field__label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; }
.field__opt { color: var(--muted); font-weight: 400; }
.field__input {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px; /* iOS zoom prevencija */
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 13px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.field__input:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(27,135,201,.13);
  background: #fff;
}
select.field__input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7785' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
textarea.field__input { resize: vertical; min-height: 72px; }
.field__err { display: block; color: var(--coral); font-size: .8rem; margin-top: 5px; min-height: 0; }
.field.has-error .field__input { border-color: var(--coral); }

.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 4px 0 6px;
  cursor: pointer;
}
.check input { flex: none; width: 20px; height: 20px; margin-top: 1px; accent-color: var(--sea); }

.linkback {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .88rem;
  font-family: var(--sans);
  cursor: pointer;
  padding: 6px;
}
.linkback:hover { color: var(--ink); }

.panel--soft { padding: 6px 0; }
.panel--done { text-align: center; padding: 14px 0; }
.done__mark {
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(47,143,91,.12);
  color: var(--ok);
  font-size: 1.9rem;
  display: flex; align-items: center; justify-content: center;
}

/* honeypot slėpimas */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------ TESTIMONIALS */
.testimonials { text-align: center; }
.reviews { display: grid; gap: 14px; margin: 20px 0 26px; text-align: left; }
.review {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review__avatar {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sea);
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
}
.review__author { display: block; font-size: .96rem; }
.review__score { font-size: .8rem; color: var(--sun); font-weight: 600; }
.review__text {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Kai konkrečiai kelionei atsiliepimų nėra — bendras įvertinimo blokas */
.testimonials--empty { text-align: center; }
.ratingbig {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  margin: 8px 0 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ratingbig__num { font-family: var(--serif); font-size: 3rem; font-weight: 600; color: var(--sea); line-height: 1; }
.ratingbig__num span { font-size: 1.3rem; color: var(--muted); }
.ratingbig__stars { color: var(--sun); font-size: 1.3rem; letter-spacing: 3px; }
.ratingbig__label { font-size: .92rem; color: var(--muted); max-width: 34ch; }

/* ------------------------------------------------------------------ FOOTER */
.foot {
  text-align: center;
  padding: 28px 20px calc(28px + env(safe-area-inset-bottom));
  font-size: .82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.foot a { color: var(--sea); }

/* ------------------------------------------------------------------ FOCUS / A11Y */
:focus-visible { outline: 3px solid var(--sea); outline-offset: 2px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

/* ------------------------------------------------------------------ DESKTOP */
@media (min-width: 640px) {
  .hero { min-height: 72svh; }
  .hero__inner { padding-top: 48px; padding-bottom: 48px; }
  .trust { gap: 34px; }
  .section { padding: 56px 20px; }
  .highlight { padding: 18px 20px; }
}
