/* ══════════════════════════════════════
   STOICA FORAJE — Design System
   ══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --navy:    #0D1E2C;
  --navy2:   #122840;
  --teal:    #0FA3B1;
  --teal2:   #0C8A96;
  --white:   #FFFFFF;
  --light:   #F4F8FA;
  --border:  #E2EBF0;
  --text:    #1A2B38;
  --muted:   #6B8394;
  --green:   #22C55E;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* zoom 125% pe desktop */
@media (min-width: 800px) {
  html { zoom: 1.25; }
}

/* responsive 2-col grid */
.grid-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
@media (max-width: 700px) {
  .grid-2col { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── NAVBAR ────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav-logo {
  font-size: 1.25rem; font-weight: 800;
  color: var(--white); letter-spacing: -.01em;
  white-space: nowrap;
}
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-phone {
  display: flex; align-items: center; gap: .45rem;
  background: var(--teal); color: var(--white);
  font-weight: 700; font-size: .88rem;
  padding: .55rem 1.2rem; border-radius: 6px;
  white-space: nowrap;
  transition: background .2s;
}
.nav-phone:hover { background: var(--teal2); }
.nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }

/* burger */
.burger {
  display: none;
  align-items: center; gap: .45rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 7px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .45rem .9rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
  line-height: 1;
}
.burger:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.burger.open  { background: var(--teal); border-color: var(--teal); }
.burger svg   { width: 17px; height: 17px; flex-shrink: 0; }

.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 499;
  background: var(--navy);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  padding-top: 64px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,.75);
  transition: color .2s;
}
.mob-menu a:hover, .mob-menu a.active { color: var(--white); }
.mob-menu .mob-tel {
  display: flex; align-items: center; gap: .6rem;
  background: var(--teal); color: var(--white);
  font-size: 1rem; font-weight: 700;
  padding: .8rem 2rem; border-radius: 8px; margin-top: 1rem;
}
.mob-menu .mob-close {
  position: absolute; top: 1rem; right: 5%;
  display: flex; align-items: center; gap: .4rem;
  background: transparent; border: 2px solid rgba(255,255,255,.3);
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .45rem .9rem; border-radius: 7px; cursor: pointer;
  transition: border-color .2s;
}
.mob-menu .mob-close:hover { border-color: var(--white); }

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-phone { display: none !important; }
  .burger { display: flex; }
}

/* ── PAGE HERO ──────────────── */
.page-hero {
  padding: 5.5rem 5% 3.5rem;
  background: var(--navy2);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--teal);
}
.page-hero-label {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .6rem;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.15; margin-bottom: .6rem;
}
.page-hero-sub {
  font-size: .95rem; color: rgba(255,255,255,.5);
  max-width: 500px; line-height: 1.65;
}

/* ── SECTIONS ──────────────── */
.section { padding: 5rem 5%; }
.section.light { background: var(--light); }
.section.dark  { background: var(--navy); }
.section.dark2 { background: var(--navy2); }
.section-label {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--text);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-title.white { color: var(--white); }
.section-sub {
  font-size: .95rem; color: var(--muted);
  max-width: 540px; line-height: 1.7; margin-bottom: 3rem;
}
.section-sub.white { color: rgba(255,255,255,.55); }

/* ── BUTTONS ───────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  border-radius: 8px; cursor: pointer; border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-lg { font-size: 1rem; padding: .95rem 2rem; }
.btn-md { font-size: .88rem; padding: .75rem 1.5rem; }
.btn-sm { font-size: .8rem; padding: .55rem 1.1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-teal   { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal2); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(15,163,177,.4); }
.btn-white  { background: var(--white); color: var(--navy); }
.btn-white:hover { background: #e8f4f6; }
.btn-outline{ background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-wa     { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1dab52; transform: translateY(-1px); }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); }

/* ── STATS BAND ────────────── */
.stats-band {
  background: var(--teal);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--white);
  line-height: 1; margin-bottom: .3rem;
}
.stat-lbl { font-size: .8rem; color: rgba(255,255,255,.75); font-weight: 500; }
@media (max-width: 560px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.2); }
}

/* ── SERVICE CARDS ─────────── */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.service-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 12px; padding: 2.2rem;
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(15,163,177,.12);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px; background: #E8F7F9;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 26px; height: 26px; color: var(--teal); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .4rem; }
.service-depth {
  display: inline-block; background: var(--teal);
  color: var(--white); font-size: .78rem; font-weight: 700;
  padding: .2rem .75rem; border-radius: 4px; margin-bottom: 1rem;
}
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.service-features { display: flex; flex-direction: column; gap: .4rem; }
.service-feat {
  display: flex; align-items: center; gap: .6rem;
  font-size: .84rem; color: var(--text); font-weight: 500;
}
.service-feat svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
@media (max-width: 640px) { .service-cards { grid-template-columns: 1fr; } }

/* ── STEPS ─────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.step {
  text-align: center; padding: 1.8rem 1.2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.step p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .steps { grid-template-columns: 1fr; } }

/* ── GALLERY ───────────────── */
.gallery-grid { columns: 3; gap: 12px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 12px;
  border-radius: 10px; overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-item img, .gallery-item video {
  width: 100%; display: block; transition: transform .4s;
}
.gallery-item video { aspect-ratio: 9/16; object-fit: cover; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.04); }
.gallery-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.2);
}
.gallery-play svg { width: 44px; height: 44px; color: #fff; }
@media (max-width: 680px) { .gallery-grid { columns: 2; } }
@media (max-width: 400px) { .gallery-grid { columns: 1; } }

/* ── CTA BLOCK ─────────────── */
.cta-block { background: var(--teal); padding: 4rem 5%; text-align: center; }
.cta-block h2 { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; color: var(--white); margin-bottom: .6rem; }
.cta-block p { font-size: .95rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────── */
.footer { background: var(--navy); }
.footer-main {
  padding: 3rem 5% 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: .8rem; }
.footer-brand .logo span { color: var(--teal); }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.65; }
.footer-brand .footer-phone {
  display: flex; align-items: center; gap: .5rem;
  color: var(--teal); font-weight: 700; font-size: 1.1rem;
  margin-top: 1rem;
}
.footer-col h4 { font-size: .85rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .8rem;
}
.footer-bottom span { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-legal a:hover { color: var(--teal); }
@media (max-width: 700px) { .footer-main { grid-template-columns: 1fr; gap: 2rem; } }

/* ── FLOAT WA ──────────────── */
.float-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 400;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; color: #fff; }

/* ── LIGHTBOX ──────────────── */
.lb { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.93); align-items: center; justify-content: center; }
.lb.on { display: flex; }
.lb-media { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
.lb-x { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* ── COOKIE BANNER ─────────── */
.cookie-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: var(--navy2);
  border-top: 3px solid var(--teal);
  padding: 1rem 5%;
  align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.cookie-bar p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.55; }
.cookie-bar a { color: var(--teal); font-weight: 600; }
.cookie-btns { display: flex; gap: .7rem; flex-shrink: 0; }
.cookie-btns button {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem; font-weight: 700;
  padding: .5rem 1.2rem; border-radius: 6px; cursor: pointer; border: none;
}
.btn-accept { background: var(--teal); color: var(--white); }
.btn-reject { background: transparent; color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.2) !important; }

/* ── LEGAL PAGES ───────────── */
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 5% 5rem; }
.legal-content h2 {
  font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin: 2.5rem 0 .6rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--border);
}
.legal-content p { font-size: .92rem; color: #4A5F6E; line-height: 1.85; margin-bottom: .8rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: .9rem; color: #4A5F6E; line-height: 1.75; margin-bottom: .3rem; }
.legal-content .date { font-size: .8rem; color: var(--muted); font-weight: 600; margin-bottom: 2rem; }
.legal-contact {
  background: var(--light); border-left: 4px solid var(--teal);
  padding: 1.2rem 1.5rem; border-radius: 6px; margin-top: 2rem;
  font-size: .88rem; color: #4A5F6E; line-height: 1.7;
}
.legal-contact a { color: var(--teal); font-weight: 600; }
.c-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .85rem; }
.c-table th { background: var(--light); text-align: left; padding: .75rem 1rem; font-weight: 700; color: var(--text); border-bottom: 2px solid var(--teal); }
.c-table td { padding: .7rem 1rem; color: #4A5F6E; border-bottom: 1px solid var(--border); }
.c-table tr:last-child td { border-bottom: none; }
.badge-r { background: #E8F7F9; color: var(--teal); font-size: .72rem; font-weight: 700; padding: .15rem .5rem; border-radius: 4px; }
.badge-o { background: var(--light); color: var(--muted); font-size: .72rem; font-weight: 700; padding: .15rem .5rem; border-radius: 4px; }