/* ==========================================================================
   SKARDINIS.LT — pagrindinis stilių failas
   ========================================================================== */

:root {
  --bg-dark: #16171a;
  --bg-dark-2: #1e2023;
  --panel: #24272a;
  --border: rgba(255, 255, 255, 0.09);
  --gold: #cda54a;
  --gold-light: #e6c877;
  --text-light: #f5f4f1;
  --text-muted: #b6bac0;
  --bg-light: #f7f6f2;
  --bg-light-2: #efede7;
  --text-dark: #1c1d1f;
  --text-dark-muted: #55585d;
  --radius: 14px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.45);
  --container: 1320px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 600;
}

p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(205, 165, 74, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  max-width: 620px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-head p {
  color: var(--text-dark-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section-head.on-dark p { color: var(--text-muted); }

section { padding: 88px 0; }

.bg-dark { background: var(--bg-dark); color: var(--text-light); }
.bg-light-2 { background: var(--bg-light-2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #1a1a1a;
  box-shadow: 0 12px 26px -10px rgba(205, 165, 74, 0.55);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-light);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.btn-outline-dark {
  border-color: rgba(0,0,0,0.18);
  color: var(--text-dark);
}
.btn-outline-dark:hover { border-color: var(--text-dark); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header.scrolled {
  background: rgba(22, 23, 26, 0.92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-light);
  letter-spacing: 0.01em;
}

.logo svg { flex-shrink: 0; }
.logo .accent { color: var(--gold); }
.logo small {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}
.main-nav a:hover { opacity: 1; color: var(--gold-light); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}
.header-phone svg { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 600;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--text-light);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 150px 0 34px;
  color: var(--text-light);
  overflow: hidden;
}

.hero picture,
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,16,18,0.72) 0%, rgba(15,16,18,0.55) 35%, rgba(12,13,15,0.88) 100%);
  z-index: 1;
}

/* Hero tekstas arčiau kairio krašto (didesniuose ekranuose) */
.hero .container {
  max-width: none;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: 24px;
  margin-left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  max-width: 1000px;
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(245,244,241,0.88);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.hero-note svg { color: var(--gold); flex-shrink: 0; }

/* Hero statistikos juosta (apačioje) */
.hero-stats {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: 48px;
  padding: 0 clamp(24px, 5vw, 80px);
}

.hero-stats-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
}

.hero-stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.hero-stats-list li {
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stats-list li:first-child { padding-left: 0; }
.hero-stats-list li:last-child { border-right: none; padding-right: 0; }

.hero-stats-list strong {
  display: block;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-stats-list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 244, 241, 0.62);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 244, 241, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 6px;
  transition: color var(--transition);
}
.scroll-cue:hover { color: var(--gold-light); }
.scroll-cue svg { animation: scrollCueBounce 2s ease-in-out infinite; }

@keyframes scrollCueBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trust-bar {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 24px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }

.trust-item .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(205, 165, 74, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--text-light);
  font-size: 0.98rem;
  margin-bottom: 2px;
}
.trust-item span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

/* ==========================================================================
   Services
   ========================================================================== */

/* ==========================================================================
   Paslaugos — horizontalus slinkimas
   SVARBU: pridėjus arba pašalinus kortelę pakeisk tik --cards skaičių,
   visa kita naršyklė persiskaičiuoja pati.
   ========================================================================== */

.services-section { padding-bottom: 0; }
.services-section .section-head { margin-bottom: 34px; }

.hscroll {
  --cards: 5;          /* <-- kortelių skaičius */
  --card-w: 26vw;
  --card-gap: 2vw;
  --edge: 5vw;
  /* kiek juostai reikia nuvažiuoti, kad matytųsi paskutinė kortelė */
  --travel: max(0px, calc(
      var(--cards) * var(--card-w)
    + (var(--cards) - 1) * var(--card-gap)
    + 2 * var(--edge)
    - 100vw));
}

/* Numatytoji būsena: paprasta braukiama karuselė.
   Ji veikia visur ir visada — net jei nieko kito nepalaikoma. */
.hscroll-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-inline: 18px;   /* kad pirma kortelė neprisiliptų prie ekrano krašto */
  overscroll-behavior-x: contain; /* braukiant karuselę nešokinėja visas puslapis */
}
.hscroll-viewport::-webkit-scrollbar { display: none; }

.hscroll-track {
  display: flex;
  gap: 16px;
  padding: 6px 18px 10px;   /* vienodos paraštės ir pradžioje, ir pabaigoje */
}

.hscroll-track .service-card {
  flex: 0 0 78vw;
  scroll-snap-align: start;
}

.hscroll-progress-wrap { margin-top: 20px; }

.carousel-progress {
  position: relative;
  height: 3px;
  border-radius: 99px;
  background: rgba(0,0,0,0.09);
  overflow: hidden;
}
.carousel-progress span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleX(0.15);
  transform-origin: left center;
}

/* --- Kompiuteris + naršyklė moka slinkimo animacijas: prilipimas --- */
@supports (animation-timeline: scroll()) {
  @media (min-width: 900px) {

    .hscroll {
      position: relative;
      height: calc(100vh + var(--travel));   /* ekranas + nuvažiuojamas atstumas */
      view-timeline-name: --pin;
      view-timeline-axis: block;
    }

    .hscroll-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 96px 0 40px;         /* vieta fiksuotai viršutinei juostai */
    }

    .hscroll-viewport {
      overflow: hidden;
      scroll-snap-type: none;
      padding: 0;
    }

    .hscroll-track {
      gap: var(--card-gap);
      padding: 6px var(--edge) 10px;
      animation: paslaugos-slinkimas linear both;
      animation-timeline: --pin;
      animation-range: contain 0% contain 100%;
    }

    .hscroll-track .service-card { flex: 0 0 var(--card-w); }

    .carousel-progress span {
      animation: paslaugos-progresas linear both;
      animation-timeline: --pin;
      animation-range: contain 0% contain 100%;
    }

    .services-section .section-head { margin-bottom: clamp(20px, 3vh, 40px); }
    .services-section .section-head p { margin-bottom: 0; }
  }

  /* Žemi ekranai: kompaktiškiau, kad viskas tilptų */
  @media (min-width: 900px) and (max-height: 880px) {
    .services-section .section-head p { display: none; }
    .services-section .section-head { margin-bottom: 22px; }
  }
}

@keyframes paslaugos-slinkimas {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--travel))); }
}

@keyframes paslaugos-progresas {
  from { transform: scaleX(0.15); }
  to   { transform: scaleX(1); }
}

.service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(205,165,74,0.35);
}

/* Nuotraukos vieta paslaugos kortelėje */
.service-media {
  position: relative;
  isolation: isolate;   /* nuotrauka lieka savo rėmelyje ir neužlipa ant ikonos */
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #24272a, #34383c);
  overflow: hidden;
}
/* Užrašas matomas tik tol, kol nuotrauka neįkelta */
.service-media::after {
  content: "Nuotrauka ruošiama";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,244,241,0.35);
  z-index: 0;
}
.service-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-media img { transform: scale(1.05); }

.service-body {
  position: relative;
  z-index: 2;           /* ikona piešiama virš nuotraukos */
  padding: 0 30px 32px;
  flex: 1;
}

.service-card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(145deg, #1c1d1f, #2c2e31);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -29px 0 18px;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.4);
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--text-dark-muted); font-size: 1.02rem; line-height: 1.65; margin-bottom: 0; }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-dark-2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item .caption {
  position: absolute;
  left: 14px; bottom: 12px; right: 14px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 2;
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: #0a0a0b;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  isolation: isolate;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox .lb-caption {
  position: absolute;
  bottom: 26px;
  left: 0; right: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(205,165,74,0.35); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Why us
   ========================================================================== */

.why-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.why-list { margin-top: 30px; display: grid; gap: 22px; }

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-list .num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.why-list h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-list p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 0; }

.why-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

.why-badge {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(20,21,23,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
}
.why-badge strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  color: var(--gold-light);
}
.why-badge span { font-size: 0.78rem; color: var(--text-muted); }

/* ==========================================================================
   Service area
   ========================================================================== */

.area-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-tags span {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(205,165,74,0.1);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(205,165,74,0.25);
}
.area-tags span.main {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
}

.area-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  filter: grayscale(0.15) contrast(1.05);
}
.area-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(120deg, #1a1b1d, #24211a 120%);
  color: var(--text-light);
  padding: 64px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 6px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 0; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 38px 34px;
}

.contact-info-card h3 { color: var(--gold-light); font-size: 1.2rem; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(205,165,74,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { color: var(--text-muted); font-size: 0.92rem; }
.contact-detail a:hover { color: var(--gold-light); }

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: #1a1a1a; }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 34px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text-dark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.12);
  font-family: inherit;
  font-size: 0.96rem;
  background: #fbfaf8;
  transition: border-color var(--transition), background var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }

.form-note { font-size: 0.82rem; color: var(--text-dark-muted); margin-top: 12px; margin-bottom: 0; }

/* Spam gaudyklė — paslėpta nuo žmonių, bet ne per display:none,
   kitaip dalis robotų ją atpažįsta ir praleidžia. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Formos būsenos pranešimas */
.form-status {
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.25);
}
.form-status.error {
  background: rgba(198, 40, 40, 0.08);
  color: #c62828;
  border: 1px solid rgba(198, 40, 40, 0.25);
}

.contact-form button[disabled] { opacity: 0.6; cursor: progress; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #101113;
  color: var(--text-muted);
  padding: 60px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-top .logo { margin-bottom: 14px; }
.footer-top p { font-size: 0.92rem; max-width: 320px; }

.footer-col h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* ==========================================================================
   Floating call button (mobile)
   ========================================================================== */

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 400;
  display: none;
  gap: 12px;
}
.float-actions a {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,0.5);
}
.float-actions .call { background: var(--gold); color: #1a1a1a; }
.float-actions .msg { background: #24272a; color: var(--text-light); }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--border); }
  .why-wrap, .area-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .why-media { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .header-actions { gap: 10px; }
  .header-actions .btn-primary { padding: 11px 16px; font-size: 0.86rem; }
  .container { padding: 0 18px; }
  .nav-toggle { display: block; flex-shrink: 0; }

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--bg-dark);
    padding: 100px 32px 40px;
    gap: 26px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.4);
  }

  .nav-scrim {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 450;
  }
  .nav-scrim.show { display: block; }

  .logo { font-size: 1.05rem; gap: 8px; }
  .logo small { font-size: 0.56rem; }
  .logo svg { width: 26px; height: 26px; }

  section { padding: 64px 0; }
  .hero { padding-top: 130px; min-height: auto; padding-bottom: 40px; }
  .hero-stats { padding: 0 24px; margin-top: 36px; }
  .hero-stats-inner { padding-top: 20px; gap: 18px; }
  .hero-stats-list { width: 100%; }
  .hero-stats-list li { padding: 0 18px; flex: 1; }
  .hero-stats-list strong { font-size: 1.35rem; }
  .hero-stats-list span { font-size: 0.6rem; letter-spacing: 0.08em; }
  .scroll-cue { display: none; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas { flex-direction: column; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .hscroll-progress-wrap { margin-top: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }

  .float-actions { display: flex; }
  .area-map iframe { height: 280px; }
}