/* ============================================================
   aftercare.css — Aftercare section (Tattoo / Piercings tabs)
   + booking CTA band shown right before the location section
   ============================================================ */

#aftercare {
  padding: 9rem 6vw;
  position: relative;
}

.aftercare-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.aftercare-header .portfolio-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.aftercare-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.aftercare-intro {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Tabs ── */
.aftercare-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.aftercare-tab {
  appearance: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.aftercare-tab:hover { color: var(--text); border-color: rgba(255,255,255,0.22); }
.aftercare-tab.active {
  color: var(--text);
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent-blue), var(--accent-purple) 55%, var(--accent-red));
}

/* ── Panels ── */
.aftercare-panel { display: none; }
.aftercare-panel.active { display: block; animation: ac-fade 0.5s var(--ease-out); }
@keyframes ac-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ── Accordion (single editorial column of step-by-step guides) ── */
.aftercare-acc {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.ac-acc-item {
  border-bottom: 1px solid var(--glass-border);
}
.ac-acc-item summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0.25rem;
  list-style: none;
  user-select: none;
  transition: color 0.3s var(--ease-out);
}
.ac-acc-item summary::-webkit-details-marker { display: none; }
.ac-acc-num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: transparent;
  background: linear-gradient(120deg, #5f8ce0, #b54a8e);
  -webkit-background-clip: text;
  background-clip: text;
  flex-shrink: 0;
}
.ac-acc-title {
  flex: 1;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.ac-acc-chev {
  flex-shrink: 0;
  width: 11px; height: 11px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease-out), border-color 0.3s;
  margin-right: 0.4rem;
}
.ac-acc-item[open] .ac-acc-chev { transform: rotate(-135deg); }
.ac-acc-item summary:hover .ac-acc-chev { border-color: var(--text); }
.ac-acc-body {
  padding: 0 0.25rem 1.6rem 2.6rem;
  animation: ac-fade 0.4s var(--ease-out);
}
.ac-acc-body ul { list-style: none; margin: 0; padding: 0; }
.ac-acc-body li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,245,245,0.8);
}
.ac-acc-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(120deg, #4f7bd6, #b54a8e);
}

.aftercare-gallery-head {
  max-width: 1200px;
  margin: 0 auto 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* ── Image gallery ── */
.aftercare-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
}
.aftercare-shot {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--ink);
  aspect-ratio: 1 / 1;
}
.aftercare-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out), opacity 0.4s ease;
}
.aftercare-shot:hover img { transform: scale(1.05); }

@media (max-width: 600px) {
  #aftercare { padding: 6rem 5vw; }
  .aftercare-gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* ============================================================
   Booking CTA band (Book via WhatsApp — before the location)
   ============================================================ */
.book-cta {
  padding: 6rem 6vw;
  text-align: center;
}
.book-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.book-cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.book-cta-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.book-cta-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: -0.4rem;
}

/* ============================================================
   Appointments / Schedule Now (before the location) + COVID-19
   ============================================================ */
.appointments {
  padding: 8rem 6vw;
  text-align: center;
}
.appt-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.appt-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.appt-heading {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.03;
}
.appt-intro {
  color: rgba(245,245,245,0.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}
.appt-book-btn { margin-top: 0.6rem; }
.appt-deposit {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
}
.appt-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.appt-contact a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--glass-border);
  transition: border-color 0.3s;
}
.appt-contact a:hover { border-color: var(--text); }

/* COVID-19 expandable block */
.appt-covid {
  width: 100%;
  max-width: 600px;
  margin-top: 1.5rem;
  text-align: left;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
}
.appt-covid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  list-style: none;
  user-select: none;
}
.appt-covid summary::-webkit-details-marker { display: none; }
.appt-covid-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.appt-covid .ac-acc-chev {
  width: 10px; height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease-out);
}
.appt-covid[open] .ac-acc-chev { transform: rotate(-135deg); }
.appt-covid-body {
  padding: 0 1.4rem 1.4rem;
  animation: ac-fade 0.4s var(--ease-out);
}
.appt-covid-body ul { list-style: none; margin: 0; padding: 0; }
.appt-covid-body li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(245,245,245,0.78);
}
.appt-covid-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(120deg, #4f7bd6, #b54a8e);
}
@media (max-width: 600px) { .appointments { padding: 5.5rem 5vw; } }
