/* ═══════════════════════════════════════════════════════════════
   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;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* ── 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; } }

/* Meniu mobil — scroll dacă e prea lung, spațiu pentru bara sticky de jos */
@media (max-width: 991.98px) {
  #navMain {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 100px; /* spațiu deasupra barei sticky (WhatsApp + programare) */
  }
}

.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: #c96347;
  border-color: #c96347;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: .75rem 1.6rem;
  box-shadow: 0 4px 14px rgba(185,86,64,.28);
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn-lavet:hover,
.btn-lavet:focus {
  background: #b85640;
  border-color: #b85640;
  color: #fff;
  box-shadow: 0 6px 20px rgba(185,86,64,.38);
  transform: translateY(-1px);
}
.btn-lavet:active {
  transform: scale(.97);
  box-shadow: 0 2px 8px rgba(185,86,64,.22);
}

.btn-lavet-outline {
  background: transparent;
  border: 2px solid #c96347;
  color: #c96347;
  font-weight: 700;
  border-radius: 10px;
  padding: .75rem 1.6rem;
  transition: background .2s, color .2s, transform .15s;
}
.btn-lavet-outline:hover,
.btn-lavet-outline:focus {
  background: #c96347;
  color: #fff;
  border-color: #c96347;
  transform: translateY(-1px);
}
.btn-lavet-outline:active {
  transform: scale(.97);
}

/* 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: 260px;
    order: 2;
  }
  .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: right center;
  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;
}

/* ─── PROGRAMELE LAVET — carduri homepage ────────────────── */
.hp-prog-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 22px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .22s, transform .22s;
}
.hp-prog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  transform: translateY(-4px);
  color: inherit;
}
.hp-prog-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.icon-junior  { background: #e8f5e9; color: #2e7d32; }
.icon-prev    { background: #e3f2fd; color: #1565c0; }
.icon-senior  { background: #fce4ec; color: #880e4f; }
.icon-felino  { background: #f3e5f5; color: #6a1b9a; }
.hp-prog-badge {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 999px;
  margin-bottom: .85rem;
  width: fit-content;
}
.badge-junior { background: #e8f5e9; color: #2e7d32; }
.badge-prev   { background: #e3f2fd; color: #1565c0; }
.badge-senior { background: #fce4ec; color: #880e4f; }
.badge-felino { background: #f3e5f5; color: #6a1b9a; }
.hp-prog-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  margin-bottom: .5rem;
}
.hp-prog-desc {
  font-size: .875rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 .9rem;
}
.hp-prog-price {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  margin: .4rem 0 .8rem;
}
.hp-prog-price span {
  font-size: .78rem;
  font-weight: 600;
  color: #888;
}
.hp-prog-footer {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: auto;
  flex-wrap: wrap;
}
.hp-prog-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .83rem;
  font-weight: 700;
  color: var(--lavet-dark);
  text-decoration: none;
}
.hp-prog-link:hover { text-decoration: underline; }
.hp-prog-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .28rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .18s, transform .18s;
  white-space: nowrap;
}
.hp-prog-cta:hover {
  opacity: .85;
  transform: scale(1.04);
  text-decoration: none;
}
.hp-prog-cta-junior { background: #2e7d32; color: #fff !important; }
.hp-prog-cta-prev   { background: #1565c0; color: #fff !important; }
.hp-prog-cta-senior { background: #880e4f; color: #fff !important; }
.hp-prog-cta-felino { background: #6a1b9a; color: #fff !important; }

/* ─── PHOTO STRIP animăluțe ──────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  height: 240px;
  gap: 3px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Clădire noapte — crop focusat semn+intrare+scări */
.strip-noapte {
  object-fit: cover !important;
  object-position: center center;
  background: #07080f;
}

/* ─── CLINICA EXTERIOR ───────────────────────────────────── */
.clinica-exterior {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.clinica-exterior img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.clinica-exterior-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.25) 45%,
    transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 3rem;
}
.clinica-exterior-content {
  color: #fff;
}
.clinica-exterior-eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .5rem;
}
.clinica-exterior-adresa {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.clinica-exterior-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.clinica-exterior-btn-maps {
  background: #fff;
  color: var(--lavet-dark);
  padding: .6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
  transition: background .15s;
}
.clinica-exterior-btn-maps:hover { background: #f3e9e7; color: var(--lavet-dark); }
.clinica-exterior-btn-tel {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
  transition: background .15s;
}
.clinica-exterior-btn-tel:hover { background: rgba(255,255,255,.25); color: #fff; }
@media (max-width: 767.98px) {
  .clinica-exterior { height: 280px; }
  .clinica-exterior-overlay { padding: 1.5rem; }
  .clinica-exterior-adresa { font-size: 1.15rem; }
}

/* ─── 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; }
}

/* Social footer text */
.footer-social-text {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin-bottom: .75rem;
  max-width: 260px;
}
/* ── Cross-sell Programele LaVet (service pages) ─────────────────────── */
.crosssell-programe {
  background: linear-gradient(120deg, #f5d4c4 0%, #fce8df 100%);
  border: 1.5px solid #d4896f;
  border-left: 5px solid var(--lavet-dark);
  border-radius: 18px;
  padding: 2rem 2rem;
  box-shadow: 0 6px 24px rgba(185, 90, 65, 0.13);
}
.crosssell-programe .cs-icon {
  width: 52px;
  height: 52px;
  background: var(--lavet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
  color: #fff;
}
.crosssell-programe .cs-pills span {
  display: inline-block;
  background: #fff;
  border: 1px solid #d4896f;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--lavet-dark);
  padding: .22rem .7rem;
}
.crosssell-programe .btn-cs {
  background: var(--lavet-dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  padding: .6rem 1.4rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.crosssell-programe .btn-cs:hover {
  background: #b85e4a;
  color: #fff;
  transform: translateY(-1px);
}
/* TikTok icon sizing */
.footer-social .fa-tiktok { font-size: .95rem; }

/* Footer social icons — brand colors */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.footer-social a:hover { transform: translateY(-3px); opacity: .85; }
.footer-social a[aria-label="Facebook LaVet"]  { background: #1877f2; color: #fff; }
.footer-social a[aria-label="Instagram LaVet"] { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.footer-social a[aria-label="TikTok LaVet"]    { background: #010101; color: #fff; }
