/* ==========================================================================
   Pajūrio Santechnikai - stiliai
   Spalvos ir kiti nustatymai keičiami :root sekcijoje žemiau.
   ========================================================================== */

:root {
  /* Firmos spalvos */
  --brand:        #2563eb;
  --brand-dark:   #1d4ed8;
  --brand-darker: #1e3a8a;
  --brand-soft:   #eff6ff;

  --accent:       #f97316;
  --accent-dark:  #ea580c;

  --danger:       #dc2626;
  --danger-dark:  #b91c1c;

  /* Neutralios */
  --ink:      #0f172a;
  --ink-soft: #334155;
  --muted:    #64748b;
  --line:     #e2e8f0;
  --bg:       #ffffff;
  --bg-soft:  #f8fafc;

  /* Formos */
  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 1px 2px rgba(15, 23, 42, .06), 0 8px 24px rgba(15, 23, 42, .06);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, .12);

  --header-h: 76px;
  --maxw: 1160px;
}

/* ---------- Bazė ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { margin: 0 0 1rem; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.ico { width: 18px; height: 18px; flex: none; }

/* ---------- Mygtukai ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(37, 99, 235, .28); }
.btn-primary:hover { background: var(--brand-dark); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(249, 115, 22, .32); }
.btn-accent:hover { background: var(--accent-dark); }

.btn-danger { background: var(--danger); color: #fff; box-shadow: 0 6px 18px rgba(220, 38, 38, .3); }
.btn-danger:hover { background: var(--danger-dark); }

.btn-ghost { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--brand-dark); border-color: #fff; }

.btn[disabled] { opacity: .65; pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .25s ease, box-shadow .25s ease;
  background: transparent;
}
.site-header.is-solid {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(15, 23, 42, .06);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, .35);
}
.brand-mark svg { width: 24px; height: 24px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.08rem; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.brand-text small { font-size: .75rem; color: rgba(255, 255, 255, .8); }

.site-header.is-solid .brand-text strong { color: var(--ink); }
.site-header.is-solid .brand-text small { color: var(--muted); }

.nav-desktop { display: none; gap: 30px; }
.nav-desktop a {
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: .96rem;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-desktop a:hover { color: #fff; border-bottom-color: var(--accent); text-decoration: none; }
.site-header.is-solid .nav-desktop a { color: var(--ink-soft); }
.site-header.is-solid .nav-desktop a:hover { color: var(--brand); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call { display: none; }

.nav-toggle {
  display: grid;
  place-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .14);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.site-header.is-solid .nav-toggle { background: var(--bg-soft); }
.site-header.is-solid .nav-toggle span { background: var(--ink); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: grid;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid transparent;
  transition: max-height .3s ease, border-color .3s ease;
}
.nav-mobile.is-open { max-height: 460px; border-top-color: var(--line); box-shadow: 0 14px 30px rgba(15, 23, 42, .1); }
.nav-mobile a {
  padding: 15px 20px;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.nav-mobile a:hover { background: var(--bg-soft); text-decoration: none; }
.nav-mobile-call { margin: 14px 20px 20px; border-bottom: 0 !important; color: #fff !important; }
.nav-mobile-call:hover { background: var(--accent-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-h) + 56px) 0 76px;
  color: #fff;
  overflow: hidden;
}

/* Jei įkelsite images/hero.jpg - nuotrauka atsiras automatiškai.
   Jei failo nėra, lieka gradientas ir viskas atrodo tvarkingai. */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, .82) 0%, rgba(30, 58, 138, .86) 55%, rgba(29, 78, 216, .9) 100%),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 12% 18%, rgba(59, 130, 246, .35), transparent 65%),
    radial-gradient(700px 380px at 88% 82%, rgba(249, 115, 22, .22), transparent 60%);
}

.hero-inner { position: relative; z-index: 1; }

.hero-top {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 46px;
}
.hero-main { max-width: 660px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-accent {
  display: block;
  background: linear-gradient(90deg, #fdba74, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  max-width: 640px;
  margin-bottom: 32px;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: rgba(255, 255, 255, .92);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.trust-grid li {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
}
.trust-ico {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-bottom: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .16);
  color: #fdba74;
}
.trust-ico svg { width: 22px; height: 22px; }
.trust-grid strong { font-size: 1rem; color: #fff; }
.trust-grid span { font-size: .88rem; color: rgba(255, 255, 255, .78); }

/* ---------- Sekcijos ---------- */
.section { padding: clamp(64px, 9vw, 104px) 0; }
.section-soft { background: var(--bg-soft); }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 62px); text-align: center; }
.section-head p { font-size: 1.06rem; color: var(--muted); margin: 0; }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255, 255, 255, .86); }

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.section-tag-light { background: rgba(255, 255, 255, .16); color: #fff; }

.section-foot { margin-top: 46px; text-align: center; }
.section-foot p { color: var(--muted); margin-bottom: 18px; }

/* ---------- Paslaugų kortelės ---------- */
.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.card {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cbd5e1; }

.card-ico {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
}
.card-ico svg { width: 26px; height: 26px; }
.card-ico-red { background: #fef2f2; color: var(--danger); }

.card p { color: var(--muted); font-size: .97rem; }

.card-list { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.card-list li {
  position: relative;
  padding-left: 26px;
  font-size: .93rem;
  color: var(--ink-soft);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Apie mus ---------- */
.about-single { max-width: 760px; margin-inline: auto; text-align: center; }
.about-single .check-list { display: inline-grid; text-align: left; }
.lead { font-size: 1.06rem; color: var(--muted); }

.check-list { display: grid; gap: 13px; margin: 26px 0 32px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 500;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .2em;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ---------- Kontaktai ---------- */
.contact-grid { display: grid; gap: 30px; grid-template-columns: 1fr; align-items: start; }

.contact-info,
.contact-form-wrap {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-info > h3,
.contact-form-wrap > h3 { margin-bottom: 24px; font-size: 1.3rem; }

.info-list { display: grid; gap: 22px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list strong { display: block; color: var(--ink); margin-bottom: 2px; }
.info-list div > span,
.info-list div > a { display: block; font-size: .95rem; }
.info-list a { font-weight: 600; }
.info-sub { color: var(--muted); font-size: .85rem !important; margin-top: 2px; }
.info-sub-alert { color: var(--danger); font-weight: 600; }

.info-ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}
.info-ico svg { width: 21px; height: 21px; }

.info-tip {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
}
.info-tip strong { display: block; color: var(--brand-darker); margin-bottom: 8px; font-size: 1.02rem; }
.info-tip p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Forma ---------- */
.field { margin-bottom: 18px; }
.field-row { display: grid; gap: 0; grid-template-columns: 1fr; }
.field.is-hidden { display: none; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
}
.req { color: var(--danger); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: #94a3b8; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .14);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--danger); }
.field.has-error input:focus,
.field.has-error textarea:focus { box-shadow: 0 0 0 4px rgba(220, 38, 38, .14); }

.error { display: none; margin: 6px 0 0; font-size: .84rem; color: var(--danger); font-weight: 600; }
.field.has-error .error { display: block; }

/* Anti-spam laukelis - paslėptas nuo žmonių, matomas botams */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { margin: 14px 0 0; font-size: .84rem; color: var(--muted); text-align: center; }

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-weight: 600;
  text-align: center;
}
.form-status.is-success { display: block; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-status.is-error   { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2.5px solid rgba(255, 255, 255, .45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading .spinner { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #0f172a; color: #94a3b8; padding: clamp(48px, 6vw, 68px) 0 0; }
.site-footer h4 { color: #fff; margin-bottom: 16px; }
.site-footer h4.mt { margin-top: 26px; }
.site-footer p { font-size: .93rem; }

.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.footer-brand p { max-width: 420px; margin-top: 16px; }
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text small { color: #94a3b8; }

.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #94a3b8; font-size: .93rem; }
.footer-links a:hover { color: #fff; }
.footer-muted { color: #64748b; font-size: .93rem; margin: 0; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 44px;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid #1e293b;
}
.footer-bottom p { margin: 0; font-size: .88rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a { color: #94a3b8; font-size: .88rem; }
.footer-legal a:hover { color: #fff; }

/* ---------- Mobilus skambinimo mygtukas ---------- */
.fab-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .96rem;
  box-shadow: 0 10px 26px rgba(249, 115, 22, .45);
  text-decoration: none;
}
.fab-call:hover { background: var(--accent-dark); text-decoration: none; }
.fab-call svg { width: 19px; height: 19px; }

/* ---------- Žaismingas akcentas: šokinėjanti pompa (hero) ---------- */
.hero-art { display: grid; place-items: center; }
.fun-svg { width: 100%; max-width: 300px; height: auto; overflow: visible; }

.hero-art-caption {
  margin: 10px 0 0;
  font-size: .95rem;
  font-weight: 700;
  color: #fdba74;
  text-align: center;
}

/* Pompa šokinėja su „squash & stretch" */
.plunger {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: plunge 1.8s cubic-bezier(.34, .1, .3, 1) infinite;
}
@keyframes plunge {
  0%, 100% { transform: translateY(0)     scale(1, 1); }
  18%      { transform: translateY(-30px) scale(.94, 1.08); }
  38%      { transform: translateY(0)     scale(1.12, .86); }
  52%      { transform: translateY(-8px)  scale(.98, 1.03); }
  66%      { transform: translateY(0)     scale(1.04, .97); }
  80%      { transform: translateY(0)     scale(1, 1); }
}

/* Akys mirksi */
.eye {
  transform-box: fill-box;
  transform-origin: center;
  animation: blink 4.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  94%           { transform: scaleY(.12); }
}

/* Purslai sublyksi, kai pompa nusileidžia */
.splash {
  transform-box: fill-box;
  transform-origin: left bottom;
  opacity: 0;
  animation: splash 1.8s ease-out infinite;
}
@keyframes splash {
  0%, 30%   { opacity: 0; transform: scale(.5); }
  40%       { opacity: .9; transform: scale(1); }
  60%, 100% { opacity: 0; transform: scale(1.25); }
}

/* Kylantys lašeliai */
.drop { animation: rise 3.2s ease-in-out infinite; opacity: 0; }
.drop-1 { animation-delay: 0s; }
.drop-2 { animation-delay: 1.1s; }
.drop-3 { animation-delay: 2.1s; }
@keyframes rise {
  0%       { opacity: 0; transform: translateY(6px); }
  25%      { opacity: .85; }
  100%     { opacity: 0; transform: translateY(-34px); }
}

/* Plaukiojantis šūdukas */
.poop {
  transform-box: fill-box;
  transform-origin: center;
  animation: swim 5s ease-in-out infinite;
}
@keyframes swim {
  0%, 100% { transform: translate(0, 0)      rotate(-4deg); }
  25%      { transform: translate(7px, -3px) rotate(4deg); }
  50%      { transform: translate(0, -1px)   rotate(-2deg); }
  75%      { transform: translate(-7px, -3px) rotate(3deg); }
}

/* Burbuliukai dubenyje */
.bub {
  transform-box: fill-box;
  transform-origin: center;
  animation: bubble 2.6s ease-in-out infinite;
}
.bub-2 { animation-delay: .9s; }
@keyframes bubble {
  0%, 100% { transform: translateY(0) scale(1);   opacity: .55; }
  50%      { transform: translateY(-3px) scale(1.2); opacity: .95; }
}

/* ---------- Įranga: unitazai, kriauklės, vonios, dušai ---------- */
.fixtures {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.fixture {
  padding: 24px 22px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fixture:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.fixture svg {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto 14px;
  display: block;
}
.fixture h3 { margin-bottom: 8px; }
.fixture p { margin: 0; font-size: .93rem; color: var(--muted); }

/* Krentanti vandens srovė kriauklėje */
.stream {
  transform-box: fill-box;
  transform-origin: top center;
  animation: pour 1.6s ease-in-out infinite;
}
@keyframes pour {
  0%, 100% { transform: scaleY(.75); opacity: .55; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* Dušo purškimas */
.spray {
  transform-box: fill-box;
  transform-origin: top center;
  animation: sprinkle 1.3s ease-in-out infinite;
}
.spray-2 { animation-delay: .18s; }
.spray-3 { animation-delay: .36s; }
@keyframes sprinkle {
  0%, 100% { transform: scaleY(.6) translateY(0);   opacity: .45; }
  50%      { transform: scaleY(1)  translateY(3px); opacity: 1; }
}

/* ---------- Darbų nuotraukos ---------- */
.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--line);
  box-shadow: var(--shadow);
}
.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}
.shot:hover img { transform: scale(1.05); }
.shot.is-empty { display: none; }

/* ---------- Aptarnaujamos vietovės ---------- */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}
.area-pills li {
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: .96rem;
  color: var(--ink);
}

.area-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }

.area-card {
  display: grid;
  gap: 6px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}
.area-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent);
}
.area-card strong { font-size: 1.12rem; color: var(--ink); font-weight: 800; }
.area-card span { font-size: .92rem; color: var(--ink-soft); }
.area-card em { font-size: .86rem; color: var(--muted); font-style: normal; }

.area-note {
  margin: 30px auto 0;
  max-width: 760px;
  padding: 20px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  text-align: center;
  font-size: .96rem;
  color: var(--muted);
}

.card-more { margin: 16px 0 0; font-size: .92rem; font-weight: 700; }

/* ---------- DUK ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item[open] { border-color: #bfdbfe; }

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand); }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  margin-top: 2px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-body { padding: 0 22px 20px; }
.faq-body p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ---------- Vienas komandos narys ---------- */
.team-grid-single { max-width: 780px; margin-inline: auto; }
.member-contact { margin: 20px 0 0; }

/* ---------- Vietovės puslapio turinys ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .75);
}
.breadcrumb a { color: rgba(255, 255, 255, .9); }
.breadcrumb li::after { content: "›"; margin-left: 8px; opacity: .6; }
.breadcrumb li:last-child::after { content: ""; }

.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin-top: 46px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin-top: 30px; }
.prose ul { display: grid; gap: 10px; margin: 0 0 1.2rem; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 3px; top: .58em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.prose .callout {
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
}
.prose .callout p:last-child { margin-bottom: 0; }
.prose .callout strong { color: var(--brand-darker); }

.price-table { width: 100%; border-collapse: collapse; margin: 0 0 1.2rem; font-size: .95rem; }
.price-table th, .price-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--bg-soft); font-weight: 700; color: var(--ink); }
.table-scroll { overflow-x: auto; }

.cta-band {
  margin-top: 52px;
  padding: 34px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 100%);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; font-size: 1.5rem; }
.cta-band p { color: rgba(255, 255, 255, .9); margin-bottom: 22px; }

.nearby { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }
.nearby a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: .9rem;
  font-weight: 600;
}
.nearby a:hover { border-color: var(--brand); text-decoration: none; }

/* ---------- Teisinis puslapis (privatumo politika) ---------- */
.page-header {
  padding: calc(var(--header-h) + 56px) 0 46px;
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 100%);
  color: #fff;
}
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header p { margin: 0; color: rgba(255, 255, 255, .85); }

.legal { max-width: 780px; margin-inline: auto; }
.legal h2 { font-size: 1.35rem; margin-top: 42px; }
.legal h2:first-of-type { margin-top: 0; }
.legal ul { display: grid; gap: 9px; margin: 0 0 1rem; }
.legal ul li { position: relative; padding-left: 22px; }
.legal ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.legal .back { display: inline-block; margin-top: 42px; font-weight: 700; }

/* ---------- Atsiranda slenkant ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsyvumas
   ========================================================================== */

@media (min-width: 620px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; gap: 0 18px; }
}

@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .fixtures { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 44px 40px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (min-width: 940px) {
  .nav-desktop { display: flex; }
  .header-call { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
  .nav-toggle-alt { display: none; }

  .cards { grid-template-columns: repeat(3, 1fr); }
  .fixtures { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .hero-top { grid-template-columns: 1.1fr .9fr; gap: 50px; margin-bottom: 56px; }
  .fun-svg { max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 34px; }
  .area-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .contact-info, .contact-form-wrap { padding: 36px 34px; }
  .fab-call { display: none; }
}

/* ---------- Judesio mažinimas ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Spausdinimas ---------- */
@media print {
  .site-header, .nav-mobile, .fab-call, .hero-bg, .contact-form-wrap { display: none !important; }
  .hero { min-height: auto; color: #000; padding-top: 0; }
  .hero h1, .hero-accent { color: #000 !important; -webkit-text-fill-color: #000; }
  body { font-size: 12pt; }
}
