/* ═══════════════════════════════════════════════════════════
   CLINIC DISPLAY PAGE — clinic.min.css
   Redesigned 2026. Builds on shared.min.css tokens.
   ═══════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

/* ─── 1. DESIGN TOKENS ──────────────────────────────────── */

:root {
  --primary:        #663399;
  --primary-light:  #994CE5;
  --primary-pale:   #f4eeff;
  --accent:         #3498db;
  --orange:         #e8710a;
  --orange-dark:    #c45e08;
  --green:          #27ae60;
  --green-dark:     #1e8449;
  --heading:        #2c3e50;
  --grey-text:      #666666;
  --light-bg:       #f9f9f9;
  --border:         #e0e0e0;
  --white:          #ffffff;
  --success:        #27ae60;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --shadow-card:    0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover:   0 6px 28px rgba(0,0,0,0.12);
  --transition:     all 0.22s ease;
}

/* ─── 2. CLINIC HERO  (mirrors .profile-hero style) ────── */

.clinic-hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
  padding: 50px 0 40px;
  border-bottom: 1px solid var(--border);
}

.clinic-hero-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 44px;
  align-items: start;
}

/* Left: clinic photo */
.clinic-photo-col { position: relative; }

.clinic-photo-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  background: var(--light-bg);
}

.clinic-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Verified member badge under photo */
.clinic-member-badge {
  display:block;
  text-align: center;
  gap: 6px;
  color: #2e7d32;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0;
  margin-top: 20px;
  
}

.clinic-member-badge svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* CTA buttons under photo */
.clinic-photo-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.clinic-photo-actions form { width: 100%; }

.clinic-photo-actions .btn-primary,
.clinic-photo-actions .btn-outline-hero {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

/* Right: clinic info */
.clinic-info-col { padding: 8px 0; }

.clinic-hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.clinic-hero-name {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.clinic-hero-name em {
  font-style: normal;
  color: var(--primary);
}

.clinic-hero-address {
  font-size: 0.95rem;
  color: var(--grey-text);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.clinic-hero-address svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Meta row: rating, phone, accreditations */
.clinic-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}

.clinic-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-text);
}

.clinic-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.clinic-meta-item strong {
  color: var(--heading);
  font-weight: 700;
}

.clinic-meta-stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Intro text in hero */
.clinic-hero-intro {
  font-size: 1rem;
  color: var(--grey-text);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 100%;
}

.clinic-hero-intro p {
  font-size: 1rem;
  color: var(--grey-text);
  margin: 0 0 10px;
}

.clinic-hero-intro p:last-child { margin-bottom: 0; }

/* CTA buttons */
.clinic-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 12px 26px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-hero {
  display: inline-block;
  background: transparent;
  color: var(--heading);
  padding: 12px 26px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-hero:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

/* Purple "Ask a Question" button in hero */
.btn-ask-question {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  background: var(--primary);
  color: var(--white);
  padding: 12px 26px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-ask-question:hover {
  background: var(--primary-light);
  color: var(--white);
  text-decoration: none;
}

/* Tel reveal */
.tel-desktop { display: block; }
.tel-mobile  { display: none;  }

/* ─── 3. STICKY IN-PAGE NAV ─────────────────────────────── */

.clinic-subnav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.clinic-subnav-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.clinic-subnav-inner::-webkit-scrollbar { display: none; }

.clinic-subnav-link {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-text);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.clinic-subnav-link:hover,
.clinic-subnav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

/* Mobile: toggle button */
.clinic-subnav-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 16px;
  background: none;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
}

.clinic-subnav-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.clinic-subnav-toggle.open svg { transform: rotate(180deg); }

/* Mobile dropdown */
.clinic-subnav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 6px 0 10px;
}

.clinic-subnav-mobile.open { display: flex; }

.clinic-subnav-mobile .clinic-subnav-link {
  border-bottom: none;
  padding: 11px 20px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  border-left: 3px solid transparent;
}

.clinic-subnav-mobile .clinic-subnav-link:hover,
.clinic-subnav-mobile .clinic-subnav-link.active {
  border-left-color: var(--primary);
  border-bottom: none;
  background: var(--primary-pale);
}

.clinic-subnav-mobile .clinic-subnav-cta {
  margin: 8px 20px 4px;
  width: calc(100% - 40px);
  display: block;
  text-align: center;
  box-sizing: border-box;
}

.clinic-subnav-cta {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 8px 22px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.clinic-subnav-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
  text-decoration: none;
}

/* ─── 4. TWO-COLUMN BODY ────────────────────────────────── */

.clinic-body {
  padding: 50px 0 60px;
}

.clinic-body-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}

/* ─── 5. MAIN COLUMN ────────────────────────────────────── */

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.5px;
  margin: 0 0 6px;
  line-height: 1.2;
}

.section-title em {
  font-style: normal;
  color: var(--primary);
}

.section-divider {
  border: none;
  border-top: 2px solid var(--light-bg);
  margin: 36px 0;
}

.clinic-profile {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}

.clinic-profile p { font-size: 1rem; margin: 0 0 14px; }

.cta-button,
input.cta-button {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 12px 30px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.cta-button:hover,
input.cta-button:hover {
  background: var(--orange-dark);
  color: var(--white);
  text-decoration: none;
}

/* Accreditations */
ul.accredited {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

ul.accredited li a {
  display: inline-block;
  padding: 5px 14px;
  background: var(--primary-pale);
  color: var(--primary);
  border: 1px solid rgba(102,51,153,0.2);
  border-radius: 20px;
  font-size: 0.8rem;

  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

ul.accredited li a:hover {
  background: var(--primary);
  color: var(--white);
}

.faq-link {
  font-size: 0.9rem;
  color: var(--grey-text);
}

.faq-link a {
  color: var(--primary);
  font-weight: 700;
}

.clinic-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 24px 0 12px;
}

/* ─── 6. SIDEBAR / INFO CARD ────────────────────────────── */

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: sticky;
  top: 68px;
}

.info-card-header {
  background: var(--primary);
  padding: 20px 24px;
}

.info-card-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.info-card-header p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin: 4px 0 0;
}

.info-card-form {
  padding: 20px 24px 8px;
}

.info-card-form input[type="text"],
.info-card-form input[type="email"],
.info-card-form input[type="tel"],
.info-card-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--heading);
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.info-card-form input:focus,
.info-card-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(102,51,153,0.1);
  background: var(--white);
}

.info-card-form textarea {
  min-height: 90px;
  resize: vertical;
}

.btn-form-submit {
  width: 100%;
  padding: 13px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 14px;
}

.btn-form-submit:hover { background: var(--orange-dark); }

.info-card-details {
  border-top: 1px solid var(--border);
  padding: 18px 24px 20px;
}

.info-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.info-detail-row:last-child { border-bottom: none; }

.info-detail-row svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-detail-row .detail-label {
  font-weight: 700;
  color: var(--heading);
  min-width: 55px;
  flex-shrink: 0;
}

.info-detail-row a {
  color: var(--primary);
  text-decoration: none;
}

.info-detail-row a:hover { text-decoration: underline; }

/* Opening times */
.opening-times-table {
  width: 100%;
  font-size: 0.82rem;
  border-collapse: collapse;
  margin-top: 4px;
}

.opening-times-table td {
  padding: 3px 0;
  color: var(--grey-text);
}

.opening-times-table td:first-child {
  font-weight: 600;
  color: var(--heading);
  width: 42%;
}

.opening-times-table tr.today td { color: var(--success); font-weight: 700; }

/* Social icons */
.social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.social-row a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--grey-text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-row a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  text-decoration: none;
}

/* Sidebar social row layout */
.sidebar-social-row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 0 6px;
}

.sidebar-social-row .social-row {
  flex: 1;
  padding-top: 0;
}


/* ─── 7. SPECIAL OFFERS ─────────────────────────────────── */

.special-offers-section {
  background: linear-gradient(135deg, var(--primary) 0%, #8b44cc 100%);
  padding: 56px 0 60px;
}

.special-offers-section .section-kicker { color: rgba(255,255,255,0.75); }
.special-offers-section .section-title  { color: var(--white); }
.special-offers-section .section-title em { color: rgba(255,255,255,0.6); }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.offer-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.22);
  transform: translateY(-4px);
}

/* With image: 16:9 top strip */
.offer-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--light-bg);
  flex-shrink: 0;
}

.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.offer-card:hover .offer-card-img img { transform: scale(1.04); }


/* Text area */
.offer-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 10px;
}

.offer-card-text { flex: 1; }

.offer-card-text h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 10px;
  line-height: 1.3;
}

.offer-card-text p {
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.65;
  margin: 0;
}

.offer-card-action {
  padding: 14px 20px 20px;
}

.get-offer-btn,
input.get-offer-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.get-offer-btn:hover,
input.get-offer-btn:hover { background: var(--orange-dark); }

/* ─── 8. TREATMENTS TABS ────────────────────────────────── */

.treatments-section {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0 60px;
}

.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 10px 22px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-button:hover,
.tab-button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tab-content { display: none; }
.tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Extra treatments block spans both columns */
.tab-content.active .extra-treatments-block {
  grid-column: 1 / -1;
}

/* Empty state message spans both columns */
.tab-content.active > p {
  grid-column: 1 / -1;
}

.treatment-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0;
  transition: var(--transition);
}

.treatment-item:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(102,51,153,0.08);
}

.item-info { flex: 1; }

.item-info p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 4px;
}

.treatment-link {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.treatment-link:hover { text-decoration: underline; }

.price-select {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.price-select p {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
  white-space: nowrap;
}

.select-btn,
input.select-btn {
  padding: 8px 18px;
  background: var(--green);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.select-btn:hover,
input.select-btn:hover { background: var(--green-dark); }

.extra-treatments-block {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ─── 9. MAP ─────────────────────────────────────────────── */

.map-container {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── 10. REVIEWS ───────────────────────────────────────── */

.reviews-section-wrap {
  background: var(--white);
  padding: 56px 0;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-score-big {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
}

.reviews-score-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  display: block;
}

.reviews-score-label {

  font-size: 0.8rem;
  color: var(--grey-text);
  display: block;
  margin-top: 2px;
}

.reviews-section-wrap .arrow-buttons { display: flex; gap: 8px; }

.reviews-section-wrap .arrow {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-text);
  transition: var(--transition);
}

.reviews-section-wrap .arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.reviews-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.reviews-container::-webkit-scrollbar { display: none; }

.review {
  flex-shrink: 0;
  width: 290px;
  scroll-snap-align: start;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.review .name  { font-size: 0.9rem; font-weight: 700; color: var(--heading); margin: 0 0 4px; }
.review .stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 1px; margin: 0 0 4px; }
.review .location { font-size: 0.78rem; color: var(--grey-text); margin: 0 0 2px; }
.review .date  { font-size: 0.75rem; color: #aaa; margin: 0 0 10px; }
.review .main  { font-size: 0.88rem; line-height: 1.6; color: var(--grey-text); margin: 0; }

.reviews-more-link {
  text-align: center;
  padding-top: 22px;
  font-size: 0.9rem;
  color: var(--grey-text);
}

.reviews-more-link a { color: var(--primary); font-weight: 700; }

/* ─── 11. STAFF  (matches .advisers-grid-section style) ─── */

.staff-section-wrap {
  background: var(--light-bg);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

/* Grid: auto-fill responsive columns matching .advisers-grid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 28px;
}

/* Card shell — matches .adviser-card */
.staff-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.staff-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* Photo area — matches .adviser-card-photo */
.staff-card-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
}

.staff-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.4s;
  display: block;
}

.staff-card:hover .staff-card-photo img {
  opacity: 1;
  transform: scale(1.03);
}

/* Initials fallback — matches .adviser-card-initials */
.staff-card-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Body area — matches .adviser-card-body */
.staff-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Job-title badge — matches .adviser-card-speciality */
.staff-card .subtitle {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  align-self: flex-start;
}

/* Name — matches .adviser-card-name */
.staff-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  margin: 0 0 8px;
}

/* Description — matches .adviser-card-desc */
.staff-card p {
  font-size: 0.85rem;
  color: var(--grey-text);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Footer link — matches .adviser-card-footer + .adviser-card-link */
.staff-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.staff-card a.more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: color 0.2s;
}

.staff-card:hover a.more { color: var(--primary); text-decoration: none; }

/* ─── 12. FAQ  (matches treatment page .faq-wrapper style) ── */

.faq-section-wrap {
  background: var(--white);
  padding: 56px 0;
}

/* Wrapper for all items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* Individual accordion item — uses <details> */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--primary); }

/* Clickable summary row */
.faq-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
  transition: background 0.15s;
  line-height: 1.4;
  user-select: none;
}

.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { background: #faf5ff; }

/* Rotating chevron icon */
.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--light-bg);
  border-radius: 50%;
  transition: transform 0.25s, background 0.2s;
  font-size: 0.65rem;
  color: var(--primary);
  border: 1px solid var(--border);
  margin-left: auto;
}

.faq-item[open] .faq-chevron {
  transform: rotate(90deg);
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Answer body */
.faq-answer {
  padding: 0 20px 18px 20px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.75;
  margin: 0;
}

.faq-ask-cta {
  text-align: center;
  padding-top: 28px;
}

.faq-ask-cta p {
  font-size: 0.95rem;
  color: var(--grey-text);
  margin-bottom: 14px;
}

/* Purple override for Ask a Question button */
.cta-button--purple,
input.cta-button--purple {
  background: var(--primary);
}

.cta-button--purple:hover,
input.cta-button--purple:hover {
  background: var(--primary-light);
}

.faq-ask-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--grey-text);
}

.faq-ask-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.faq-ask-note a:hover { text-decoration: underline; }

/* ─── 13. BANNER STRIP ──────────────────────────────────── */

.banner-multiple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.banner-multiple .image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.banner-multiple .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.banner-multiple .image:hover img { transform: scale(1.04); }

/* ─── 14. UTILITIES ─────────────────────────────────────── */

.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }
.pt-30 { padding-top: 30px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.bg-grey { background-color: var(--light-bg); }
.text-center { text-align: center; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── 15. RESPONSIVE ────────────────────────────────────── */

@media (max-width: 1024px) {
  .clinic-body-grid {
    grid-template-columns: 1fr;
  }

  .info-card { position: static; }

  .clinic-sidebar { order: 2; }
  .clinic-main    { order: 1; }
}

@media (max-width: 900px) {
  .clinic-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .clinic-photo-col { max-width: 480px; }

  .clinic-hero-name { font-size: 1.9rem; }

  .banner-multiple { grid-template-columns: 1fr; }

  /* Mobile subnav */
  .clinic-subnav-inner { display: none; }
  .clinic-subnav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .clinic-subnav-cta { display: none; }

  .offers-grid { grid-template-columns: 1fr; }

  .tab-content.active { grid-template-columns: 1fr; }

  .treatment-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-select {
    width: 100%;
    justify-content: space-between;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .clinic-hero { padding: 32px 0 28px; }
  .clinic-hero-name { font-size: 1.6rem; }

  .tel-desktop { display: none; }
  .tel-mobile  { display: block; }

  .section-title { font-size: 1.35rem; }

  .tabs { gap: 4px; }
  .tab-button { padding: 8px 14px; font-size: 13px; }
}