/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  margin: 32px 0;
}
.faq-q {
  cursor: pointer;
  padding: 12px;
  border: 1px solid var(--ring);
  border-radius: 10px;
  background: var(--card);
  font-weight: 600;
  transition: 0.2s;
}
.faq-q:hover {
  background: var(--hover);
}
.faq-a {
  overflow: hidden;
  padding: 0 12px;
  border-left: 3px solid var(--primary);
  background: var(--bg);
  border-radius: 0 0 10px 10px;
}
.faq-a.open {
  padding: 12px;
  border-top: 1px solid var(--ring);
}

/* Persons */
.person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}
/* Hover effect global pe toate cardurile */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 2px solid transparent; /* fără contur vizibil inițial */
  border-radius: 12px; /* colțuri mai elegante */
}

.card:hover {
  transform: scale(1.05); /* zoom subtil */
  border: 2px solid #ffd700; /* contur galben pastel */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15); /* umbră soft pentru efect wow */
} /* Titluri secțiuni */
section h2 {
  text-align: center;
  font-family: "Poppins", sans-serif; /* sau Montserrat dacă vrei mai clean */
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a; /* negru soft */
  margin-bottom: 2rem;
  position: relative;
}

/* Linie decorativă subtilă sub titlu */
section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #007acc; /* albastru pastel (sau galben #FFD700) */
  margin: 0.8rem auto 0 auto;
  border-radius: 2px;
}
/*Stilizare footer */
.footer {
  background: #2c2c2c; /* gri închis */
  color: #f5f5f5;
  padding: 50px 0 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.9); /* umbră top */
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffd700; /* galben brand */
}

.footer-col p {
  margin: 5px 0;
  font-size: 14px;
}

.partners-footer img {
  max-height: 40px;
  margin: 0 10px;
  opacity: 0.8;
  transition: 0.3s;
}
.partners-footer img:hover {
  opacity: 1;
}

.btn-yellow {
  display: inline-block;
  margin-bottom: 15px;
  background: #ffd700;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
.btn-yellow:hover {
  background: #e6c200;
  transform: scale(1.05);
}

.socials a {
  color: #f5f5f5;
  font-size: 22px;
  margin: 0 8px;
  transition: 0.3s;
}
.socials a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #000000;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}
/* ===== Footer bar subțire, pe o singură linie ===== */
.footer-bar {
  background: #2b2f33; /* gri închis, prietenos cu albastrul */
  color: #e9eef3;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.9);
}

.footer-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px; /* subțire */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-contact span {
  opacity: 0.95;
  white-space: nowrap;
}

.footer-partners img {
  height: 50px;
  opacity: 0.9;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.footer-partners img:hover {
  opacity: 1;
  filter: none;
}

/* Socials ca text-icon; dacă ai fontawesome real, se vor înlocui automat */
.footer-social a {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
  color: #e9eef3;
}
.footer-social a:hover {
  transform: translateY(-2px);
  opacity: 1;
  color: #ffd700; /* accent galben la hover */
}
.footer-social .dot {
  opacity: 0.4;
}
.footer-social .copy {
  opacity: 0.7;
}

/* separatori punct să nu fie prea puternici */
.footer-contact span:nth-child(2),
.footer-contact span:nth-child(4),
.footer-social .dot {
  color: #cfd6dc;
}

/* Responsiv: pe ecrane mici, aranjament pe 2 rânduri */
@media (max-width: 820px) {
  .footer-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }
  .footer-item {
    font-size: 13.5px;
  }
  .footer-partners img {
    height: 22px;
  }
}
/* ===== Footer bar – upgrade: text mai mare, buton, umbră clară ===== */
.footer-bar {
  background: #000000; /* gri care merge cu albastrul paginii */
  color: #e9eef3;
  position: relative;
  box-shadow: 0 -16px 40px #000000; /* umbră vizibilă sub FAQ */
}

/* „fâșie” de tranziție întunecată chiar deasupra footerului */
.footer-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
  background: linear-gradient(to bottom, #000000, #000000);
  pointer-events: none;
}

.footer-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px; /* bară subțire, dar aerisită */
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* stânga | centru | dreapta */
  align-items: center;
  gap: 20px;
}

.footer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 15.5px; /* mărim puțin textul */
  line-height: 1.35;
}

/* Contact scurt: punctele separatoare mai discrete */
.footer-contact span:nth-child(2),
.footer-contact span:nth-child(4),
.footer-social .dot {
  color: #cfd6dc;
  opacity: 0.7;
}

/* Logo-uri parteneri – mici și elegante */
.footer-partners img {
  height: 26px;
  opacity: 0.9;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}
.footer-partners img:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
}

/* Socials (dacă folosești fontawesome real, se vor înlocui automat) */
.footer-social a {
  text-decoration: none;
  color: #e9eef3;
  font-size: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  color: #ffd700;
}

/* Buton Book a call – compact, în ton cu brandul */
.btn-book {
  display: inline-block;
  background: #000;
  color: #1b1b1b;
  padding: 8px 14px;
  border-radius: 999px; /* pastilă */
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 215, 0, 0.45);
  background: #aaa;
}

/* Responsive – pe ecrane mici trecem pe o singură coloană */
@media (max-width: 820px) {
  .footer-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }
  .footer-item {
    font-size: 14px;
  }
  .footer-partners img {
    height: 22px;
  }
  .btn-book {
    font-size: 13.5px;
    padding: 7px 12px;
  }
}
/* ——— Tranziție FAQ → footer (wave compact & subtil) ——— */
.footer-wave {
  display: block;
  height: 44px; /* mai scurt & curat */
  position: relative;
  /* curbă joasă, pe toată lățimea, în culoarea #2b2f33 */
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'><path fill='%232b2f33' d='M0,50 C240,90 480,10 720,40 C960,70 1200,55 1440,35 L1440,90 L0,90 Z'/></svg>")
    center bottom / 100% 100% no-repeat;
}

/* dizolvare fină din albastru pastel în griul footerului */
.footer-wave::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
  background: linear-gradient(
    to bottom,
    rgba(233, 238, 243, 0.92),
    rgba(233, 238, 243, 0)
  );
}

/* linie optică extrem de discretă pe muchie (fără „tăietură”) */
.footer-wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: #000000;
  filter: blur(0.3px);
}

/* opțional: micșorăm puțin umbra footerului ca să nu bată peste wave */
.footer-bar {
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.22);
}
:root {
  --header-h: 56px;
  --accent: #ffd700;
  --ink: #0f172a;
}
/* Site headerbar */
/* ===== HEADER DARK + BLUR peste hero, solid la scroll ===== */
:root {
  --header-h: 56px;
  --accent: #ffd700;
  --ink: #e9eef3;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 60;
  backdrop-filter: saturate(160%) blur(10px);
  background: rgba(
    0,
    0,
    0,
    0.9
  ); /* gri închis (ca footerul), ușor transparent */
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
  color: #fff;
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s, color 0.2s;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.9); /* mai opac la scroll */
  border-bottom-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.header-spacer {
  height: var(--header-h);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}
.brand img {
  height: 30px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

/* nav centru */
.main-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
}
.nav-link {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  opacity: 0.95;
}
.nav-link:hover {
  opacity: 1;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* acțiuni dreapta */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.btn-cta {
  background: var(--accent);
  color: #111;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(255, 215, 0, 0.35);
  transition: transform 0.18s, box-shadow 0.18s, background-color 0.18s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 215, 0, 0.5);
  background: #f1cb00;
}

/* burger */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  margin: 7px 6px;
  background: #fff;
  transition: 0.2s;
}

/* meniu mobil – dark ca header-ul */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9); /* întunecat */
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 10px;
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.mobile-nav .btn-cta {
  align-self: flex-start;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
:root {
  --header-h: 100px; /* creștem puțin înălțimea header-ului (default era ~60px) */
}

.brand img {
  height: 52px; /* logo mai mare pe desktop */
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* pe mobil îl facem puțin mai mic, să nu ocupe prea mult */
@media (max-width: 768px) {
  :root {
    --header-h: 66px; /* mai compact pe mobil */
  }

  .brand img {
    height: 38px;
  }
}
.brand img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

/* responsive */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: inline-block;
  }
}
.footer-partners a img {
  max-height: 80px; /* ajustează după preferință: 40px, 60px etc. */
  width: auto;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-partners a img:hover {
  opacity: 1;
  transform: scale(1.05);
}
/* === DESPRE — bandă pastel și accente discrete === */
.about-band {
  position: relative;
  padding: 48px 0 10px;
}
.about-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  background: linear-gradient(180deg, #eef4fa 0%, rgba(238, 244, 250, 0) 100%);
  z-index: -1;
}
.about-band::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    120px 120px at 70% 30%,
    rgba(255, 215, 0, 0.22),
    transparent 60%
  );
  filter: blur(6px);
  z-index: -1;
}

/* carduri mari mai „premium” */
.card-xl {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.07);
  padding: 36px 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.card-xl:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.1);
}

/* titlu card cu bară animată */
.card-xl h3 {
  font-size: clamp(26px, 3vw, 32px);
  margin: 0 0 14px;
  position: relative;
}
.card-xl h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 3px;
  background: #007acc;
  margin-top: 10px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.card-xl:hover h3::after {
  transform: scaleX(1);
}

/* icon de colț (SVG sau emoji discret) */
.card-icon {
  font-size: 22px;
  opacity: 0.85;
  margin-right: 8px;
}

/* grid 2 coloane pe desktop */
.about-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}
@media (min-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.kpi-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px auto 6px;
  max-width: 900px;
}
.kpi {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.06);
}
.kpi b {
  font-size: 22px;
}
.kpi span {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-top: 6px;
}
@media (max-width: 720px) {
  .kpi-bar {
    grid-template-columns: 1fr;
  }
}
/* ===== Team slider ===== */
.team-slider {
  position: relative;
  margin-top: 12px;
}
.ts-viewport {
  overflow: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 6px 16px;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 28px,
    #000 calc(100% - 28px),
    transparent 100%
  );
}
.team-row {
  display: flex;
  gap: 18px;
  align-items: stretch;
}
.team-card {
  flex: 0 0 clamp(240px, 28vw, 320px); /* lățimea fiecărui card */
  scroll-snap-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.2s ease;
  border: 2px solid transparent;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.1);
  border-color: #ffd700; /* highlight brand */
}
.team-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}
.team-card h3 {
  margin: 6px 6 4px;
  font-size: 18px;
}
.team-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

/* butoane nav */
.ts-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.2);
  cursor: pointer;
  font-size: 22px;
  line-height: 40px;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
  z-index: 2;
}
.ts-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.28);
}
.ts-prev {
  left: -6px;
}
.ts-next {
  right: -6px;
}

/* ascunde bara de scroll vizibilă, păstrând funcția */
.ts-viewport::-webkit-scrollbar {
  height: 0;
}
@-moz-document url-prefix() {
  .ts-viewport {
    scrollbar-width: none;
  }
}

/* responsive: pe ecrane foarte mici cardul mai îngust */
@media (max-width: 520px) {
  .team-card {
    flex-basis: 82vw;
  }
}
/* --- 1) Card header accent + icon în cerc --- */
.card-xl h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 14px;
  position: relative;
}
.card-xl h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 3px;
  width: 64px;
  background: #007acc;
  border-radius: 2px;
  opacity: 0.85;
}
.card-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0, #f3f7ff 100%);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.06);
  font-size: 18px;
}

/* --- 2) Bullets elegante în Misiune --- */
.card-list {
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
}
.card-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 8px 0;
}
.card-list li::before {
  content: "✔";
  color: #f2c200;
  font-weight: 800;
  margin-top: 1px;
}

/* --- 3) KPI cu gradient subtil și hover ușor --- */
.kpi {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(2, 6, 23, 0.06);
}
.kpi b {
  letter-spacing: 0.2px;
}
.kpi:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.1);
}

/* --- 4) Chip-uri „valori” --- */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: -8px 0 26px;
}
.chip {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 122, 204, 0.08);
  color: #0a2a4a;
  border: 1px solid rgba(0, 122, 204, 0.15);
}

/* --- 5) Mini‑CTA la baza secțiunii --- */
.section-cta {
  margin: 30px auto 0;
  max-width: 880px;
  background: #111827;
  color: #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.18);
}
.section-cta .btn-ghost {
  background: #ffd700;
  color: #111;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(255, 215, 0, 0.35);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.section-cta .btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.45);
}

/* responsiv mic */
@media (max-width: 720px) {
  .section-cta {
    flex-direction: column;
    text-align: center;
  }
} /* ===== Slider Servicii ===== */
.services .subtitle {
  color: #566;
  margin-bottom: 22px;
}

.srv-slider {
  position: relative;
  margin-top: 8px;
}
.srv-viewport {
  overflow: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 6px 16px;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 24px,
    #000 calc(100% - 24px),
    transparent 100%
  );
}
.srv-row {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.srv-card {
  flex: 0 0 clamp(260px, 30vw, 340px);
  scroll-snap-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(2, 6, 23, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.18s ease;
}
.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.12);
  border-color: #ffd700;
}
.srv-card h3 {
  font-size: 18px;
  margin: 0 0 25px;
  color: #0f172a;
}
.srv-card p {
  margin: 6px 0;
  color: #475569;
}
.srv-card .price {
  margin-top: 8px;
  color: #0f172a;
}
.srv-list {
  margin: 0;
  padding-left: 16px;
  color: #475569;
}
.srv-list li {
  margin: 6px 0;
}

/* butoane navigație */
.srv-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
  z-index: 2;
}
.srv-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.24);
}
.srv-prev {
  left: -6px;
}
.srv-next {
  right: -6px;
}

/* ascundem bara de scroll vizibilă */
.srv-viewport::-webkit-scrollbar {
  height: 0;
}
@-moz-document url-prefix() {
  .srv-viewport {
    scrollbar-width: none;
  }
}

/* responsive */
@media (max-width: 560px) {
  .srv-card {
    flex-basis: 86vw;
  }
}
/* Layout */
.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr 1fr; /* formular puțin mai lat */
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.card.contact-card {
  background: var(--surface);
  border: 1px solid var(--ring);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.06);
}

/* Form */
#contactForm label {
  display: block;
  font-weight: 600;
  margin: 10px 0 6px;
}
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
  width: 100%;
  border: 1px solid var(--ring);
  background: var(--card);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  transition: border 0.2s, box-shadow 0.2s, background-color 0.2s;
}
#contactForm textarea {
  resize: vertical;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #007acc;
  box-shadow: 0 0 0 4px rgba(0, 122, 204, 0.15);
}

/* Honeypot ascuns */
#contactForm .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

/* Butoane */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 18px rgba(255, 215, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.45);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--ring);
  color: var(--ink);
}
.btn-ghost:hover {
  background: rgba(2, 6, 23, 0.04);
}

/* Mesaj UX */
.form-note {
  margin-top: 10px;
  min-height: 1.2em;
  color: var(--muted);
}
.form-note.ok {
  color: #0f7b0f;
}
.form-note.err {
  color: #b00020;
}

/* Hartă + info */
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}
.contact-info {
  display: grid;
  gap: 6px;
  margin: 8px 0 4px;
}
.contact-info a {
  color: var(--ink);
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

.contact-cta {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.contact-info {
  display: grid;
  gap: 6px;
  margin: 8px 0 4px;
  color: #000; /* text negru */
}

.contact-info a {
  color: #000; /* linkuri negre */
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.contact-cta a {
  color: #000; /* text negru */
  font-weight: 600; /* optional, să iasă mai în evidență */
  text-decoration: none;
}

.contact-cta a:hover {
  text-decoration: underline; /* sau poți folosi alt efect */
}

/* Buton sticky pe mobil (opțional) */
@media (max-width: 640px) {
  .btn-primary[type="submit"] {
    position: sticky;
    bottom: 14px;
  }
}
