/* =============================
   Design Tokens & Base
============================= */
:root {
  --primary-green: #1A3046;
  --dark-green: #12233A;
  --accent-green: #16A34A;
  --accent-light: #DCFCE7;
  --accent-border: #BBF7D0;
  --success-accent: #F59E0B;
  --dark-navy: #0F172A;
  --background: #FFFFFF;
  --section-bg: #F8FAFC;
  --border: #E2E8F0;
  --heading: #0F172A;
  --paragraph: #64748B;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, .06);
  --shadow-medium: 0 14px 36px rgba(15, 23, 42, .1);
  --shadow-large: 0 20px 52px rgba(15, 23, 42, .14);
  --radius-card: 20px;
  --radius-image: 24px;
  --radius-button: 14px;
  --container: 1160px;
  --header-height: 68px;
  --font-heading: "Montserrat", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
  --ease: 300ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.hero-frame img,
.about-frame img,
.clinic-card img,
.founder-card img,
.treatment-card-image img,
.premium-contact-center img {
  filter: saturate(.92) contrast(.98) brightness(1.02);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.soft-section {
  background: var(--section-bg);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent-green);
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  max-width: 660px;
  margin: 14px 0 16px;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.08;
}

h1 span {
  color: var(--heading);
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

h3 {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 600;
  line-height: 1.3;
}

h4,
h5,
h6 {
  font-weight: 600;
}

p {
  max-width: 68ch;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  margin: 12px 0 10px;
}

.section-heading p,
.hero-copy,
.about-content > p,
.founder-content > p,
.faq-intro p,
.cta-panel p {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  font-weight: 400;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-button);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--dark-green);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark-navy);
}

.btn-secondary:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  border: 1px solid transparent;
  background: var(--primary-green);
  color: var(--white);
}

.btn-light:hover {
  background: var(--dark-green);
}

.btn-instagram {
  background: var(--primary-green);
  color: var(--white);
  border: none;
}

.btn-instagram:hover {
  background: var(--dark-green);
  box-shadow: var(--shadow-medium);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* =============================
   Focus Visible (Accessibility)
============================= */
:focus-visible {
  outline: 3px solid var(--accent-green);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-green);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--accent-light);
}

.treatment-card-btn:focus-visible {
  outline: 3px solid var(--accent-green);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--accent-light);
}

.nav-link:focus-visible {
  outline: 3px solid var(--accent-green);
  outline-offset: 6px;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--accent-green);
  outline-offset: 3px;
}

.floating-btn:focus-visible {
  outline: 3px solid var(--accent-green);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--accent-light);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--accent-green);
  outline-offset: 3px;
}

.social-links a:focus-visible {
  outline: 3px solid var(--accent-green);
  outline-offset: 3px;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
}

/* =============================
   Navigation
============================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(16px);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
}

.navbar {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: flex;
  width: 176px;
  flex: 0 0 auto;
  align-items: center;
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.nav-link {
  position: relative;
  padding: 23px 0 21px;
  color: var(--paragraph);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: color var(--ease);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-green);
  content: "";
  opacity: 0;
  transform: scaleX(.7);
  transition: opacity var(--ease), transform var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  background: var(--section-bg);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--dark-navy);
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================
   Hero
============================= */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background:
    linear-gradient(135deg, rgba(11,31,54,0.88) 0%, rgba(15,39,68,0.82) 45%, rgba(18,45,73,0.75) 100%),
    url('assets/images/totalfounder.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  gap: 12px;
}

.mini-feature {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
}

.mini-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
}

.mini-feature p {
  color: var(--dark-navy);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-image);
  background: var(--section-bg);
  box-shadow: var(--shadow-soft);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}

.image-frame:hover img {
  transform: scale(1.008);
}

.hero-frame {
  aspect-ratio: 4.25 / 4.8;
}

.hero-frame img,
.about-frame img,
.clinic-card img {
  object-position: center;
}

/* ---------- Home Hero – Dark Background Overrides ---------- */
.hero-visual {
  display: none;
}

.hero-content {
  max-width: 700px;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .9);
}

.hero-content h1,
.hero-content h1 span {
  color: #fff;
}

.hero .hero-copy {
  color: rgba(255, 255, 255, .78);
}

.hero .mini-feature {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}

.hero .mini-icon {
  background: rgba(255, 255, 255, .1);
  color: var(--accent-green);
}

.hero .mini-feature p {
  color: rgba(255, 255, 255, .85);
}

.floating-card {
  position: absolute;
  bottom: 24px;
  left: -24px;
  display: flex;
  width: min(292px, calc(100% - 24px));
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.floating-icon,
.service-icon,
.card-icon,
.stat-icon {
  display: grid;
  place-items: center;
  background: var(--accent-light);
  color: var(--accent-green);
}

.floating-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 14px;
}

.floating-icon svg {
  width: 22px;
  height: 22px;
}

.floating-card strong {
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
}

.floating-card p {
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.4;
}

/* =============================
   Services
============================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 210px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.service-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.service-card h3 {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.service-card p {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.55;
}

/* =============================
   About
============================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 64px;
}

.about-frame {
  aspect-ratio: 1 / 1.05;
}

.about-content h2 {
  margin: 16px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.principle-grid article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
}

.principle-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.principle-grid p {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.62;
}

/* =============================
   Founder
   ============================= */
.founder-grid {
  display: grid;
  grid-template-columns: .42fr .58fr;
  align-items: start;
  gap: 64px;
}

.founder-image {
  display: flex;
  justify-content: center;
}

.founder-card {
  width: min(100%, 360px);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease), box-shadow var(--ease);
}

.founder-card img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-image:hover .founder-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-large);
}

.founder-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 16px 0 12px;
}

.founder-content > p + p {
  margin-top: 14px;
}

.founder-signature {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 28px;
}

.founder-sig-name {
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
}

.founder-sig-role {
  color: var(--primary-green);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
}

.founder-quote {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 3px solid var(--primary-green);
  border-radius: 0 14px 14px 0;
  background: #F8FAFC;
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
}

/* =============================
   Why Choose Us
============================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: none;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.why-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
}

.why-card h3 {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.why-card p {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.55;
}

/* =============================
   Journey
============================= */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.timeline article {
  position: relative;
  min-height: 120px;
  padding: 18px;
  border-right: 1px solid var(--border);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 1;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-green);
  content: ">";
  font-size: .72rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.timeline span {
  display: block;
  margin-bottom: 24px;
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
}

.timeline h3 {
  max-width: 150px;
  font-family: var(--font-heading);
  font-weight: 700;
}

/* =============================
   Conditions & Benefits
============================= */
.condition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.condition-grid span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--dark-navy);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
}

.condition-grid span::before {
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--primary-green);
  content: "";
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.benefit-card h3 {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.benefit-card p {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.55;
}

/* =============================
   Statistics
============================= */
.stats {
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 18px;
  border-right: 1px solid var(--border);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
}

.stat-card p {
  grid-column: 2;
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.35;
}

/* =============================
   FAQ
============================= */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-intro h2 {
  margin: 16px 0 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.faq-list details[open] {
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: var(--dark-navy);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--primary-green);
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 18px 16px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.6;
}

/* =============================
   Contact
============================= */
.contact-grid {
  display: grid;
  grid-template-columns: .95fr .88fr 1.08fr;
  align-items: stretch;
  gap: 18px;
}

.contact-info,
.contact-form,
.clinic-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  font-style: normal;
}

.contact-info h3 {
  margin-bottom: 6px;
}

.contact-info a,
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px;
  border-radius: 15px;
  transition: background var(--ease), transform var(--ease);
}

.contact-info a:hover {
  background: var(--section-bg);
  transform: translateY(-1px);
}

.contact-info span,
.info-row span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-green);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
}

.contact-info strong {
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
}

.contact-info p {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-info a[href*="instagram"] span {
  background: var(--accent-light);
  color: var(--accent-green);
}

.clinic-card {
  overflow: hidden;
}

.clinic-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
}

.optional-tag {
  color: var(--paragraph);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .75rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--section-bg);
  color: var(--dark-navy);
  outline: none;
  padding: 11px 13px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary-green);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.55;
}

.form-field.invalid input,
.form-field.invalid textarea {
  border-color: #FCA5A5;
  background: #FFF7F7;
}

.error-message {
  min-height: 14px;
  color: #B91C1C;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 400;
  line-height: 1.3;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 18px;
  color: var(--primary-green);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
}

/* =============================
   Premium Contact Page
============================= */
.premium-contact {
  padding: 64px 0 72px;
}

.premium-contact .section-heading {
  margin-bottom: 40px;
}

.premium-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.premium-contact-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.premium-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--border);
}

.premium-contact-card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-green);
}

.premium-contact-card-icon svg {
  width: 18px;
  height: 18px;
}

.premium-contact-card-icon.instagram-icon {
  background: var(--accent-light);
  color: var(--accent-green);
}

.premium-contact-card-body {
  min-width: 0;
}

.premium-contact-card-title {
  display: block;
  margin-bottom: 1px;
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.premium-contact-card-value {
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.premium-contact-card-link {
  color: inherit;
  text-decoration: none;
}

.premium-contact-card-link:hover .premium-contact-card-value {
  color: var(--primary-green);
}

.premium-contact-center {
  border-radius: 18px;
  overflow: hidden;
  min-height: 400px;
}

.premium-contact-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-contact-right {
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.premium-form-heading {
  margin-bottom: 4px;
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
}

.premium-form-subtext {
  margin-bottom: 18px;
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.55;
}

.premium-form {
  display: grid;
  gap: 16px;
}

.premium-form .form-field label {
  font-family: var(--font-heading);
  font-size: .75rem;
}

.premium-form .form-field input,
.premium-form .form-field textarea {
  padding: 11px 14px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: .85rem;
}

.premium-form .form-field textarea {
  min-height: 110px;
}

.premium-form .btn-primary {
  min-height: 44px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  margin-top: 4px;
}

/* Premium CTA Section (Home page bottom) */
.premium-home-cta {
  padding: 64px 0 72px;
  background: var(--white);
}

.premium-home-cta .section-heading {
  margin-bottom: 32px;
}

.premium-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 44px 40px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.premium-cta-inner::before {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: .45;
  content: "";
  pointer-events: none;
}

.premium-cta-inner::after {
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #F8FAFC;
  content: "";
  pointer-events: none;
}

.premium-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.premium-cta-content .eyebrow {
  border-color: var(--accent-border);
  background: var(--accent-light);
  color: var(--accent-green);
}

.premium-cta-content h2 {
  max-width: 540px;
  margin: 14px 0 10px;
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.premium-cta-content p {
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  font-weight: 400;
  line-height: 1.6;
}

.premium-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* =============================
   Advanced Physiotherapy Treatments
============================= */
.treatments-section {
  padding: 72px 0 80px;
  background: var(--white);
}

.treatments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.treatment-card {
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

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

.treatment-card--featured {
  position: relative;
}

.treatment-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
  background: var(--primary-green);
  border-radius: 20px 20px 0 0;
}

.treatment-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--section-bg);
}

.treatment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.23, 1, .32, 1);
}

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

.treatment-card-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.treatment-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
}

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

.treatment-card-body h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: clamp(.95rem, 1.1vw, 1.08rem);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.3;
}

.treatment-card-body > p {
  font-family: var(--font-body);
  font-size: clamp(.8rem, .9vw, .87rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--paragraph);
  margin-bottom: 18px;
}

.treatment-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  margin-top: auto;
  list-style: none;
}

.treatment-benefit-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  color: var(--accent-green);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .01em;
}

.treatment-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-button);
  background: var(--primary-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3px;
  line-height: 1.2;
  width: fit-content;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.treatment-card-btn:hover {
  background: var(--dark-green);
  box-shadow: var(--shadow-medium);
  transform: translateY(-1px);
}

.treatment-card-btn svg {
  width: 15px;
  height: 15px;
  transition: transform var(--ease);
  flex: 0 0 auto;
}

.treatment-card:hover .treatment-card-btn svg {
  transform: translateX(3px);
}

/* --- Treatments Responsive --- */
@media (max-width: 980px) {
  .treatments-grid {
    gap: 20px;
    margin-top: 40px;
  }

  .treatment-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .treatment-card:nth-child(4) {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .treatments-section {
    padding: 56px 0 64px;
  }

  .treatments-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin-top: 32px;
    padding: 4px 24px 16px;
    scroll-padding-left: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .treatments-grid::-webkit-scrollbar {
    display: none;
  }

  .treatment-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    min-width: 260px;
  }

  .treatment-card:nth-child(4) {
    margin-left: 0;
    margin-right: 0;
  }

  .treatment-card:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
  }

  .treatment-card.visible {
    opacity: 1;
    transform: none;
  }

  .treatment-card--featured {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: var(--accent-green);
  }

  .treatment-card--featured .treatment-card-icon {
    background: var(--accent-green);
    color: var(--white);
  }
}

@media (max-width: 520px) {
  .treatments-section {
    padding: 48px 0 56px;
  }

  .treatments-grid {
    gap: 14px;
    padding: 4px 18px 14px;
    scroll-padding-left: 18px;
  }

  .treatment-card {
    flex: 0 0 88%;
    min-width: 240px;
    border-radius: 18px;
  }

  .treatment-card-body {
    padding: 20px 20px 24px;
  }

  .treatment-benefit-tag {
    font-size: .68rem;
    padding: 4px 10px;
  }
}

/* --- Treatment Controls (mobile carousel) --- */
.treatment-controls {
  display: none;
}

.treatment-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--dark-navy);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
  flex: 0 0 auto;
}

.treatment-control:hover,
.treatment-control:focus-visible {
  border-color: var(--border);
  color: var(--accent-green);
  box-shadow: var(--shadow-medium);
  transform: translateY(-1px);
}

.treatment-control:focus-visible {
  outline: 3px solid var(--accent-border);
  outline-offset: 3px;
}

.treatment-control svg {
  width: 18px;
  height: 18px;
}

.treatment-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.treatment-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}

.treatment-dot.active {
  background: var(--accent-green);
  transform: scale(1.3);
}

@media (max-width: 720px) {
  .treatment-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .treatment-card:hover {
    transform: none;
  }

  .treatment-card-image img {
    transition: none;
  }

  .treatment-card-btn svg {
    transition: none;
  }
}

/* =============================
   Patient Testimonials – Premium Redesign
============================= */
.patient-testimonials {
  padding: 76px 0 78px;
  background: var(--section-bg);
}

/* ---------- Google Rating Summary ---------- */
.testimonials-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  margin: 0 auto 44px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(15,23,42,.05);
  max-width: 700px;
  transition: box-shadow .3s ease, transform .3s ease;
}

.testimonials-summary:hover {
  box-shadow: 0 12px 36px rgba(15,23,42,.08);
  transform: translateY(-2px);
}

.testimonials-summary-stars {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  color: #F59E0B;
  font-size: 1.5rem;
  line-height: 1;
}

.testimonials-summary-info {
  flex: 1;
  min-width: 0;
}

.testimonials-summary-rating {
  display: block;
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.5px;
}

.testimonials-summary-count {
  display: block;
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  margin-top: 1px;
}

.testimonials-summary-text {
  display: block;
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: .78rem;
  line-height: 1.5;
  margin-top: 6px;
  max-width: 400px;
}

/* ---------- Shell ---------- */
.testimonials-shell {
  position: relative;
}

/* ---------- Track / Grid ---------- */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* ---------- Card ---------- */
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(15,23,42,.05);
  transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s ease, border-color .4s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--primary-green);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(15,23,42,.14);
  border-color: var(--accent-border);
}

.testimonial-card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- Header ---------- */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(26,48,70,.15);
  transition: transform .4s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.06);
}

.testimonial-header-info {
  min-width: 0;
}

.testimonial-name {
  display: block;
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: clamp(.92rem, 1.05vw, 1rem);
  font-weight: 700;
  line-height: 1.25;
}

.testimonial-date {
  display: block;
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 400;
  margin-top: 1px;
  opacity: .75;
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-green);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-verified svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

/* ---------- Stars ---------- */
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: #F59E0B;
  font-size: .85rem;
  line-height: 1;
  letter-spacing: .04em;
}

/* ---------- Local Guide ---------- */
.testimonial-guide {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #FEF3C7;
  color: #92400E;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  line-height: 1.25;
  width: fit-content;
}

.testimonial-guide svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

/* ---------- Text ---------- */
.testimonial-text {
  margin-top: 14px;
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: clamp(.8rem, .88vw, .86rem);
  font-weight: 400;
  line-height: 1.75;
  flex: 1;
}

/* ---------- Footer ---------- */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  margin-inline: -26px;
  padding: 14px 26px;
  border-top: 1px solid var(--border);
}

.testimonial-footer-stars {
  display: inline-flex;
  gap: 2px;
  color: #F59E0B;
  font-size: .72rem;
  line-height: 1;
}

.testimonial-footer-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--paragraph);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- Controls ---------- */
.testimonial-controls {
  display: none;
}

.testimonial-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--dark-navy);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
  flex: 0 0 auto;
  cursor: pointer;
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
  border-color: var(--border);
  color: var(--accent-green);
  box-shadow: var(--shadow-medium);
  transform: translateY(-1px);
}

.testimonial-control:focus-visible {
  outline: 3px solid var(--accent-border);
  outline-offset: 3px;
}

.testimonial-control svg {
  width: 18px;
  height: 18px;
}

/* ---------- Dots ---------- */
.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}

.testimonial-dot.active {
  background: var(--accent-green);
  transform: scale(1.3);
}

@media (max-width: 980px) {
  .testimonials-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .patient-testimonials {
    padding: 56px 0 62px;
  }

  .testimonials-summary {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 24px 20px;
    margin-bottom: 32px;
  }

  .testimonials-summary-text {
    max-width: 100%;
    margin-inline: auto;
  }

  .testimonials-track {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 2px 16px;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .testimonials-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card,
  .testimonial-card:last-child {
    flex: 0 0 86%;
    min-width: 260px;
    max-width: none;
    scroll-snap-align: start;
  }

  .testimonial-card:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
  }

  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
  }
}

@media (max-width: 520px) {
  .patient-testimonials {
    padding: 48px 0 56px;
  }

  .testimonials-summary {
    padding: 20px 16px;
  }

  .testimonials-summary-stars {
    font-size: 1.2rem;
  }

  .testimonials-summary-rating {
    font-size: 1.4rem;
  }

  .testimonial-card,
  .testimonial-card:last-child {
    flex-basis: 88%;
    min-width: 240px;
    padding: 22px 20px 0;
    border-radius: 18px;
  }

  .testimonial-avatar {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .testimonial-footer {
    margin-inline: -20px;
    padding: 12px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card:hover,
  .testimonial-card:hover .testimonial-avatar,
  .testimonial-control:hover,
  .testimonial-control:focus-visible {
    transform: none;
  }

  .testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(15,23,42,.05);
  }

  .testimonial-avatar {
    transition: none;
  }
}

/* =============================
   CTA & Footer
============================= */
.cta-section {
  padding: 56px 0;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 22px;
  background: var(--dark-green);
  color: rgba(255, 255, 255, .82);
}

.cta-panel::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  content: "";
}

.cta-panel .eyebrow {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.cta-panel h2 {
  max-width: 620px;
  margin: 12px 0 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cta-panel p {
  color: rgba(255, 255, 255, .78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer {
  padding: 64px 0 32px;
  background: var(--dark-navy);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  display: flex;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-text a {
  display: flex;
  flex-direction: column;
}

.brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.brand-name .physio {
  color: var(--accent-green);
}

.brand-sub {
  display: block;
  margin-top: 1px;
  color: rgba(255, 255, 255, .55);
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-tagline {
  margin-top: 8px;
  color: rgba(255, 255, 255, .5);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.55;
  max-width: 260px;
}

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

.copyright {
  color: rgba(255, 255, 255, .75);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 500;
}

.copyright-sub {
  margin-top: 2px;
  color: rgba(255, 255, 255, .4);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .04em;
}

.developer-credit {
  margin-top: 12px;
  color: rgba(255, 255, 255, .5);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 400;
}

.developer-credit a {
  color: var(--accent-green);
  font-weight: 600;
  transition: color 250ms ease;
}

.developer-credit a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  transition: background 250ms ease, transform 250ms ease, border-color 250ms ease, color 250ms ease;
}

.social-links a:hover {
  background: rgba(22, 163, 74, .15);
  border-color: rgba(22, 163, 74, .3);
  color: var(--accent-green);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-green);
  color: var(--white);
  box-shadow: var(--shadow-medium);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--dark-green);
}

/* =============================
   Floating Action Buttons
============================= */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 72px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}

.floating-btn:hover {
  transform: translateY(-3px);
}

.floating-btn:active {
  transform: translateY(0);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

.floating-btn-call {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.floating-btn-call:hover {
  box-shadow: var(--shadow-large);
}

.floating-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: var(--shadow-medium);
}

.floating-btn-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: var(--shadow-large);
}

/* =============================
   Responsive
============================= */
@media (max-width: 1120px) {
  .service-grid,
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-form {
    grid-column: 1 / -1;
  }

  .premium-contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .premium-contact-center {
    order: -1;
    grid-column: 1 / -1;
    min-height: 340px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 66px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--ease), transform var(--ease);
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    background: var(--accent-light);
  }

  .hero-grid,
  .about-grid,
  .founder-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .about-content,
  .founder-content,
  .faq-intro {
    text-align: center;
  }

  .hero-content .eyebrow,
  .hero-actions,
  .about-content .eyebrow,
  .faq-intro .eyebrow {
    margin-inline: auto;
  }

  .hero-copy,
  .about-content > p,
  .founder-content > p,
  .faq-intro p {
    margin-inline: auto;
  }

  .feature-row,
  .hero-visual,
  .about-image,
  .founder-image {
    max-width: 640px;
    margin-inline: auto;
  }

  .faq-intro {
    position: static;
  }

  .timeline,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline article:nth-child(2),
  .timeline article:nth-child(4),
  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .timeline article:nth-child(-n + 4),
  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .timeline article::after {
    display: none !important;
  }

  .condition-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

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

  .brand-tagline {
    margin-inline: auto;
  }

  .social-links {
    justify-content: center;
  }

  .premium-contact-grid {
    grid-template-columns: 1fr;
  }

  .premium-contact-center {
    order: -1;
    min-height: 280px;
  }

  .premium-contact-right {
    padding: 24px 20px;
  }

  .premium-cta-inner {
    padding: 40px 28px;
    text-align: center;
  }

  .premium-cta-content {
    max-width: 100%;
  }

  .premium-cta-content h2 {
    margin-inline: auto;
  }

  .premium-cta-content p {
    margin-inline: auto;
  }

  .premium-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 48px 0 72px;
  }

  h1 {
    max-width: 440px;
    margin-inline: auto;
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .hero-actions,
  .cta-actions {
    justify-content: center;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: auto;
    min-width: 150px;
  }

  .feature-row,
  .service-grid,
  .why-grid,
  .principle-grid,
  .contact-grid,
  .condition-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .founder-image {
    max-width: 100%;
    margin-inline: auto;
  }

  .founder-card {
    width: 100%;
    padding: 16px;
  }

  .floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% - 20px);
    margin: -24px auto 0;
  }

  .clinic-card img {
    min-height: 300px;
  }

  .cta-panel {
    padding: 32px 24px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

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

  .brand-tagline {
    margin-inline: auto;
  }

  .social-links {
    justify-content: center;
  }

  .premium-contact {
    padding: 56px 0;
  }

  .premium-contact-center {
    min-height: 240px;
  }

  .premium-contact-card {
    padding: 14px 14px;
  }

  .premium-form .form-field input,
  .premium-form .form-field textarea {
    padding: 12px 14px;
  }

  .premium-home-cta {
    padding: 56px 0;
  }

  .premium-cta-inner {
    padding: 32px 20px;
  }

  .premium-cta-actions .btn {
    width: auto;
    min-width: 150px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .brand-mark {
    width: 132px;
  }

  .navbar {
    gap: 10px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .timeline,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .timeline article:last-child,
  .stat-card:last-child {
    border-bottom: 0;
  }

  .service-card,
  .why-card,
  .benefit-card,
  .contact-info,
  .contact-form {
    padding: 20px;
  }

  .floating-buttons {
    right: 14px;
    bottom: 62px;
    gap: 8px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }

  .floating-btn svg {
    width: 22px;
    height: 22px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .premium-contact-grid {
    gap: 16px;
  }

  .premium-contact-center {
    min-height: 200px;
    border-radius: 16px;
  }

  .premium-contact-card {
    padding: 12px;
    gap: 12px;
    border-radius: 14px;
  }

  .premium-contact-card-icon {
    width: 38px;
    height: 38px;
  }

  .premium-contact-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .premium-contact-card-title {
    font-size: .72rem;
  }

  .premium-contact-card-value {
    font-size: .84rem;
  }

  .premium-contact-right {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .premium-form-heading {
    font-size: 1.15rem;
  }

  .premium-cta-inner {
    padding: 28px 16px;
    border-radius: 18px;
  }
}

/* =============================
   Mobile Scroll Indicators
============================= */
@media (max-width: 720px) {
  .treatments-grid,
  .testimonials-track {
    mask-image: linear-gradient(to right, transparent 0px, black 18px, black calc(100% - 18px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0px, black 18px, black calc(100% - 18px), transparent 100%);
  }
}

@media (max-width: 520px) {
  .treatments-grid,
  .testimonials-track {
    mask-image: linear-gradient(to right, transparent 0px, black 14px, black calc(100% - 14px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0px, black 14px, black calc(100% - 14px), transparent 100%);
  }
}


