/* ════════════════════════════════════════════
   VetCare — stylesheet
   ════════════════════════════════════════════ */

:root {
  --primary:       #2dd4bf;
  --primary-dark:  #0f766e;
  --primary-light: #ccfbf1;
  --accent:        #f97316;
  --dark:          #0f172a;
  --dark-2:        #1e293b;
  --mid:           #334155;
  --light:         #f8fafc;
  --text:          #0f172a;
  --muted:         #64748b;
  --white:         #ffffff;

  --radius:    20px;
  --radius-sm: 12px;

  --shadow:       0 20px 60px rgba(0,0,0,0.07);
  --shadow-teal:  0 20px 60px rgba(45,212,191,0.18);

  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 72px;
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* ── SCROLL PROGRESS ────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  z-index: 9999;
  transition: width 0.1s linear;
  will-change: width;
}

/* ── CURSOR BLOB (desktop only) ─────────────── */
.cursor-blob {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,0.07) 0%, transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.55s var(--ease-out), top 0.55s var(--ease-out);
  z-index: 0;
  will-change: left, top;
}
@media (hover: none) { .cursor-blob { display: none; } }

/* ── PAGE LOADER ────────────────────────────── */
.page-loader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-paw {
  font-size: 3rem;
  animation: pawPulse 0.7s ease-in-out infinite alternate;
}
@keyframes pawPulse {
  from { transform: scale(0.8); opacity: 0.4; }
  to   { transform: scale(1.1); opacity: 1; }
}

/* ── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity  0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible          { opacity: 1; transform: none; }
.reveal-delay-1          { transition-delay: 0.08s; }
.reveal-delay-2          { transition-delay: 0.16s; }
.reveal-delay-3          { transition-delay: 0.24s; }
.reveal-delay-4          { transition-delay: 0.32s; }

/* ── NAVBAR ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-out),
              box-shadow  0.4s var(--ease-out),
              height      0.4s var(--ease-out);
}
nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(45,212,191,0.12), 0 8px 30px rgba(0,0,0,0.05);
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
  flex-shrink: 0;
  z-index: 1001;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.4rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover            { color: var(--primary-dark); }
.nav-links a:hover::after     { width: 100%; }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.lang-btn {
  background: none;
  border: 1.5px solid rgba(45,212,191,0.35);
  color: var(--mid);
  padding: 6px 15px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  font-family: 'Inter', sans-serif;
}
.lang-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }

.btn-cta-nav {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.83rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 14px rgba(45,212,191,0.38);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(45,212,191,0.5);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  padding: calc(var(--nav-h) + 1rem) 6% 2.5rem;
  transform: translateY(-110%);
  transition: transform 0.45s var(--ease-out);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.8rem;
}
.nav-drawer ul li a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s, padding-left 0.25s var(--ease-out);
}
.nav-drawer ul li a:hover { color: var(--primary-dark); padding-left: 6px; }
.nav-drawer-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── SHARED SECTION STYLES ──────────────────── */
section { padding: clamp(60px, 10vw, 110px) 5%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.9rem;
}
.section-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--muted);
  line-height: 1.78;
  max-width: 500px;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(45,212,191,0.42);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(45,212,191,0.52); }
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  color: var(--dark);
  border: 2px solid rgba(15,23,42,0.09);
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
  transition: border-color 0.25s, color 0.25s, transform 0.3s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-3px); }
.btn-secondary:active { transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0fdfa 0%, #ecfdf5 45%, #fff 100%);
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(65px); opacity: 0.38; }
.shape-1 {
  width: min(620px, 80vw); height: min(620px, 80vw);
  background: radial-gradient(circle, #99f6e4, transparent);
  top: -200px; right: -100px;
  animation: floatShape 9s var(--ease-in-out) infinite;
}
.shape-2 {
  width: min(440px, 60vw); height: min(440px, 60vw);
  background: radial-gradient(circle, #bbf7d0, transparent);
  bottom: -120px; left: -80px;
  animation: floatShape 11s var(--ease-in-out) infinite reverse;
}
.shape-3 {
  width: min(220px, 30vw); height: min(220px, 30vw);
  background: radial-gradient(circle, #fed7aa, transparent);
  top: 35%; left: 38%;
  animation: floatShape 7s var(--ease-in-out) infinite 1s;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(18px,-18px) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: heroIn 1s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,212,191,0.11);
  border: 1px solid rgba(45,212,191,0.28);
  color: var(--primary-dark);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.4rem;
}
.hero-badge::before { content: '🐾'; }

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.4rem;
}
.hero-title .highlight {
  color: var(--primary-dark);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(0.97rem, 1.8vw, 1.12rem);
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 2.2rem;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 3rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(45,212,191,0.14);
}
.hero-stat .number {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 4px;
  display: block;
}

/* hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  animation: heroIn 1.1s 0.25s var(--ease-out) both;
}
.hero-illo {
  width: 100%;
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, #d1fae5 0%, #ccfbf1 55%, #e0f2fe 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-teal);
}
.hero-illo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(45,212,191,0.08));
}

.paw-bg {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  opacity: 0.065;
  font-size: 1.7rem;
  overflow: hidden;
  pointer-events: none;
}
.paw-bg span { display: flex; align-items: center; justify-content: center; }

.hero-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.card-1 { top: 18%; left: -48px; animation: floatCard 4.5s ease-in-out infinite; }
.card-2 { bottom: 25%; right: -16px; animation: floatCard 5.5s ease-in-out infinite 1.2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.card-icon.green  { background: #d1fae5; }
.card-icon.orange { background: #ffedd5; }
.card-text strong { display: block; font-size: 0.87rem; font-weight: 700; }
.card-text span   { font-size: 0.73rem; color: var(--muted); }

/* ── SERVICES ────────────────────────────────── */
#servizi { background: var(--light); }

.services-header { margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-teal); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.1rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  transition: gap 0.2s var(--ease-out);
}
.service-link:hover { gap: 9px; }

/* ── ABOUT ───────────────────────────────────── */
#chi-siamo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about-visual { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #d1fae5, #99f6e4);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(4rem, 6vw, 7rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-teal);
}
.about-img-accent {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 58%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.13;
}

.about-badge {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: 11px;
}
.about-badge .big   { font-size: 1.7rem; font-weight: 800; color: var(--dark); }
.about-badge .small { font-size: 0.73rem; color: var(--muted); font-weight: 500; }

.values-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.value-item  { display: flex; align-items: flex-start; gap: 13px; }
.value-dot {
  width: 34px; height: 34px;
  min-width: 34px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  margin-top: 2px;
}
.value-item h4 { font-weight: 700; font-size: 0.93rem; margin-bottom: 3px; }
.value-item p  { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }

/* ── TEAM ────────────────────────────────────── */
#team { background: var(--dark); color: white; }
#team .section-label { color: var(--primary); }
#team .section-title { color: white; }
#team .section-desc  { color: #94a3b8; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
  will-change: transform;
}
.team-card:hover { transform: translateY(-7px); border-color: rgba(45,212,191,0.28); }

.team-avatar {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #134e4a, #065f46);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(3rem, 5vw, 4.5rem);
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(30,41,59,0.88));
}

.team-info { padding: 1.4rem; }
.team-info h3   { font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
.team-info .role { font-size: 0.8rem; color: var(--primary); font-weight: 600; letter-spacing: 0.04em; }
.team-info .desc { font-size: 0.82rem; color: #64748b; margin-top: 0.55rem; line-height: 1.55; }

/* ── TESTIMONIALS ────────────────────────────── */
#recensioni { background: #f0fdfa; }
#recensioni .section-header { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
  border: 1px solid rgba(45,212,191,0.09);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  will-change: transform;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.stars { color: #fbbf24; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 0.9rem; }

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.88rem; font-weight: 700; }
.author-info span   { font-size: 0.78rem; color: var(--muted); }

/* ── CONTACTS ────────────────────────────────── */
#contatti {
  background: linear-gradient(160deg, var(--dark) 0%, #0b2134 100%);
  color: white;
}
#contatti .section-label { color: var(--primary); }
#contatti .section-title { color: white; }
#contatti .section-header { text-align: center; }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: rgba(45,212,191,0.13);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.contact-item h4 {
  font-weight: 700; font-size: 0.75rem;
  color: #94a3b8; letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-item p, .contact-item a {
  font-size: 0.98rem;
  color: white;
  text-decoration: none;
  line-height: 1.6;
}
.contact-item a:hover { color: var(--primary); }

.hours-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.hours-card h3  { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.4rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day     { color: #94a3b8; }
.hours-row .time    { color: white; font-weight: 600; }
.hours-row .special { color: #34d399; font-weight: 600; }
.hours-row .appt    { color: #f97316; font-weight: 600; }

.map-placeholder {
  height: 220px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.25s;
}
.map-placeholder:hover { background: rgba(45,212,191,0.06); }
.map-placeholder span { font-size: 0.82rem; color: #64748b; }

/* ── CTA / PRENOTA ───────────────────────────── */
#prenota {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #065f46 100%);
  color: white;
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 5%;
  position: relative;
  overflow: hidden;
}
#prenota::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
}

#prenota .section-title { color: white; }
#prenota .section-desc  { color: rgba(255,255,255,0.72); margin: 0 auto; }

.cta-decor {
  font-size: 3.5rem;
  margin-bottom: 0.8rem;
  display: block;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

.btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: white;
  color: var(--primary-dark);
  border: none;
  padding: 17px 40px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  margin-top: 2.2rem;
  box-shadow: 0 10px 36px rgba(0,0,0,0.18);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn-white:hover  { transform: translateY(-4px); box-shadow: 0 18px 46px rgba(0,0,0,0.26); }
.btn-white:active { transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--dark);
  color: #64748b;
  padding: 2.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
footer .logo { font-weight: 800; color: white; font-size: 1.05rem; }
footer p     { font-size: 0.8rem; }

.socials { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.social-link:hover { background: var(--primary); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* ── Tablet landscape / small desktop (≤1100px) */
@media (max-width: 1100px) {
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet portrait (≤900px) */
@media (max-width: 900px) {
  /* nav */
  .nav-links, .nav-actions { display: none; }
  .hamburger  { display: flex; }
  .nav-drawer { display: block; }

  /* hero */
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 3rem);
    gap: 2.5rem;
  }
  .hero-content   { max-width: 100%; }
  .hero-subtitle  { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions   { justify-content: center; }
  .hero-stats     { justify-content: center; gap: 2.5rem; }
  .hero-visual    { max-width: 420px; margin: 0 auto; }
  .card-1         { left: -20px; }
  .card-2         { right: -10px; }

  /* about */
  #chi-siamo {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .about-img    { aspect-ratio: 4/3; }
  .about-badge  { left: 50%; transform: translateX(-50%); bottom: -1.5rem; white-space: nowrap; }
  .about-content { padding-top: 1rem; }

  /* services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* testimonials */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* contacts */
  .contacts-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* footer */
  footer { flex-direction: column; text-align: center; gap: 0.8rem; }
  .socials { justify-content: center; }
}

/* ── Mobile (≤600px) */
@media (max-width: 600px) {
  :root { --nav-h: 64px; }

  section { padding: clamp(50px, 12vw, 70px) 5%; }

  /* hero */
  #hero { gap: 2rem; padding-bottom: 3.5rem; }
  .hero-visual { display: none; }
  .hero-stats  { gap: 1.8rem; flex-wrap: wrap; }

  /* services */
  .services-grid { grid-template-columns: 1fr; }

  /* team */
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* buttons */
  .btn-primary, .btn-secondary {
    padding: 14px 26px;
    font-size: 0.93rem;
  }
  .btn-white { padding: 15px 30px; font-size: 0.95rem; }

  /* about badge */
  .about-badge { font-size: 0.88rem; padding: 0.9rem 1rem; }
}

/* ── Tiny mobile (≤400px) */
@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
  .hero-badge { font-size: 0.72rem; }
}

