/* ============================================================
   NEURO RESET CLINIC — Design System
   Premium private mental health clinic, London
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy: #0D1B2A;
  --navy-mid: #12253A;
  --teal: #2A7F7F;
  --teal-light: #3AA8A8;
  --teal-pale: #E8F5F5;
  --gold: #C9A84C;
  --cream: #F7F4EF;
  --cream-dark: #EDE9E1;
  --white: #FFFFFF;
  --text: #1E2D3D;
  --muted: #6B7A8D;
  --border: #D6DDE6;
  --success: #2ecc71;
  --error: #e74c3c;

  --font-body: 'Inter', sans-serif;
  --font-head: 'Playfair Display', serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(13, 27, 42, .08);
  --shadow-md: 0 6px 24px rgba(13, 27, 42, .12);
  --shadow-lg: 0 16px 48px rgba(13, 27, 42, .18);

  --transition: 0.3s ease;
  --nav-height: 76px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.lead {
  font-size: 1.15rem;
  color: var(--text);
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background: var(--navy);
}

.section--teal-pale {
  background: var(--teal-pale);
}

.text-center {
  text-align: center;
}

.text-teal {
  color: var(--teal);
}

.text-gold {
  color: var(--gold);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header p {
  margin-top: 14px;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--teal);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(42, 127, 127, .35);
}

.btn-primary:hover {
  background: var(--teal-light);
  box-shadow: 0 6px 28px rgba(42, 127, 127, .45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #b8943e;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.navbar.scrolled .nav-logo img {
  filter: none;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 100px;
  width: auto;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(255, 255, 255, .15);
}

.navbar.scrolled .nav-link:hover {
  background: var(--teal-pale);
  color: var(--teal);
}

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--navy);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  color: var(--text);
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--teal-pale);
  color: var(--teal);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/ketamine\ pictures/ketamine-treatment.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, .92) 0%, rgba(13, 27, 42, .65) 60%, rgba(42, 127, 127, .25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 127, 127, .2);
  border: 1px solid rgba(42, 127, 127, .4);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
}

.hero h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
}

.hero p.lead {
  color: rgba(255, 255, 255, .82);
  max-width: 600px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 56px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
}

.trust-pill svg {
  flex-shrink: 0;
}

/* ─── BENEFITS / STATS BAR ───────────────────────────────── */
.benefits-bar {
  background: var(--navy);
  padding: 40px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-item {
  text-align: center;
  color: var(--white);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(42, 127, 127, .2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item h4 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.benefit-item p {
  color: rgba(255, 255, 255, .6);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* ─── INTRO SECTION ──────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.intro-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-badge h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}

.intro-badge p {
  font-size: 0.8rem;
  margin: 0;
}

.intro-content h2 {
  margin-bottom: 20px;
}

.intro-content p {
  margin-bottom: 16px;
}

.special-interests {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ─── TREATMENT CARDS ────────────────────────────────────── */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.treatment-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.treatment-card-img {
  height: 220px;
  overflow: hidden;
}

.treatment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.treatment-card:hover .treatment-card-img img {
  transform: scale(1.05);
}

.treatment-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.treatment-card-body p {
  flex: 1;
  margin-bottom: 24px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* large card variant for /treatments.html */
.treatments-grid-lg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ─── DOCTOR CARDS ───────────────────────────────────────── */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  gap: 0;
  flex-direction: column;
  transition: var(--transition);
}

.doctor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.doctor-card-img {
  height: 280px;
  overflow: hidden;
  background: var(--cream);
}

.doctor-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.doctor-card-body {
  padding: 30px;
}

.doctor-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.doctor-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: block;
}

.doctor-card-body p {
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.doctor-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* full-page doctor section */
.doctor-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.doctor-profile:last-child {
  border-bottom: none;
}

.doctor-profile-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.doctor-profile-img img {
  width: 100%;
  object-fit: cover;
}

.doctor-profile-content h2 {
  margin-bottom: 8px;
}

.doctor-profile-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 24px;
  display: block;
}

.bio-section {
  margin-bottom: 28px;
}

.bio-section h4 {
  color: var(--teal);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.bio-section p {
  margin-bottom: 10px;
}

.bio-section ul {
  padding-left: 20px;
}

.bio-section ul li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 8px;
}

.bio-section ul li::before {
  content: '—';
  position: absolute;
  left: -12px;
  color: var(--teal);
}

/* ─── CONTACT / FORM SECTION ─────────────────────────────── */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 32px;
}

.contact-loc {
  margin-bottom: 22px;
}

.contact-loc h4 {
  color: var(--teal-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-loc p {
  color: rgba(255, 255, 255, .7);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

label .req {
  color: var(--teal);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 127, 127, .12);
}

input.error,
select.error,
textarea.error {
  border-color: var(--error);
}

.field-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 5px;
  display: none;
}

.field-error.visible {
  display: block;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7A8D' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal);
}

.checkbox-label span {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 400;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.92rem;
}

.radio-label input {
  accent-color: var(--teal);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 127, 127, .3);
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  color: var(--teal);
  margin-bottom: 14px;
}

.form-success p {
  color: var(--text);
}

.form-error-msg {
  display: none;
  padding: 14px 18px;
  background: #fdf0f0;
  border: 1px solid rgba(231, 76, 60, .25);
  border-radius: var(--radius-sm);
  color: var(--error);
  font-size: 0.9rem;
  margin-top: 14px;
}

.form-error-msg.visible {
  display: block;
}

/* questionnaire specific */
.questionnaire-section-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-pale);
  display: flex;
  align-items: center;
  gap: 10px;
}

.questionnaire-section-heading::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--teal);
  border-radius: 2px;
  display: block;
}

.what-happens-next {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
}

.what-happens-next h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.next-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.next-step p {
  color: rgba(255, 255, 255, .8);
  margin: 0;
}

.next-step h4 {
  color: var(--white);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ─── FAQ ACCORDION ──────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
  transition: var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--teal-pale);
  color: var(--teal);
}

.faq-item.open .faq-question {
  background: var(--teal);
  color: var(--white);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: rgba(255, 255, 255, .2);
}

.faq-icon svg {
  transition: transform var(--transition);
}

.faq-item.open .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 22px 28px;
  background: var(--cream);
}

.faq-answer-inner p {
  color: var(--text);
}

/* ─── LOCATIONS ──────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
}

.location-card-header {
  background: var(--navy);
  padding: 30px 32px;
  color: var(--white);
}

.location-card-header h3 {
  color: var(--white);
  margin-bottom: 6px;
}

.location-card-header p {
  color: rgba(255, 255, 255, .7);
  font-size: 0.9rem;
  margin: 0;
}

.location-card-body {
  padding: 28px 32px;
}

.location-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.location-detail-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.location-detail h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.location-detail p {
  font-size: 0.92rem;
  color: var(--text);
  margin: 0;
}

.location-detail a {
  color: var(--teal);
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(42, 127, 127, .08);
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  color: rgba(255, 255, 255, .75);
  max-width: 640px;
  margin-top: 14px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--teal-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .35);
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, .85);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-band-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── STICKY CTA ─────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 980;
  animation: fadeInUp 0.6s ease 1.5s both;
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  padding: 15px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 28px rgba(42, 127, 127, .45);
  transition: var(--transition);
}

.sticky-cta-btn:hover {
  background: var(--navy);
  box-shadow: 0 10px 36px rgba(13, 27, 42, .35);
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand img {
  height: 52px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .55);
  max-width: 280px;
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--teal-light);
}

.footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 8px;
  border-top: 0;
}

.footer-location h6 {
  color: var(--teal-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-location p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .55);
  margin: 0;
  line-height: 1.6;
}

.footer-location a {
  color: var(--teal-light);
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .35);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--teal-light);
}

.footer-disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .3);
  text-align: center;
  line-height: 1.6;
}

/* ─── RECAPTCHA NOTICE ───────────────────────────────────── */
.recaptcha-notice {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
}

.recaptcha-notice a {
  color: var(--teal);
  text-decoration: underline;
}

/* ─── PAGE SPECIFIC: INFUSION THERAPY ───────────────────── */
.clinical-info {
  background: var(--cream);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.clinical-info h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.clinical-info p {
  margin: 0;
  font-size: 0.92rem;
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.governance-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}

.governance-card svg {
  margin: 0 auto 16px;
  display: block;
}

.governance-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.governance-card p {
  font-size: 0.88rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .doctor-profile {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .treatments-grid,
  .treatments-grid-lg {
    grid-template-columns: 1fr 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .doctors-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    color: var(--white) !important;
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, .05);
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .treatments-grid,
  .treatments-grid-lg {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .doctor-profile {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .governance-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    bottom: 16px;
    right: 16px;
  }

  .sticky-cta-btn {
    padding: 13px 20px;
    font-size: 0.85rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-locations {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }
}