/* ============ RESET & VARIABLES ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0d2a44;
  --navy-2: #153a5c;
  --navy-3: #1c4a73;
  --blue: #2f8fd1;
  --blue-light: #eaf4ff;
  --gold: #c8912f;
  --gold-dark: #9c7020;
  --gold-light: #f8ecd8;
  --brown: #8a5a34;
  --brown-dark: #6b4423;
  --gray: #6d7a86;
  --green: #4c9a4c;
  --ink: #1e2a33;
  --muted: #5c6b76;
  --bg: #eef1f4;
  --white: #f6f7f9;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(13, 42, 68, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 42, 68, 0.16);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 145, 47, .35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(200, 145, 47, .45);
}

.btn-ghost {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.2);
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  z-index: 1500;
  transition: width .12s ease-out;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 18px rgba(13, 42, 68, .08);
  transition: box-shadow var(--transition), padding var(--transition);
  padding: 16px 0;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(13, 42, 68, .14);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo-frame {
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e7ebee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(13,42,68,.2);
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
}
.brand-text strong { font-weight: 700; }

.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--navy);
  font-size: .95rem;
  font-weight: 500;
  opacity: .75;
  transition: opacity var(--transition);
  position: relative;
}
.nav a:hover { opacity: 1; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover::after { width: 100%; }
.nav-cta-mobile::after { display: none; }

.header-cta { padding: 11px 22px; font-size: .88rem; }
.nav-cta-mobile { display: none; }
.nav-mobile-brand { display: none; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
  position: relative;
}
.burger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.burger.active span { background: #fff; }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 42, 68, .55);
  z-index: 999;
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-backdrop.visible {
  display: block;
  opacity: 1;
}

body.menu-open { overflow: hidden; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-layers {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
}
.hero-pipe {
  position: absolute;
  top: 15%;
  right: 8%;
  opacity: .5;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  background: rgba(200,145,47,.16);
  border: 1px solid rgba(200,145,47,.45);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-content h1 span {
  color: var(--gold);
  display: block;
}

.hero-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  white-space: nowrap;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.stat:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num, .stat-suffix {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-panel {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-panel-stat {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eef1f3;
}
.hero-panel-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-panel-caption {
  font-size: .9rem;
  color: var(--muted);
}
.hero-panel-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-panel-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--navy);
}
.li-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ============ TRUST BAR ============ */
.trustbar {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid #eef1f3;
}
.trustbar-inner p {
  color: var(--muted);
  text-align: center;
  font-size: .92rem;
  letter-spacing: .2px;
}

/* ============ SECTION GENERIC ============ */
.section {
  padding: 110px 0;
}
.section-alt { background: var(--white); }
.section-dark {
  background: var(--navy);
}
.section > .container { position: relative; z-index: 1; }

/* Soft blurred color glows for depth on light sections */
#paslaugos, #apie, #procesas, #atsiliepimai, #kontaktai {
  position: relative;
  overflow: hidden;
}
#paslaugos::before,
#apie::before,
#procesas::before,
#atsiliepimai::before,
#kontaktai::before {
  content: '';
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}
#paslaugos::before {
  top: -140px; left: -110px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200,145,47,.16), transparent 70%);
}
#apie::before {
  bottom: -160px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(47,143,209,.12), transparent 70%);
}
#procesas::before {
  top: -110px; right: -140px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(76,154,76,.14), transparent 70%);
}
#atsiliepimai::before {
  bottom: -140px; left: -110px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200,145,47,.14), transparent 70%);
}
#kontaktai::before {
  top: -130px; left: 50%;
  width: 520px; height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(47,143,209,.1), transparent 70%);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.tag {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tag-light { color: #e8c583; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.light-heading { color: #fff; }
.section-sub { color: var(--muted); font-size: 1.02rem; }
.sub-light { color: rgba(255,255,255,.65); }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Center a 7th card under the middle column when the grid isn't a multiple of 3 */
.service-card:nth-child(7):last-child { grid-column: 2 / 3; }

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(13,42,68,.05);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 30px; height: 30px; }

.icon-navy { background: #eaf0f5; color: var(--navy-2); }
.icon-gray { background: #eef1f3; color: var(--gray); }
.icon-water { background: #e6f6fb; color: #1c8fb0; }
.icon-brown { background: #f4ece3; color: var(--brown); }
.icon-green { background: #e9f7ea; color: var(--green); }
.icon-gold { background: var(--gold-light); color: var(--gold-dark); }
.icon-slate { background: #eef2f5; color: #33495c; }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: .95rem;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-visual { position: relative; }
.about-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.about-frame:hover .about-photo { transform: scale(1.04); }

.badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #fff;
  padding: 20px 26px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.badge-float strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
}
.badge-float span { font-size: .78rem; opacity: .9; }

.about-content .section-sub { margin-bottom: 26px; }

.about-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
}
.check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step {
  position: relative;
  padding: 30px 26px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.process-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-light);
  -webkit-text-stroke: 1.5px var(--gold-dark);
  margin-bottom: 12px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: .93rem; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  height: 220px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
  isolation: isolate;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .9;
  transition: transform .4s ease;
}
.gallery-item:hover::before { transform: scale(1.08); }
.gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover .gallery-photo { transform: scale(1.08); }
.gallery-item span {
  color: #fff;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 60%);
}
.item-1::before { background: linear-gradient(135deg, #1c4a73, #0d2a44); }
.item-2::before { background: linear-gradient(135deg, #6d7a86, #1e2a33); }
.item-3::before { background: linear-gradient(135deg, #2f8fd1, #0d2a44); }
.item-4::before { background: linear-gradient(135deg, #8a5a34, #4a2e18); }
.item-5::before { background: linear-gradient(135deg, #c8912f, #0d2a44); }
.item-6::before { background: linear-gradient(135deg, #4c9a4c, #0d2a44); }

/* Placeholder tiles for work areas without a photo yet */
.gallery-pending::before {
  filter: blur(10px) saturate(1.2);
  transform: scale(1.15);
}
.gallery-pending:hover::before { transform: scale(1.22); }
.pending-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  animation: pendingPulse 1.8s ease-in-out infinite;
}
@keyframes pendingPulse {
  0%, 100% { opacity: .7; }
  50% { opacity: 1; }
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonial-card > p {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.testimonial-author div strong {
  display: block;
  font-size: .95rem;
}
.testimonial-author div span {
  font-size: .82rem;
  color: var(--muted);
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,.85); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}
.contact-info .section-sub { margin-bottom: 32px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item-text { min-width: 0; }
.contact-item strong { font-size: .95rem; white-space: nowrap; margin-right: 6px; }
.contact-item span { color: var(--muted); font-size: .9rem; overflow-wrap: anywhere; }

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e1e6ea;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  background: #fafbfc;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--ink);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,145,47,.15);
  background: #fff;
}
.form-group textarea { resize: vertical; }

.form-submit { width: 100%; margin-top: 6px; }
.form-note {
  margin-top: 14px;
  font-size: .9rem;
  color: var(--green);
  font-weight: 600;
  min-height: 1.2em;
}

/* ============ PRIVACY POLICY PAGE ============ */
.policy-section { padding-top: 150px; }
.policy-head { text-align: left; margin: 0 0 40px; max-width: none; }
.policy-content {
  max-width: 820px;
  color: var(--ink);
}
.policy-content h3 {
  font-size: 1.2rem;
  margin: 36px 0 14px;
}
.policy-content h3:first-child { margin-top: 0; }
.policy-content p {
  color: var(--muted);
  margin-bottom: 14px;
}
.policy-content a { color: var(--gold-dark); text-decoration: underline; }
.policy-list {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
}
.policy-list li {
  list-style: disc;
  margin-bottom: 8px;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
  font-size: .92rem;
}
.policy-table th, .policy-table td {
  border: 1px solid #e1e6ea;
  padding: 12px 14px;
  text-align: left;
  color: var(--muted);
}
.policy-table th {
  background: var(--bg);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  margin-bottom: 16px;
}
.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-name {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-brand p { font-size: .9rem; max-width: 260px; }

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: .9rem;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
  font-size: .85rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-legal a,
.footer-legal-btn {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}
.footer-legal a:hover,
.footer-legal-btn:hover { color: var(--gold); }

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -8px 30px rgba(0,0,0,.25);
  padding: 20px 24px;
  transform: translateY(120%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-inner p {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  max-width: 720px;
  margin: 0;
}
.cookie-banner-inner a { color: var(--gold); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-ghost-dark {
  border-color: rgba(255,255,255,.3);
  color: #fff;
  background: transparent;
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */

/* Small laptops / narrow desktops: tighten header so nav always fits */
@media (max-width: 1180px) {
  .header-inner { gap: 16px; }
  .nav { gap: 18px; }
  .nav a { font-size: .88rem; }
  .header-cta { padding: 10px 18px; font-size: .82rem; }
  .brand-text { font-size: 1.05rem; }
}

/* Tablets (portrait & landscape) and small laptops */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .hero-pipe { display: none; }
  .scroll-cue { display: none; }
  .hero-panel { max-width: 380px; margin: 0 auto; padding: 28px 26px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .service-card:nth-child(7):last-child { grid-column: auto; }

  /* Switch to the mobile off-canvas menu as soon as the full nav no longer fits comfortably */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    padding: 100px 24px 40px;
    z-index: 1050;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav-mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  .nav-mobile-brand .brand-logo-frame { width: 56px; height: 56px; min-width: 56px; }
  .nav-mobile-brand-text {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
  }
  .nav-mobile-brand-text strong { font-weight: 700; }
  .nav a {
    color: #fff;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    opacity: .92;
  }
  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 8px;
    font-size: .95rem !important;
    font-weight: 600 !important;
    opacity: 1 !important;
  }

  .header-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .service-card:nth-child(7):last-child { grid-column: auto; }

  .cta-inner { text-align: center; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-logo-wrap { margin-inline: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .section { padding: 70px 0; }
  .hero { padding-top: 90px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-stats { flex-wrap: nowrap; justify-content: space-between; gap: 10px; width: 100%; }
  .stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    flex: 1;
    min-width: 0;
    white-space: normal;
    text-align: center;
    align-items: center;
  }
  .stat:last-child { padding-right: 0; margin-right: 0; }
  .stat-num, .stat-suffix { font-size: 1.4rem; }
  .stat-label { white-space: normal; font-size: .74rem; }
  .contact-form { padding: 26px; }
  .brand-logo-frame { width: 48px; height: 48px; min-width: 48px; padding: 4px; }
  .brand-text { font-size: .95rem; }
  .btn { padding: 13px 22px; font-size: .9rem; }
  .hero-content h1 { font-size: 1.9rem; }

  .hero-panel { max-width: 300px; margin-top: 26px; margin-bottom: 6px; padding: 24px 22px; }

  .contact-item { grid-template-columns: 38px 1fr; gap: 12px; }
  .contact-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; }
  .contact-icon svg { width: 17px; height: 17px; }
  .contact-item strong { font-size: .85rem; margin-right: 4px; }
  .contact-item span { font-size: .8rem; }

  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-banner-actions { width: 100%; justify-content: center; }

  #paslaugos::before, #apie::before, #procesas::before,
  #atsiliepimai::before, #kontaktai::before { width: 260px; height: 260px; }
}

@media (max-width: 360px) {
  .brand-text { display: none; }
  .contact-item strong { font-size: .78rem; }
  .contact-item span { font-size: .74rem; }
}
