/* ═══════════════════════════════════════════════════════════════
   LaVet Medical — Global Stylesheet
   Versiune: 2.0 — Iulie 2026
   Acest fișier este inclus pe TOATE paginile site-ului.
   Nu modifica stiluri specifice paginii aici.
═══════════════════════════════════════════════════════════════ */

/* ── Variabile brand ── */
:root {
  --lavet:       #e29a8a;
  --lavet-dark:  #d17662;
  --lavet-light: #f9e7e3;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1a1a2e;
}

/* ── Logo ── */
.logo-img {
  height: 95px;
  width: auto;
  border: none !important;
  outline: none;
  box-shadow: none !important;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .logo-img { height: 75px; }
}

@media (max-width: 575px) {
  .logo-img { height: 65px; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.navbar.sticky-top { position: sticky; top: 0; z-index: 1020; }
@media (min-width: 992px) { .d-lg-sticky { position: sticky; } }

.nav-cta {
  background: var(--lavet);
  color: #fff !important;
  border-radius: 999px;
  padding: .5rem 1.1rem !important;
  font-weight: 700;
  transition: background .2s;
}
.nav-cta:hover { background: var(--lavet-dark) !important; }

/* ═══════════════════════════════════════════════════════════════
   BUTOANE
═══════════════════════════════════════════════════════════════ */
.btn-lavet {
  background: var(--lavet);
  border-color: var(--lavet);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: .75rem 1.6rem;
  transition: background .2s, border-color .2s;
}
.btn-lavet:hover,
.btn-lavet:focus {
  background: var(--lavet-dark);
  border-color: var(--lavet-dark);
  color: #fff;
}

.btn-lavet-outline {
  background: transparent;
  border: 2px solid var(--lavet);
  color: var(--lavet-dark);
  font-weight: 700;
  border-radius: 10px;
  padding: .75rem 1.6rem;
  transition: background .2s, color .2s;
}
.btn-lavet-outline:hover,
.btn-lavet-outline:focus {
  background: var(--lavet);
  color: #fff;
  border-color: var(--lavet);
}

/* Buton outline alb — pe fundaluri întunecate/colorate */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: .75rem 1.6rem;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: #fff;
}

/* Butoane mici — mobile sticky bar */
@media (max-width: 991.98px) {
  .btn-lavet, .btn-lavet-outline { padding: .65rem 1.1rem; font-size: .9rem; }
}

/* ═══════════════════════════════════════════════════════════════
   TIPOGRAFIE SECȚIUNI
═══════════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  background: var(--lavet-light);
  color: var(--lavet-dark);
  border-radius: 999px;
  padding: .3rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .9rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111;
}

.section-subtitle {
  color: #666;
  font-size: 1.05rem;
  max-width: 580px;
}

/* ═══════════════════════════════════════════════════════════════
   CARDURI
═══════════════════════════════════════════════════════════════ */
.card-soft {
  border: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  border-radius: 18px;
  background: #fff;
}

/* Badge rotund roz */
.badge-soft {
  background: rgba(226,154,138,.12);
  color: var(--lavet-dark);
  border-radius: 999px;
  font-weight: 700;
}

/* Fundal roz deschis */
.bg-soft { background: var(--lavet-light); }

/* ═══════════════════════════════════════════════════════════════
   HERO SERVICII — fundal gradient roz (pagini de serviciu)
═══════════════════════════════════════════════════════════════ */
.service-hero {
  background: linear-gradient(135deg, var(--lavet-light) 0%, #fff 100%);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO — split 50/50 cu fotografie (despre + toate serviciile)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 540px;
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem 4rem 3rem;
  background: #fdf6f4;
}
.page-hero-photo {
  position: relative;
  overflow: hidden;
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Trust bullets în hero */
.hero-check-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 2rem;
}
.hero-check-list .hcl-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: #555;
}
.hero-check-list .hcl-item i {
  color: var(--lavet-dark);
  font-size: .85rem;
  flex-shrink: 0;
}

/* Titlu hero pagini */
.page-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
  color: #111;
  margin-bottom: 1.1rem;
}
.page-hero-title span { color: var(--lavet-dark); }

.page-hero-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

/* Breadcrumb în hero */
.page-hero .breadcrumb { margin-bottom: 1.1rem; }
.page-hero .breadcrumb-item a {
  color: var(--lavet-dark);
  text-decoration: none;
}
.page-hero .breadcrumb-item.active { color: #888; }

/* Badge urgente (roșu) */
.page-hero-urgente {
  background: #fdf2f2;
}
.page-hero-urgente .page-hero-text {
  background: #fdf2f2;
}

@media (max-width: 991.98px) {
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero-photo {
    height: 300px;
    order: -1;
  }
  .page-hero-photo img { object-position: center 25%; }
  .page-hero-text {
    padding: 2.5rem 1.25rem 2rem;
  }
  .page-hero-title { font-size: 1.75rem; }
  .page-hero-desc { font-size: .95rem; }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════ */
.trust-bar { background: #111; color: #fff; }
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.2rem 0;
}
.trust-bar-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(226,154,138,.2);
  display: grid; place-items: center;
  color: var(--lavet);
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-bar-label strong { display: block; font-size: .95rem; font-weight: 800; }
.trust-bar-label span  { font-size: .75rem; color: #aaa; }
.trust-bar-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
  margin: .5rem 0;
}
@media (max-width: 575.98px) {
  .trust-bar-item { padding: .9rem 0; }
  .trust-bar-label strong { font-size: .82rem; }
  .trust-bar-label span  { font-size: .7rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ACCORDION (FAQ)
═══════════════════════════════════════════════════════════════ */
.accordion-button:not(.collapsed) {
  background: var(--lavet-light);
  color: #2f2430;
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }

/* Tip card (sfat lateral) */
.tip-card {
  border-left: 4px solid var(--lavet);
  border-radius: 0 12px 12px 0;
  background: #fffaf8;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER COMPLET
═══════════════════════════════════════════════════════════════ */
footer.lavet-footer {
  background: #fff;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid #eee;
}
footer.lavet-footer .footer-brand-text {
  font-size: .92rem;
  color: #666;
  line-height: 1.6;
}
footer.lavet-footer .footer-social a {
  color: #999;
  font-size: 1rem;
  transition: color .2s;
}
footer.lavet-footer .footer-social a:hover { color: var(--lavet-dark); }
footer.lavet-footer .footer-col-title {
  font-weight: 800;
  font-size: .95rem;
  color: #111;
  margin-bottom: 1rem;
}
footer.lavet-footer ul.footer-links li { margin-bottom: .5rem; }
footer.lavet-footer ul.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
footer.lavet-footer ul.footer-links a:hover { color: var(--lavet-dark); }
footer.lavet-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: #666;
  margin-bottom: .55rem;
}
footer.lavet-footer .footer-contact-item i {
  color: var(--lavet-dark);
  margin-top: .15rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
footer.lavet-footer .footer-contact-item a {
  color: #666;
  text-decoration: none;
}
footer.lavet-footer .footer-contact-item a:hover { color: var(--lavet-dark); }
footer.lavet-footer .footer-bottom {
  border-top: 1px solid #f0f0f0;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: .82rem;
  color: #aaa;
}
footer.lavet-footer .footer-bottom a {
  color: #aaa;
  text-decoration: none;
}
footer.lavet-footer .footer-bottom a:hover { color: var(--lavet-dark); }

/* ═══════════════════════════════════════════════════════════════
   STICKY CALL BAR (mobil)
═══════════════════════════════════════════════════════════════ */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1050;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -3px 16px rgba(0,0,0,.10);
  padding: .55rem 1rem;
  gap: .5rem;
}
@media (max-width: 767.98px) {
  .sticky-call-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
  padding: 1rem 1.5rem;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.cookie-text { font-size: .88rem; color: #444; flex: 1; min-width: 240px; }
.cookie-links { margin-top: .3rem; }
.cookie-links a { color: var(--lavet-dark); font-size: .8rem; text-decoration: underline; }
.cookie-actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL CORAL (secțiune de jos cu gradient)
═══════════════════════════════════════════════════════════════ */
.cta-final {
  background: linear-gradient(135deg, var(--lavet) 0%, var(--lavet-dark) 100%);
  color: #fff;
}

/* Butoane albe inversate — pentru secțiuni CTA colorate */
.cta-final .btn-white {
  background: #fff;
  color: var(--lavet-dark);
  border: none;
  font-weight: 700;
  border-radius: 10px;
  padding: .75rem 1.6rem;
  transition: background .2s;
}
.cta-final .btn-white:hover { background: #f5f5f5; color: var(--lavet-dark); }

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════════ */
.breadcrumb-item a { color: #888; text-decoration: none; }
.breadcrumb-item a:hover { color: var(--lavet-dark); }
.breadcrumb-item.active { color: var(--lavet-dark); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   HERO BADGE (pill roz sub hero)
═══════════════════════════════════════════════════════════════ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--lavet-light);
  color: var(--lavet-dark);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOTANT
═══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 90px;          /* deasupra sticky call bar pe mobil */
  right: 20px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: .65rem 1.1rem .65rem .85rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
  max-width: 200px;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  color: #fff;
}
.wa-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
/* Pe desktop — iconiță rotundă, fără text, poziție joasă */
@media (min-width: 992px) {
  .wa-float {
    padding: .75rem;
    border-radius: 50%;
    max-width: none;
    bottom: 28px;
    right: 28px;
  }
  .wa-float .wa-label { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITĂȚI
═══════════════════════════════════════════════════════════════ */
.text-lavet      { color: var(--lavet); }
.text-lavet-dark { color: var(--lavet-dark); }
.bg-lavet-light  { background: var(--lavet-light); }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Hero, servicii, Dr. Claudia, piloni, recenzii
═══════════════════════════════════════════════════════════════ */
/* ─── HERO ───────────────────────────────────────────────── */
.hp-hero {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 680px;
  max-height: 780px;
  height: calc(100vh - 96px);
}
.hp-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem 4rem 4rem;
  background: #fdf6f4;
}
.hp-hero-photo {
  position: relative;
  overflow: hidden;
}
.hp-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-award-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: .55rem .9rem;
  box-shadow: 0 2px 12px rgba(210,118,98,.18);
  max-width: 190px;
}
.hero-award-badge i {
  color: var(--lavet);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-award-badge strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}
.hero-award-badge span {
  display: block;
  font-size: .65rem;
  color: #888;
  line-height: 1.2;
}
.hp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--lavet-light);
  color: var(--lavet-dark);
  border-radius: 999px;
  padding: .32rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  width: fit-content;
}
.hp-hero-title {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 900;
  line-height: 1.13;
  color: #111;
  margin-bottom: 1.1rem;
}
.hp-hero-title span { color: var(--lavet-dark); }
.hp-hero-sub {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 1.6rem;
}
.hp-hero-checks {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}
.hp-hero-checks .ci {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: #444;
}
.hp-hero-checks .ci i { color: var(--lavet-dark); font-size: .82rem; flex-shrink: 0; }
.hp-hero-cta {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.hp-hero-mini-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.hp-hero-mini-trust .mt-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 900;
  color: #111;
  line-height: 1.1;
}
.hp-hero-mini-trust .mt-item span {
  font-size: .73rem;
  color: #999;
}
/* Award tag în hero */
.award-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff8e1;
  color: #92690a;
  border-radius: 999px;
  padding: .28rem .8rem;
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 1rem;
  width: fit-content;
}

@media (max-width: 991.98px) {
  .hp-hero {
    grid-template-columns: 1fr;
    min-height: auto; max-height: none; height: auto;
  }
  .hp-hero-photo { height: 260px; order: -1; }
  .hp-hero-photo img { object-position: center 35%; }
  .hp-hero-text { padding: 2.2rem 1.25rem 2rem; }
  .hp-hero-title { font-size: 1.8rem; }
  .hp-hero-sub { font-size: .95rem; margin-bottom: 1.2rem; }
  .hp-hero-mini-trust { display: none; }
}

/* ─── SECȚIUNEA DR. CLAUDIA ──────────────────────────────── */
.dr-photo-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.13);
  position: relative;
}
.dr-photo-wrap img { width: 100%; display: block; }
.dr-award-overlay {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.dr-award-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff8e1;
  display: flex; align-items: center; justify-content: center;
  color: #b8860b;
  font-size: .95rem;
  flex-shrink: 0;
}
.dr-spec-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.dr-spec-tag {
  background: var(--lavet-light);
  color: var(--lavet-dark);
  border-radius: 999px;
  padding: .22rem .7rem;
  font-size: .77rem;
  font-weight: 700;
}

/* ─── SERVICII HOMEPAGE ──────────────────────────────────── */
.hp-svc-card {
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 22px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .22s, transform .22s;
  text-decoration: none;
  color: inherit;
}
.hp-svc-card:hover {
  box-shadow: 0 12px 40px rgba(209,118,98,.2);
  transform: translateY(-4px);
  color: inherit;
}
.hp-svc-card img {
  width: 100%; height: 195px;
  object-fit: cover; display: block; flex-shrink: 0;
}
.hp-svc-card-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex; flex-direction: column; flex: 1;
}
.hp-svc-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--lavet-light);
  display: grid; place-items: center;
  color: var(--lavet-dark);
  font-size: .88rem;
  margin-bottom: .7rem;
}
.hp-svc-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: .35rem;
}
.hp-svc-card-desc {
  font-size: .85rem;
  color: #666;
  line-height: 1.55;
  flex: 1;
}
.hp-svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .9rem;
  font-size: .83rem;
  font-weight: 700;
  color: var(--lavet-dark);
}

/* ─── DE CE LAVET — 4 piloni ────────────────────────────── */
.pillar-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 3px 18px rgba(0,0,0,.07);
  height: 100%;
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--lavet-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--lavet-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.pillar-title {
  font-size: .97rem;
  font-weight: 800;
  color: #111;
  margin-bottom: .5rem;
}
.pillar-text {
  font-size: .85rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ─── PHOTO STRIP animăluțe ──────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 240px;
  gap: 3px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ─── URGENȚE ────────────────────────────────────────────── */
.urgente-hp {
  background: linear-gradient(135deg, #b71c1c, #c62828);
  color: #fff;
}

/* ─── REVIEWS ────────────────────────────────────────────── */
.review-card {
  background: #fff;
  border: 0;
  border-radius: 1.2rem;
  box-shadow: 0 4px 22px rgba(0,0,0,.07);
  padding: 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-stars { color: #f4b400; font-size: 1rem; letter-spacing: .06em; }
.review-text {
  font-size: .9rem;
  color: #444;
  line-height: 1.65;
  margin: .85rem 0 1rem;
  font-style: italic;
  flex: 1;
}
.review-author { font-size: .85rem; font-weight: 800; color: #111; }
.review-platform { font-size: .76rem; color: #aaa; }

/* ─── HILL'S ─────────────────────────────────────────────── */
.hills-hp {
  background: linear-gradient(135deg, #1a3a6e 0%, #1e4a8a 100%);
}

/* ─── CTA FINAL ──────────────────────────────────────────── */
.cta-hp {
  background: linear-gradient(135deg, var(--lavet) 0%, var(--lavet-dark) 100%);
}

@media (max-width: 767.98px) {
  .photo-strip { height: 180px; }
  .hp-svc-card img { height: 170px; }
}
