/* =============================================
   NUTU STYLE — style.css v3
   Cu filtre CSS pe imagini reale
   ============================================= */

:root {
  --gold: #C8A951;
  --gold-light: #DFC07A;
  --gold-dim: rgba(200, 169, 81, 0.12);
  --gold-border: rgba(200, 169, 81, 0.22);
  --black: #0A0A0A;
  --dark: #101010;
  --card: #141414;
  --card-hover: #191919;
  --border: rgba(255,255,255,0.07);
  --white: #F4F3EE;
  --muted: rgba(244, 243, 238, 0.5);
  --muted-2: rgba(244, 243, 238, 0.28);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.3s var(--ease);
  --radius: 4px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-weight: 300; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ---- FILTRE CSS PE IMAGINI ---- */

/* Hero: contrast crescut, ușor desaturat, tonal warm */
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.12) saturate(0.75) brightness(0.55) sepia(0.12);
  transition: filter 0.6s ease;
}

/* Coafor: warm golden tone */
.img-warm {
  filter: contrast(1.1) saturate(1.15) brightness(0.88) sepia(0.18) hue-rotate(-5deg);
  transition: filter 0.5s ease, transform 0.6s ease;
}

/* Barbershop: cool dark, ușor desaturat */
.img-cool {
  filter: contrast(1.18) saturate(0.7) brightness(0.82) sepia(0.05);
  transition: filter 0.5s ease, transform 0.6s ease;
}

/* Extensii: gold highlight, saturat */
.img-gold {
  filter: contrast(1.08) saturate(1.2) brightness(0.9) sepia(0.15) hue-rotate(-8deg);
  transition: filter 0.5s ease, transform 0.6s ease;
}

/* Masaj: soft, delicat, ușor warm */
.img-soft {
  filter: contrast(1.0) saturate(0.85) brightness(0.92) sepia(0.1);
  transition: filter 0.5s ease, transform 0.6s ease;
}

/* Produse: crisp, curat, contrast bun */
.img-crisp {
  filter: contrast(1.15) saturate(0.9) brightness(0.85);
  transition: filter 0.5s ease, transform 0.6s ease;
}

/* Galerie hero (imaginea mare) */
.img-cinematic {
  filter: contrast(1.1) saturate(0.8) brightness(0.78) sepia(0.08);
  transition: filter 0.5s ease, transform 0.6s ease;
}

/* Hover: brighten ușor */
.serviciu-card:hover .img-warm,
.serviciu-card:hover .img-cool,
.serviciu-card:hover .img-gold,
.serviciu-card:hover .img-soft,
.serviciu-card:hover .img-crisp {
  filter: contrast(1.1) saturate(1.1) brightness(1.0) sepia(0.05);
  transform: scale(1.04);
}
.galerie-item:hover .img-cinematic,
.galerie-item:hover .img-warm,
.galerie-item:hover .img-cool,
.galerie-item:hover .img-gold,
.galerie-item:hover .img-soft {
  filter: contrast(1.05) saturate(1.0) brightness(0.95);
  transform: scale(1.04);
}

/* ---- TIPOGRAFIE ---- */
.section-label { display: block; font-family: var(--font-body); font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.12; color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }
.section-header { max-width: 560px; margin-bottom: 52px; }

/* ---- ANIMAȚII ---- */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp 0.85s var(--ease) forwards; }
.delay-1 { animation-delay: 0.18s; }
.delay-2 { animation-delay: 0.34s; }
.delay-3 { animation-delay: 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: none; }

/* ---- BUTOANE ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; letter-spacing: 0.03em; padding: 13px 26px; border-radius: var(--radius); transition: var(--t); white-space: nowrap; cursor: pointer; }
.btn-primary { background: var(--gold); color: #0A0A0A; border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(244,243,238,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-ghost { background: rgba(0,0,0,0.4); color: var(--white); border: 1px solid rgba(244,243,238,0.25); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ---- NAV ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); transition: background 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(10,10,10,0.94); backdrop-filter: blur(16px); border-bottom-color: var(--border); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; }
.logo-fallback { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; letter-spacing: 0.14em; color: var(--white); display: none; }
.logo-fallback em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; color: var(--muted); transition: color var(--t); }
.nav-links a:not(.btn):hover { color: var(--white); }
.btn-nav { padding: 9px 20px; font-size: 13px; background: var(--gold); color: var(--black); border-radius: var(--radius); font-weight: 500; transition: var(--t); display: inline-flex; align-items: center; gap: 6px; }
.btn-nav:hover { background: var(--gold-light); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--t); transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; padding: 12px 28px 28px; background: rgba(10,10,10,0.98); border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-link { font-size: 15px; padding: 13px 0; color: var(--muted); border-bottom: 1px solid var(--border); transition: color var(--t); }
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--white); }
.mobile-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mobile-actions .btn { justify-content: center; }

/* ---- HERO ---- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; background: linear-gradient(135deg, #0e0c09 0%, #120f0a 100%); }
.hero-image.no-image { background: radial-gradient(ellipse 70% 60% at 65% 45%, rgba(200,169,81,0.07) 0%, transparent 65%), linear-gradient(135deg, #0d0b08 0%, #0A0A0A 100%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.2) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 100px; max-width: 680px; }
.hero-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; display: block; }
.hero-headline { font-family: var(--font-display); font-size: clamp(3rem, 7.5vw, 6rem); font-weight: 500; line-height: 1.06; color: var(--white); margin-bottom: 22px; }
.hero-headline em { font-style: italic; color: var(--gold); display: block; }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(244,243,238,0.7); max-width: 480px; margin-bottom: 40px; line-height: 1.65; font-weight: 300; }
.br-d { display: inline; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-program { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 12px; color: var(--muted); padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-program .sep { color: var(--gold-border); }
.hero-program .dim { color: var(--muted-2); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; width: 30px; height: 48px; border: 1px solid rgba(244,243,238,0.15); border-radius: 15px; display: flex; align-items: flex-start; justify-content: center; padding-top: 8px; }
.hero-scroll span { display: block; width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; transform: translateY(0); } 50% { opacity: 0.2; transform: translateY(7px); } }

/* ---- SERVICII ---- */
.servicii { padding: 110px 0; }
.servicii::before { content: ''; display: block; width: 1px; height: 64px; background: linear-gradient(to bottom, var(--gold), transparent); margin: -110px auto 46px; }
.servicii-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.serviciu-card { background: var(--card); transition: background var(--t); overflow: hidden; }
.serviciu-card:hover { background: var(--card-hover); }
.serviciu-img { position: relative; height: 200px; overflow: hidden; background: #0e0e0e; }
.serviciu-img img { width: 100%; height: 100%; object-fit: cover; }
.serviciu-img.img-fallback { display: flex; align-items: center; justify-content: center; }
.img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 35%, rgba(20,20,20,0.92) 100%); }
.serviciu-body { padding: 22px 26px 28px; }
.s-icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: 14px; display: block; }
.serviciu-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.serviciu-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---- DESPRE ---- */
.despre { padding: 110px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.despre-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: start; }
.despre-intro { font-size: 1.05rem; color: var(--muted); margin-top: 20px; line-height: 1.75; font-family: var(--font-display); font-style: italic; }
.motive-grid { display: flex; flex-direction: column; }
.motiv { display: flex; align-items: flex-start; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.motiv:last-child { border-bottom: none; }
.motiv-nr { font-family: var(--font-display); font-size: 0.8rem; color: var(--gold); font-weight: 500; letter-spacing: 0.06em; padding-top: 3px; min-width: 24px; }
.motiv h4 { font-size: 14.5px; font-weight: 500; color: var(--white); margin-bottom: 5px; }
.motiv p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---- RECENZII ---- */
.recenzii { padding: 110px 0; }
.rating-summary { display: flex; align-items: center; gap: 28px; background: var(--gold-dim); border: 1px solid var(--gold-border); padding: 20px 28px; margin-bottom: 52px; border-radius: var(--radius); }
.rating-score { display: flex; align-items: center; gap: 14px; }
.score-nr { font-family: var(--font-display); font-size: 3rem; font-weight: 500; color: var(--gold); line-height: 1; }
.stars-row { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 2px; }
.rating-score > div > span { font-size: 12px; color: var(--muted); }
.rating-sep { width: 1px; height: 48px; background: var(--gold-border); }
.rating-text { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 380px; }
.recenzii-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.recenzie-card { background: var(--card); padding: 32px 26px; transition: background var(--t); }
.recenzie-card:hover { background: var(--card-hover); }
.recenzie-stars { color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 18px; }
.recenzie-text { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 22px; }
.recenzie-autor { display: flex; align-items: center; gap: 12px; }
.autor-initiale { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; color: var(--gold); flex-shrink: 0; }
.recenzie-autor strong { display: block; font-size: 13.5px; font-weight: 500; color: var(--white); }
.recenzie-autor span { font-size: 11.5px; color: var(--muted-2); }

/* ---- GALERIE ---- */
.galerie { padding: 110px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.galerie-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 260px; gap: 4px; margin-bottom: 28px; }
.galerie-item { position: relative; overflow: hidden; background: #0e0e0e; }
.galerie-item.big { grid-column: span 2; grid-row: span 2; }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; }
.galerie-item.img-empty { display: flex; align-items: center; justify-content: center; border: 1px dashed var(--gold-border); }
.galerie-item.img-empty::after { content: 'Foto'; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-border); }
.galerie-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 16px 14px; background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 100%); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,243,238,0.75); opacity: 0; transition: opacity var(--t); }
.galerie-item:hover .galerie-label { opacity: 1; }
.galerie-note { font-size: 13.5px; color: var(--muted); text-align: center; }
.galerie-note a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color var(--t); }
.galerie-note a:hover { border-color: var(--gold); }

/* ---- CONTACT ---- */
.contact { padding: 110px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-intro { font-size: 15px; color: var(--muted); margin: 16px 0 36px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; margin-bottom: 36px; }
.contact-line { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-line:last-child { border-bottom: none; }
.contact-line-link { cursor: pointer; transition: color var(--t); }
.contact-line-link:hover { color: var(--gold); }
.contact-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-label { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; }
.contact-value { font-size: 15px; font-weight: 400; color: var(--white); }
.program-list { display: flex; flex-direction: column; gap: 3px; margin-top: 2px; }
.program-list span { font-size: 14px; color: var(--muted); }
.program-list strong { color: var(--white); font-weight: 500; }
.program-inchis { opacity: 0.45; }
.contact-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.social-links { display: flex; gap: 12px; }
.social-links a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 14px; transition: border-color var(--t), color var(--t); }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.contact-map { height: 480px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); position: sticky; top: calc(var(--nav-h) + 20px); }
.contact-map iframe { width: 100%; height: 100%; filter: grayscale(1) invert(0.88) contrast(1.15) brightness(0.82); transition: filter 0.4s; }
.contact-map:hover iframe { filter: grayscale(0.5) invert(0.85) contrast(1.1) brightness(0.9); }

/* ---- FOOTER ---- */
.footer { background: #070707; border-top: 1px solid var(--border); padding: 64px 0 36px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 56px; width: 56px; object-fit: contain; margin-bottom: 16px; border-radius: 50%; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: var(--muted); line-height: 1.8; }
.footer-phone { display: inline-block; margin-top: 10px; font-size: 14px; font-weight: 500; color: var(--gold); transition: color var(--t); }
.footer-phone:hover { color: var(--gold-light); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 13.5px; color: var(--muted); transition: color var(--t); line-height: 1.5; }
.footer-col a:hover { color: var(--white); }
.footer-col .inchis { color: var(--muted-2); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--muted-2); }

/* ---- WHATSAPP FLOTANT ---- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #22C55E; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 16px rgba(34,197,94,0.4); transition: transform var(--t), box-shadow var(--t); }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 4px 24px rgba(34,197,94,0.55); }
.whatsapp-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #22C55E; opacity: 0.35; animation: waPulse 2.8s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.35; } 70% { transform: scale(1.55); opacity: 0; } 100% { transform: scale(1.55); opacity: 0; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 900px) {
  .nav-links { display: none; } .burger { display: flex; }
  .despre-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-map { height: 320px; position: static; }
  .galerie-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .galerie-item.big { grid-column: span 2; grid-row: span 1; height: 280px; }
  .galerie-item { height: 200px; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .servicii, .despre, .recenzii, .galerie, .contact { padding: 80px 0; }
  .section-header { margin-bottom: 36px; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3rem); }
  .hero-content { padding-top: 96px; }
  .br-d { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero-program { font-size: 11px; }
  .hero-program .sep { display: none; }
  .servicii-grid { grid-template-columns: 1fr; }
  .recenzii-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rating-sep { width: 48px; height: 1px; }
  .contact-ctas { flex-direction: column; }
  .contact-ctas .btn { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .galerie-grid { grid-template-columns: 1fr; }
  .galerie-item.big, .galerie-item { height: 200px; grid-column: span 1; grid-row: span 1; }
  .social-links { flex-wrap: wrap; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}

/* =============================================
   ADĂUGIRI v4
   ============================================= */

/* ---- CTA BAR FIX sub header ---- */
.cta-bar {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform 0.35s ease;
}
.cta-bar-text { opacity: 0.75; }
.cta-bar-nr {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14px;
  color: var(--black);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.cta-bar-nr:hover { opacity: 0.75; }
.cta-bar-sep { opacity: 0.4; }
.cta-bar-wa {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 500; color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,0.3);
  transition: opacity 0.2s;
}
.cta-bar-wa:hover { opacity: 0.75; }

/* Ajustăm hero să înceapă sub nav + cta-bar (72 + 38 = 110px) */
.hero-content { padding-top: 152px; }

/* ---- SERVICII CARD: fara SVG mare, badge peste poza ---- */
/* Scoatem titlul h3 din body (e mutat ca badge pe poza) */
.serviciu-card h3 { display: none; }

.serviciu-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  z-index: 2;
  /* titlul e pe poza, overlay-ul din img-overlay face fundalul */
}

/* Marim putin poza ca sa arate mai bine fara SVG sub ea */
.serviciu-img { height: 240px; }

/* Body-ul cardului: doar text, mai compact */
.serviciu-body {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(200,169,81,0.15);
}
.serviciu-body p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ---- SOCIAL LINKS — vizibile cu culori proprii ---- */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }

.social-fb, .social-ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.social-fb:hover, .social-ig:hover {
  opacity: 0.85; transform: translateY(-1px);
}

/* Facebook: albastru */
.social-fb {
  background: #1877F2;
  color: #fff;
}
/* Instagram: gradient */
.social-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

/* ---- FOOTER BOTTOM — legal links ---- */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 16px;
  font-size: 12px;
}
.footer-legal a {
  color: var(--muted-2);
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-legal a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.legal-sep { color: var(--muted-2); opacity: 0.4; }

.footer-copy { font-size: 11.5px; color: var(--muted-2); }

/* ---- RESPONSIVE pentru elemente noi ---- */
@media (max-width: 600px) {
  .cta-bar { font-size: 12px; gap: 8px; flex-wrap: wrap; justify-content: center; padding: 8px 14px; }
  .cta-bar-sep { display: none; }
  .hero-content { padding-top: 164px; }
  .footer-legal { gap: 8px 12px; }
}

/* ---- DEMO BANNER ---- */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 11.5px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 7px 16px;
}

/* Cu demo banner activ, totul coboară cu 32px */
.nav { top: 32px; }
.cta-bar { top: calc(32px + var(--nav-h)); }
.hero-content { padding-top: 184px; }

/* ---- MERO link în CTA bar ---- */
.cta-bar-mero {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 600;
  color: var(--black);
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
  padding: 2px 10px;
  font-size: 12.5px;
  transition: background 0.2s;
}
.cta-bar-mero:hover { background: rgba(0,0,0,0.25); }

/* Mobile: ascunde textul Mero pe ecrane mici */
@media (max-width: 600px) {
  .demo-banner { font-size: 10px; padding: 6px 12px; }
  .hero-content { padding-top: 196px; }
  .cta-bar-mero span { display: none; }
}
