/* ============================================================
   Dale Tyndall Physiotherapy
   Main Stylesheet
   Colours: #798fa3 (primary blue) | #bd2e4a (accent red)
============================================================ */

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}
body {
  font-family: "Raleway", sans-serif;
  color: #2c3a42;
  background: #fff;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

/* ── COLOUR VARIABLES ── */
:root {
  --primary: #4a6381;
  --primary-dark: #4a6381;
  --primary-pale: #eef2f5;
  --accent: #bd2e4a;
  --accent-dark: #9a2440;
  --sand: #bd2e4a;
  --sand-light: #9a2440;
  --grey-bg: #f2f3f2;
  --white: #ffffff;
  --text-dark: #1e2e38;
  --text-mid: #4a6070;
  --text-light: #7a9199;
  --script: "Dancing Script", cursive;
  --sans: "Raleway", sans-serif;
}

/* ── LAYOUT ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}
.script {
  font-family: var(--script);
  color: var(--text-dark);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-outline-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-fill-white {
  color: var(--text-dark);
  background: #fff;
  border-color: #fff;
}
.btn-fill-white:hover {
  background: var(--grey-bg);
}

.btn-fill-accent {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.btn-fill-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline-dark {
  color: var(--text-dark);
  border-color: var(--text-dark);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--text-dark);
  color: #fff;
}

.btn-outline-primary {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-outline-white-on-bg {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}
.btn-outline-white-on-bg:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../images/physio.webp") center center / cover no-repeat;
  padding: 40px 0 160px;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 22, 32, 0.45) 0%,
    rgba(8, 18, 26, 0.75) 55%,
    rgba(0, 0, 0, 0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-logo-circle {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.hero-logo-circle .initials {
  font-family: var(--script);
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hero-name {
  font-family: var(--script);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 6px 4px rgba(0, 0, 0, 0.45);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 8px 0;
}
.hero-pr {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}
.hero-tagline {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.hero-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.85;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}
.hero-shape svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================================================
   STICKY NAV
============================================================ */
#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5eaed;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}
.nav-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 86px;
  position: relative;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary-dark);
}
.nav-cta {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-logo {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.nav-logo img {
  width: 150px;
  height: auto;
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.25s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e5eaed;
  padding: 14px 28px 20px;
}
.mobile-nav a {
  padding: 12px 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid #f0f4f5;
}
.mobile-nav a:last-child {
  border: none;
}
.mobile-nav.open {
  display: flex;
}

/* ============================================================
   ABOUT US
============================================================ */
.about-frame {
  background: var(--grey-bg);
  padding: 24px 32px 40px;
}
#about {
  position: relative;
  background: url("../images/prac2.png") center center / cover no-repeat;
  padding: 0;
  overflow: hidden;
  border-radius: 64px;
}
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 22, 32, 0.45) 0%,
    rgba(8, 18, 26, 0.75) 55%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 0;
}
@media (max-width: 620px) {
  .about-frame {
    padding: 16px 12px 24px;
  }
  #about {
    border-radius: 40px;
  }
}

.about-top {
  display: flex;
  justify-content: flex-end;
  padding: 48px 48px 0;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-top h2 {
  font-size: 3.8rem;
  color: #fff;
  font-weight: 500;
  opacity: 0.95;
}

.about-layout {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: start;
  padding: 0 48px 80px;
  gap: 0;
  position: relative;
  z-index: 1;
}
.about-photo-col {
  padding-top: 20px;
  position: relative;
}
.about-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-pale);
  position: relative;
}
.about-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-circle-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
}
.about-circle-placeholder span {
  font-size: 4rem;
  opacity: 0.25;
}
.about-circle-placeholder p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

.about-watermark {
  position: absolute;
  top: 20px;
  left: -30px;
  width: 260px;
  pointer-events: none;
  line-height: 0;
}
.about-watermark img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.18;
}
.about-text-col {
  padding: 60px 0 0 60px;
  position: relative;
}
.about-h1 {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 14px 0;
  text-align: right;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  line-height: 1.25;
}
.about-who-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  text-align: right;
}
.about-panels {
  position: relative;
}
.about-panel {
  display: none;
  text-align: right;
}
.about-panel.active {
  display: block;
}
.about-panel p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
}
.about-dots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  right: -36px;
  top: 4px;
}
.about-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: 0.2s;
}
.about-dot.active {
  background: #fff;
  border-color: #fff;
}
.about-location {
  margin-top: 32px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
}
.about-location h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

/* ============================================================
   WHAT WE TREAT — SERVICES
============================================================ */
#services {
  background: #fff;
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}
#services::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -140px;
  width: 460px;
  height: 460px;
  background: url("../images/logoWhite.webp") center/contain no-repeat;
  opacity: 0.09;
  filter: brightness(0.2);
  transform: translateY(-50%) scaleX(-1);
  pointer-events: none;
  z-index: 0;
}
#services > .container {
  max-width: 100%;
  padding: 0;
  position: relative;
  z-index: 1;
}
#services::before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  background: var(--grey-bg);
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
  margin-bottom: 60px;
}
.services-heading {
  text-align: center;
  margin-bottom: 20px;
}
.services-heading h2 {
  font-size: 3.8rem;
  color: var(--text-dark);
  font-weight: 500;
}
.services-intro-text {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.services-row {
  margin-top: 60px;
}
.svc {
  text-align: center;
  padding: 0 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc:hover {
  transform: translateY(-8px);
}
.svc-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 2.2rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              background 0.3s ease;
}
.svc:hover .svc-circle {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.svc-circle svg {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc:hover .svc-circle svg {
  transform: scale(1.08);
}
.svc-circle.c-primary {
  background: var(--primary-dark);
  color: #fff;
}
.svc-circle.c-sand {
  background: var(--sand-light);
  color: #fff;
}
.svc-circle.c-accent {
  background: var(--accent);
  color: #fff;
}
.svc-circle svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  color: #fff;
}
.svc h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.svc p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.svc .btn {
  font-size: 0.67rem;
  padding: 10px 22px;
}

/* ============================================================
   OUR DIFFERENCE
============================================================ */
#difference {
  background: var(--grey-bg);
  padding-bottom: 80px;
}
.diff-blob {
  background: var(--primary-dark);
  border-radius: 0 0 50% 50% / 0 0 80px 80px;
  padding: 80px 0 110px;
}
.diff-heading {
  text-align: center;
  margin-bottom: 12px;
}
.diff-heading h2 {
  font-size: 3.8rem;
  color: #fff;
  font-weight: 500;
}
.diff-intro {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 100px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 48px;
}
.diff-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.diff-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
}
.diff-copy h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.diff-copy p {
  font-size: 0.87rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}
.promise {
  text-align: center;
  padding: 64px 20px 0;
}
.promise h2 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 14px;
}
.promise p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.9;
}

/* ============================================================
   WHAT TO EXPECT AT YOUR APPOINTMENT
============================================================ */
#process {
  position: relative;
  padding: 140px 0 150px;
  background:
    radial-gradient(circle at 8% 18%, rgba(189, 46, 74, 0.10), transparent 38%),
    radial-gradient(circle at 92% 82%, rgba(74, 99, 129, 0.14), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(74, 99, 129, 0.06), transparent 30%),
    radial-gradient(rgba(74, 99, 129, 0.10) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--grey-bg);
  overflow: hidden;
}
#process > .container {
  position: relative;
  z-index: 1;
}
.process-shape-top,
.process-shape-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}
.process-shape-top {
  top: 0;
  height: 100px;
}
.process-shape-bottom {
  bottom: 0;
  height: 100px;
}
.process-shape-top svg,
.process-shape-bottom svg {
  width: 100%;
  height: 100%;
}
.process-heading {
  text-align: center;
  margin-bottom: 56px;
}
.process-heading h2 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 14px;
}
.process-intro {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
}
.expect-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.expect-image {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(74, 99, 129, 0.12);
  background: var(--grey-bg);
  min-height: 360px;
}
.expect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.expect-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 30px 28px;
  box-shadow: 0 10px 32px rgba(74, 99, 129, 0.12);
  border-top: 4px solid var(--accent);
}
.expect-card-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.expect-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.expect-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}
.expect-card ul {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.expect-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}
.expect-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.expect-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eef2f5;
  font-style: italic;
  font-size: 0.82rem;
}
.process-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ============================================================
   MEET THE TEAM
============================================================ */
#team {
  background: var(--primary-dark);
  padding: 160px 0 160px;
  position: relative;
  overflow: hidden;
}
.team-shape-top,
.team-shape-bottom {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  line-height: 0;
  z-index: 2;
}
.team-shape-top { top: 0; }
.team-shape-bottom { bottom: 0; }
.team-shape-top svg,
.team-shape-bottom svg {
  display: block;
  width: 100%;
  height: 100%;
}
#team .script {
  color: #fff;
  text-shadow: 0 6px 4px rgba(0, 0, 0, 0.45);
}
.team-heading {
  text-align: center;
  margin-bottom: 50px;
}
.team-heading h2 {
  font-size: 3.8rem;
  color: #fff;
  font-weight: 500;
}
.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}
.team-member {
  max-width: 1140px;
  margin: 0 auto 60px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
.team-intro-line {
  font-style: italic;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 14px !important;
}
.team-photo-col {
  position: relative;
}
.team-photo-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}
.team-photo-watermark {
  position: absolute;
  top: -70px;
  left: -120px;
  width: 550px;
  pointer-events: none;
  line-height: 0;
  z-index: 0;
}
.team-photo-watermark img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.12;
}
.team-photo {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-pale);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.2;
}
.team-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}
.team-info p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}
.team-member-2 {
  background: var(--sand);
  padding: 60px 0;
  margin-top: 20px;
}
.team-member-2-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: start;
}
.team-member-2 .team-name,
.team-member-2 .team-role {
  color: #fff;
}
.team-member-2 .team-info p {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   FEES & PAYMENTS
============================================================ */
#fees {
  background: var(--primary-dark);
  padding: 80px 0;
}
.fees-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.fees-left h2 {
  font-size: 3.8rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 22px;
}
.fees-lead {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 28px;
}
.fees-left h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 24px;
}
.fees-left p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}
.fees-left ul {
  list-style: none;
  margin-top: 4px;
}
.fees-left ul li {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  padding: 3px 0;
}
.fees-left ul li::before {
  content: "– ";
  color: var(--sand-light);
}
.fees-italic {
  font-style: italic;
}
.fees-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fee-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  text-align: center;
}
.fee-card h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.fee-card .duration {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.fee-card .btn {
  font-size: 0.67rem;
  padding: 10px 24px;
}

/* ============================================================
   CONTACT US
============================================================ */
.contact-frame {
  background: var(--grey-bg);
  padding: 40px 32px 0;
}
#contact {
  position: relative;
  background: url("../images/prac2.png") center center / cover no-repeat;
  padding: 100px 0 80px;
  overflow: hidden;
  border-radius: 64px 64px 0 0;
}
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 22, 32, 0.45) 0%,
    rgba(8, 18, 26, 0.75) 55%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 0;
}
#contact > .container {
  position: relative;
  z-index: 1;
}
.contact-heading {
  text-align: center;
  margin-bottom: 24px;
}
.contact-heading h2 {
  font-size: 3.8rem;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 620px) {
  .contact-frame {
    padding: 24px 12px 0;
  }
  #contact {
    border-radius: 40px 40px 0 0;
  }
}
.contact-book-row {
  text-align: center;
  margin-bottom: 56px;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-note {
  margin-top: 14px;
  font-style: italic;
  font-size: 0.82rem;
}
.contact-card {
  background: var(--grey-bg);
  border-radius: 22px;
  padding: 52px 36px 40px;
  text-align: center;
  position: relative;
  margin-top: 28px;
}
.contact-card-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-card-icon svg {
  width: 26px;
  height: 26px;
}
.contact-card-icon.i-sand {
  background: var(--sand-light);
}
.contact-card-icon.i-sand2 {
  background: var(--sand);
}
.contact-card h3 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.contact-card p,
.contact-card a {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
}
.contact-card a:hover {
  color: var(--primary-dark);
}
.contact-map {
  max-width: 1000px;
  margin: 60px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--grey-bg);
  min-height: 420px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
.social-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.social-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(189, 46, 74, 0.25);
  transition: background 0.25s ease,
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}
.social-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(189, 46, 74, 0.45);
}
.social-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--text-dark);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}
.footer-links-row a {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  transition: 0.2s;
}
.footer-links-row a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copyright {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}
.footer-practice {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}
.footer-credit {
  margin-top: 14px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-credit a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
#scrolltop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(189, 46, 74, 0.35);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
#scrolltop svg {
  width: 18px;
  height: 18px;
}
#scrolltop.show {
  opacity: 1;
  pointer-events: auto;
}
#scrolltop:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(189, 46, 74, 0.45);
}

/* ============================================================
   LEGAL PAGES (terms.html, privacy.html)
============================================================ */
.legal-page {
  background: #fff;
  padding: 110px 0 90px;
  min-height: 60vh;
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
}
.legal-inner h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #9a2440;
  font-family: var(--script);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 4px rgba(0, 0, 0, 0.45);
}
.legal-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
}
.legal-inner h2 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 44px 0 14px;
}
.legal-inner h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 10px;
}
.legal-inner p {
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.legal-inner ul,
.legal-inner ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal-inner li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.legal-inner a {
  color: var(--accent);
  border-bottom: 1px solid rgba(189, 46, 74, 0.35);
  transition: color 0.2s, border-color 0.2s;
}
.legal-inner a:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}
.legal-inner strong {
  color: var(--text-dark);
}

/* ============================================================
   COOKIE BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid #e5eaed;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  transform: translateY(120%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-text {
  flex: 1;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}
.cookie-text a {
  color: var(--accent);
  border-bottom: 1px solid rgba(189, 46, 74, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-text a:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}
#cookieAccept {
  border: none;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 20px;
  }
  .cookie-text {
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
    padding: 0 28px 60px;
  }
  .about-photo-col {
    display: flex;
    justify-content: center;
  }
  .about-text-col {
    padding: 40px 0 0;
  }
  .about-h1,
  .about-who-label,
  .about-panel,
  .about-location {
    text-align: left;
  }
  .about-dots {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 28px;
    right: auto;
    left: auto;
    top: auto;
    transform: none;
  }
  .about-circle {
    width: 280px;
    height: 280px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 680px;
    padding: 0 28px;
  }
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 28px;
  }
  .expect-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .expect-image {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 240px;
  }
  .team-member {
    display: block;
    padding: 0 24px;
  }
  .team-photo-col {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
  }
  .team-info {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .team-info p {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .team-photo-wrap,
  .team-photo {
    width: 280px;
    height: 280px;
  }
  .team-photo-watermark {
    width: 360px;
    left: -40px;
    top: -40px;
  }
  .team-member-2-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .fees-layout {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .container {
    padding: 0 24px;
  }
  .nav-wrap {
    padding: 0 24px;
  }
  .about-top {
    padding: 36px 24px 0;
  }
}
@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    max-width: 420px;
  }
  .team-member {
    padding: 0 16px;
  }
  .team-photo-col,
  .team-info {
    min-width: 0;
  }
  .team-photo-wrap,
  .team-photo {
    width: 240px;
    height: 240px;
  }
  .team-photo-watermark {
    display: none;
  }
  .team-heading h2 {
    font-size: 2.6rem;
  }
  .team-name,
  .team-role {
    letter-spacing: 0.06em;
    word-wrap: break-word;
  }
  .team-name {
    font-size: 0.72rem;
  }
  .team-role {
    font-size: 0.65rem;
  }
  .expect-grid {
    grid-template-columns: 1fr;
  }
  .expect-image {
    min-height: 200px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .diff-blob {
    border-radius: 0 0 30% 30% / 0 0 50px 50px;
  }
  .footer-links-row {
    gap: 16px;
  }
}

/* ============================================================
   ELECTROTHERAPY
============================================================ */
#electrotherapy {
  background: var(--primary-dark);
  color: #fff;
  padding: 140px 0 130px;
  position: relative;
  overflow: hidden;
}
.electro-shape-top,
.electro-shape-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.electro-shape-top {
  top: 0;
  height: 100px;
}
.electro-shape-bottom {
  bottom: 0;
  height: 100px;
}
.electro-shape-top svg,
.electro-shape-bottom svg {
  width: 100%;
  height: 100%;
}
.electro-inner {
  position: relative;
  z-index: 2;
}
.electro-heading {
  text-align: center;
  margin-bottom: 56px;
}
.electro-heading h2 {
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 6px 4px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
  line-height: 1.1;
}
.electro-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
}
.electro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.electro-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 30px 26px 26px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.electro-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(189, 46, 74, 0.5);
}
.electro-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}
.electro-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}
.electro-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.electro-card p {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}
.electro-cta-row {
  margin-top: 56px;
  text-align: center;
}
.electro-cta-row p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}
.electro-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.electro-wa svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   TEAM CTA + intro sub
============================================================ */
.team-intro-sub {
  font-size: 0.92rem;
  margin-top: 12px;
}
.team-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ============================================================
   PHILOSOPHY & JOURNEY
============================================================ */
#philosophy {
  background: #fff;
  padding: 110px 0;
}
.philosophy-heading {
  text-align: center;
  margin-bottom: 60px;
}
.philosophy-heading h2 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.1;
}
.philosophy-intro {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}
.philosophy-col h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.philosophy-sub {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.philosophy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.philosophy-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f5;
}
.philosophy-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.philosophy-list li span {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
}
.journey-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: journey;
}
.journey-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 14px 0;
}
.journey-step {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
.journey-list li > div strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.journey-list li > div p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  margin: 0;
}
.journey-tagline {
  margin-top: 22px;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ============================================================
   FACILITIES & ACCESSIBILITY
============================================================ */
#facilities {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
  background: #1a2530;
}
.facilities-bg {
  position: absolute;
  top: -45%;
  left: 0;
  width: 100%;
  height: 190%;
  background: url("../images/prac.png") center center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}
#facilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 22, 32, 0.45) 0%,
    rgba(8, 18, 26, 0.75) 55%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 1;
}
#facilities > .container {
  position: relative;
  z-index: 2;
}
.facilities-heading {
  text-align: center;
  margin-bottom: 48px;
}
.facilities-heading h2 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.1;
  color: #fff;
}
.facilities-intro {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}
.facilities-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
}
.facility {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 16px rgba(74, 99, 129, 0.06);
}
.facility-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.facility-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.facility h4 {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  background: #fff;
  padding: 100px 0;
}
.testimonials-heading {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-heading h2 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.testimonial {
  background: var(--grey-bg);
  border-radius: 22px;
  padding: 32px 30px 28px;
  position: relative;
  margin: 0;
}
.testimonial-stars {
  color: #d4a020;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.testimonial blockquote {
  font-size: 0.92rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0 0 18px;
}
.testimonial figcaption {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

/* ============================================================
   FAQ ACCORDION
============================================================ */
#faq {
  background: var(--grey-bg);
  padding: 100px 0 110px;
}
.faq-heading {
  text-align: center;
  margin-bottom: 48px;
}
.faq-heading h2 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(74, 99, 129, 0.06);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.98rem;
  transition: background 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover {
  background: #fafbfc;
}
.faq-q {
  flex: 1;
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  transition: transform 0.3s ease;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::before {
  width: 12px;
  height: 2px;
}
.faq-toggle::after {
  width: 2px;
  height: 12px;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-a {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}
.faq-a p { margin: 0; }

/* ============================================================
   RESPONSIVE — new sections
============================================================ */
@media (max-width: 980px) {
  .electro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .electro-heading h2,
  .philosophy-heading h2,
  .facilities-heading h2,
  .testimonials-heading h2,
  .faq-heading h2,
  .process-heading h2,
  .team-heading h2 {
    font-size: 3rem;
  }
  .services-row-2 .svc:only-child,
  .services-row-2 {
    justify-items: center;
  }
}
@media (max-width: 620px) {
  .electro-grid {
    grid-template-columns: 1fr;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  #electrotherapy,
  #philosophy,
  #facilities,
  #testimonials,
  #faq,
  #process {
    padding: 70px 0 80px;
  }
  .faq-item summary {
    padding: 18px 20px;
    font-size: 0.92rem;
  }
  .faq-a {
    padding: 0 20px 20px;
  }
  .expect-card {
    padding: 28px 24px 24px;
  }
}
