/* ═══════════════════════════════════════════
   PETSHOP BIBI — Tema MOV
   ═══════════════════════════════════════════ */

:root {
  --primary: #7a2e8e;
  --primary-dark: #5a1f6b;
  --primary-light: #f3e8f8;
  --primary-soft: #e6d3ef;
  --accent: #ffb703;
  --bg: #faf7fc;
  --text: #1c1a24;
  --muted: #6b6478;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(122, 46, 142, 0.1);
  --shadow-lg: 0 20px 50px rgba(122, 46, 142, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
strong {
  font-family: "Nunito", sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ─── HEADER ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--primary-light);
}

/* LOGO CU IMAGINE */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 50px; /* înălțimea logo-ului în header */
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-footer {
  height: 50px; /* puțin mai mare în footer */
  filter: brightness(0) invert(1); /* face logo-ul alb pe fundal închis */
}
@media (max-width: 860px) {
  .logo-img {
    height: 45px;
  }
  .logo-footer .logo-img {
    height: 55px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Nunito";
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--primary);
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}
nav {
  display: flex;
  gap: 26px;
}
nav a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  transition: color 0.2s;
}
nav a:hover {
  color: var(--primary);
}
nav {
  margin-left: auto;
}
nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.nav-phone {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 46, 142, 0.35);
}
.menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
}

/* =========================================================
   PREMIUM POLISH
   ========================================================= */
.nav {
  min-height: 76px;
  padding: 10px 0;
}
.logo-img {
  height: 50px;
  transition: transform 0.25s ease;
}
.logo:hover .logo-img {
  transform: scale(1.03);
}
nav {
  gap: 8px;
  padding: 5px;
  background: rgba(245, 238, 250, 0.72);
  border: 1px solid rgba(111, 40, 127, 0.07);
  border-radius: 999px;
}
nav a {
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 600;
  color: #514958;
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}
nav a:hover {
  color: var(--primary);
  background: #fff;
  transform: translateY(-1px);
}
.nav-phone {
  padding: 11px 19px;
  box-shadow: 0 8px 20px rgba(111, 40, 127, 0.18);
}

@media (max-width: 860px) {
  nav {
    border-radius: 0px;
  }
}
/* ===================================== */

#before-after {
  background: linear-gradient(180deg, #f5eaf8 0%, #f0e1f5 100%) !important;
}
.ba-wrap {
  max-width: 860px;
}
.ba-slider {
  border: 8px solid #fff;
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(61, 25, 70, 0.14);
}
.ba-label {
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
}
.ba-label-after {
  background: var(--primary);
}

.map-frame {
  border: 8px solid #fff;
  box-shadow: 0 16px 40px rgba(40, 20, 45, 0.1);
}

/* ─── BUTOANE ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(122, 46, 142, 0.35);
}
.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ─── EYEBROW & SECTION HEAD ─── */
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.15;
}
.section-head p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 420px;
}
section {
  padding: 80px 0;
}

/* ─── HERO ─── */
.hero {
  padding: 70px 0 90px;
  background: linear-gradient(135deg, #faf7fc 0%, #f0e2f7 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "🐾";
  position: absolute;
  font-size: 320px;
  opacity: 0.05;
  right: -40px;
  bottom: -100px;
  transform: rotate(-15deg);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero h1 span {
  color: var(--primary);
}
.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
  margin-left: -10px;
}
.avatars span:first-child {
  margin-left: 0;
}
.trust strong {
  display: block;
  font-size: 0.95rem;
}
.trust small {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ─── HERO ART cu imagine în blob ─── */
.hero-art {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  margin: 0 auto;
  /* spațiu pentru marginea exterioară */
  padding: 14px;
  box-sizing: border-box;
}

/* Chenarul blob care se mișcă */
.blob {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--primary-light); /* fallback */
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  animation: blob 10s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(122, 46, 142, 0.3);
  overflow: hidden;
  /* marginea mov groasă interioară */
  border: 6px solid var(--primary);
}

/* Inelul mov exterior — pseudo-element separat */
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--primary);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  animation: blob 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.5;
}

/* Imaginea din interior */
.blob-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}

/* Overlay mov subtil peste imagine */
.blob::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(122, 46, 142, 0.18) 0%,
    rgba(122, 46, 142, 0.02) 50%,
    rgba(122, 46, 142, 0.12) 100%
  );
  pointer-events: none;
}

/* Animația blob */
@keyframes blob {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  33% {
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  }
  66% {
    border-radius: 54% 46% 70% 30% / 46% 54% 30% 70%;
  }
}

/* Eticheta flotantă */
.hero-label {
  position: absolute;
  bottom: 8%;
  right: 5%;
  background: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.hero-label strong {
  display: block;
  font-size: 0.9rem;
}
.hero-label span {
  color: var(--muted);
  font-size: 0.8rem;
}
.pet-card-dog {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 8%;
  animation: float 4s ease-in-out infinite;
}
.pet-card-cat {
  width: 100px;
  height: 100px;
  top: 55%;
  right: 10%;
  animation: float 5s ease-in-out infinite 0.5s;
}
.pet-card-bowl {
  width: 90px;
  height: 90px;
  bottom: 12%;
  left: 20%;
  animation: float 6s ease-in-out infinite 1s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.hero-label {
  position: absolute;
  bottom: 8%;
  right: 5%;
  background: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
}
.hero-label strong {
  display: block;
  font-size: 0.9rem;
}
.hero-label span {
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .hero-label {
    display: none !important;
  }
}

/* ─── SERVICII ─── */
.services {
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.service-card {
  color: white;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card > p {
  color: white !important;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: linear-gradient(135deg, transparent 60%, rgba(255, 255, 255, 0.5));
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-emoji {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 16px;
  position: relative;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  position: relative;
  line-height: 1.55;
}

/* ─── BRANDURI ─── */
.brands {
  background: var(--primary-light);
}
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.brand-list span {
  background: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}

/* ─── GALERIE ─── */
.gallery-section {
  background: #fff;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: #eee;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 8/5;
}
.gallery-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ─── GALERIE PREVIEW (pe homepage) ─── */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.gallery-preview-item {
  display: block;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.gallery-preview-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 46, 142, 0), rgba(122, 46, 142, 0.35));
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-preview-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-preview-item:hover::after {
  opacity: 1;
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-preview-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 860px) {
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.94);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2.4rem;
  background: none;
  border: none;
  line-height: 1;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: background 0.2s;
}
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.32);
}
.lb-prev {
  left: 20px;
}
.lb-next {
  right: 20px;
}

/* BEFORE / AFTER SLIDER */
.ba-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  background: #222;
}
.ba-slider .ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.ba-after {
  z-index: 1;
}
.ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid #fff;
  z-index: 2;
  pointer-events: none;
}
/* Imaginea „before" trebuie să aibă lățimea SLIDER-ului, nu a wrap-ului.
 *  Lățimea reală e setată din JS (syncImageWidth). */
.ba-before-wrap .ba-img {
  width: 100vw;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ba-label {
  position: absolute;
  top: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
  z-index: 3;
  pointer-events: none;
}
.ba-label-before {
  left: 16px;
}
.ba-label-after {
  right: 16px;
  background: rgba(122, 46, 142, 0.85);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  margin-left: -1.5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.ba-handle-circle {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.ba-slider:hover .ba-handle-circle {
  transform: scale(1.08);
}
.ba-hint {
  text-align: center;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 860px) {
  .ba-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  .ba-handle-circle {
    width: 40px;
    height: 40px;
  }
  .ba-handle-circle svg {
    width: 18px;
    height: 18px;
  }
}

/* ─── DESPRE ─── */
.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
}
.about-circle {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  display: grid;
  place-items: center;
  font-size: 8rem;
  box-shadow: var(--shadow-lg);
  animation: blob 12s ease-in-out infinite;
}
.floating-note {
  position: absolute;
  bottom: 10%;
  right: -10px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.floating-note span {
  font-size: 1.6rem;
}
.floating-note strong {
  font-size: 0.92rem;
  line-height: 1.25;
}
.about-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-copy > p {
  color: var(--muted);
  margin-bottom: 28px;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.features > div > span {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.features strong {
  display: block;
  font-size: 0.98rem;
}
.features small {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .floating-note {
    display: none !important;
  }
}

/* ─── FAQ ─── */
.faq-section {
  background: #fff;
}
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--primary-light);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover {
  color: var(--primary);
}
.chev {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  transition: transform 0.3s;
}
.faq-item.open .chev {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
}

/* ─── VISIT ─── */
.visit {
  padding: 60px 0;
}
.visit-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.visit-card .eyebrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.visit-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
}
.visit-card p {
  opacity: 0.85;
}
.hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hours > div {
  padding-left: 16px;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
}
.hours span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.75;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hours strong {
  display: block;
  font-size: 0.92rem;
}
.hours b {
  font-size: 1rem;
}

/* ─── CONTACT ─── */
.contact {
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}
.contact-grid h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.contact-grid > div > p {
  color: var(--muted);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-items a {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--primary-light);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.contact-items a:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.contact-items a > span {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.contact-items small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}
.contact-items strong {
  font-size: 0.98rem;
}

/* FORMULAR */
.form-wrap {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 34px;
}
.form-wrap h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  font-family: "Nunito";
  font-weight: 800;
}
.form-wrap .sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}
.form-success {
  display: none;
  background: #e6f5ec;
  color: #1a7f4b;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.show {
  display: block;
}

/* MAP */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
  margin-top: 20px;
}
.map-frame iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ─── FOOTER ─── */
footer {
  background: #1c1224;
  color: #a99cb3;
  padding: 36px 0;
  font-size: 0.88rem;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer .logo {
  color: #fff;
}

/* ─── WHATSAPP FLOTANT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s;
  animation: wa-bounce 2.6s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  position: relative;
  z-index: 1;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  animation: wa-ring 2.6s infinite;
}
@keyframes wa-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes wa-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--primary-light);
  }
  .nav {
    padding: 14px 10px;
  }
  nav.open {
    display: flex;
  }
  nav ul {
    flex-direction: column; /* ← lista tot verticală */
    gap: 0;
  }
  nav a {
    padding: 14px 24px;
    width: 100%;
  }
  .menu {
    display: block;
    margin-left: auto;
  }
  .nav-phone {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-art {
    max-width: 340px;
  }
  .about-visual {
    max-width: 320px;
    margin: 0 auto;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .visit-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: left;
  }
  .contact-grid {
    gap: 40px;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 50px 0 60px;
  }
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .faq-q {
    font-size: 0.95rem;
    padding: 18px 20px;
  }
  .faq-a {
    padding: 0 20px;
  }
  .faq-item.open .faq-a {
    padding: 0 20px 20px;
  }
  .ba-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  .ba-handle-circle {
    width: 40px;
    height: 40px;
  }
  .ba-handle-circle svg {
    width: 18px;
    height: 18px;
  }
  .lightbox .lb-nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 10px;
    right: 70px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section head centrat (pentru secțiuni fără 2 coloane) */
.section-head.center {
  display: block;
  text-align: center;
}
.section-head.center .eyebrow {
  display: inline-block;
}
.section-head.center p {
  max-width: 560px;
  margin: 12px auto 0;
}

.header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(122, 46, 142, 0.08);
}
nav a {
  position: relative;
  font-weight: 500;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
nav a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 900px) {
  nav a::after {
    display: none;
  }
}
