﻿@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
:root {
  --navy: #062039;
  --navy-2: #0b2d49;
  --teal: #378282;
  --mint: #9ab1b7;
  --soft: #f7fafc;
  --text: #253f54;
  --line: #dce8ee;
  --shadow: 0 24px 70px rgba(6, 32, 57, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.72;
  font-size: 17px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #d8eef2;
  font-size: 14px;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 20px; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(55,130,130,.14);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 700; color: var(--navy); font-size: 22px; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 12px; }
.menu { display: flex; align-items: center; gap: 34px; color: var(--navy); font-weight: 600; }
.menu a { position: relative; }
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .25s ease;
}
.menu a:hover::after, .menu a.active::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--navy);
  transition: .25s ease;
  box-shadow: 0 12px 30px rgba(6,32,57,.15);
}
.btn:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.btn.light { background: #fff; color: var(--navy); border-color: #fff; }
.btn.ghost { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; box-shadow: none; }

.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--navy);
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity .65s ease;
}
.slide.active { opacity: 1; }
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(154,177,183,.12) 0 180px, transparent 181px),
    radial-gradient(circle at 100% 0%, rgba(55,130,130,.22) 0 190px, transparent 191px),
    linear-gradient(90deg, rgba(6,32,57,.98) 0%, rgba(6,32,57,.88) 35%, rgba(6,32,57,.38) 61%, rgba(6,32,57,.1) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  width: min(650px, 100%);
  padding-top: 108px;
}
.kicker {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.hero-copy .kicker { color: #aee8e8; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; margin: 0 0 22px; font-weight: 700; letter-spacing: 0; }
h1 { font-size: clamp(42px, 5vw, 68px); }
h2 { font-size: clamp(34px, 3.7vw, 52px); }
h3 { font-size: 25px; }
.hero-copy h1 { color: #fff; }
.lead { font-size: 22px; max-width: 720px; color: rgba(255,255,255,.9); margin: 0 0 34px; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  z-index: 5;
}
.prev { left: 24px; }
.next { right: 24px; }
.dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.dots button.active { width: 34px; border-radius: 999px; background: #fff; }

.page-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,32,57,.96), rgba(6,32,57,.78) 42%, rgba(6,32,57,.18) 72%);
}
.page-hero .hero-copy { padding: 0; }
.breadcrumbs { color: #aee8e8; font-weight: 700; margin-bottom: 18px; }

.section { padding: 105px 0; }
.section.alt { background: var(--soft); }
.title { max-width: 780px; margin-bottom: 44px; }
.title.center { text-align: center; margin-left: auto; margin-right: auto; }
.title p, .split p, .card p, .service-card p { margin: 0; font-size: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.image-card img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.stat strong { display: block; color: var(--navy); font-size: 36px; line-height: 1; margin-bottom: 8px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: .25s ease;
}
.card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  right: -48px;
  top: -48px;
  background: rgba(55,130,130,.08);
  transition: .25s ease;
}
.card:hover {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3b57 54%, var(--teal) 100%);
  color: #fff;
  transform: translateY(-6px);
}
.card:hover h3, .card:hover p { color: #fff; }
.card:hover::after { background: rgba(255,255,255,.16); }
.icon {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--teal);
  background: #fbfdfe;
}
.icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .icon { background: #fff; color: var(--navy); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, var(--navy) 0%, #0d3b57 54%, var(--teal) 100%);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .rating { color: #fff; }
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-body { padding: 28px; }
.rating { color: var(--teal); font-weight: 800; font-size: 14px; letter-spacing: .15em; margin-bottom: 10px; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  min-height: 300px;
  position: relative;
}
.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 42%;
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  transform: rotate(45deg);
}
.step-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.num { width: 78px; height: 78px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 22px; }

.cta {
  background: linear-gradient(135deg, var(--navy), #12465f);
  color: #fff;
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta h2, .cta p { color: #fff; }
.cta p { max-width: 760px; margin: 0 auto 28px; font-size: 20px; }

.about-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.pill { padding: 14px 18px; border-radius: 999px; background: var(--soft); color: var(--navy); font-weight: 700; border: 1px solid var(--line); }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.form, .map {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.form input, .form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 15px;
  font: inherit;
}
.map {
  min-height: 430px;
  background: linear-gradient(135deg, rgba(6,32,57,.9), rgba(55,130,130,.75)), url("technology-equipment.png") center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.map h3, .map p { color: #fff; }

.faq { display: grid; gap: 24px; }
.faq-item { background: #fff; border-radius: var(--radius); padding: 28px 34px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; gap: 20px; font-weight: 800; color: var(--navy); font-size: 23px; }
.faq-q span { color: var(--teal); font-size: 30px; line-height: 1; }

.footer {
  background: var(--navy);
  color: #d8e7ed;
  padding: 78px 0 22px;
}
.footer .wrap { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr 1fr; gap: 86px; align-items: start; }
.footer h2, .footer h3 { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.footer-brand img { width: 70px; height: 70px; object-fit: contain; border-radius: 16px; background: #fff; }
.footer-links { display: grid; gap: 10px; }
.social { display: flex; gap: 12px; margin-top: 22px; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font-weight: 800; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 20px; display: flex; justify-content: space-between; gap: 18px; font-size: 14px; }

.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

@media (max-width: 980px) {
  .menu { display: none; }
  .hero-slider { min-height: 620px; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .cards, .service-grid, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-card::after { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .wrap { width: min(100% - 28px, 1180px); }
  .topbar { display: none; }
  .nav { min-height: 76px; }
  .brand span { font-size: 18px; }
  .nav > .btn { display: none; }
  .hero-copy { padding-top: 95px; }
  .hero-slider, .page-hero { min-height: 590px; }
  .slide { background-position: 64% center; }
  .slide::before, .page-hero::before { background: linear-gradient(90deg, rgba(6,32,57,.96), rgba(6,32,57,.82), rgba(6,32,57,.42)); }
  .lead { font-size: 18px; }
  .section { padding: 68px 0; }
  .stats, .cards, .service-grid, .process, .contact-cards, .footer-grid, .about-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .slider-arrow { display: none; }
  .floating { left: 14px; right: 14px; }
}



/* Premium reference refinements */
.hero-slider { min-height: 650px; }
.slide::before {
  background:
    radial-gradient(circle at 0% 100%, rgba(154,177,183,.12) 0 180px, transparent 181px),
    radial-gradient(circle at 100% 0%, rgba(55,130,130,.22) 0 190px, transparent 191px),
    linear-gradient(90deg, rgba(6,32,57,.98) 0%, rgba(6,32,57,.88) 35%, rgba(6,32,57,.38) 61%, rgba(6,32,57,.1) 100%);
}
.hero-copy { padding-top: 108px; }
.card:hover,
.service-card:hover {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3b57 54%, var(--teal) 100%);
  color: #fff;
  transform: translateY(-6px);
}
.card:hover h3,
.card:hover p,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .rating { color: #fff; }
.service-card:hover .service-body { color: #fff; }
.footer {
  background: linear-gradient(135deg, #062039 0%, #0b334e 58%, #155a68 100%);
  color: #d8e7ed;
  padding: 96px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.footer::before {
  width: 330px;
  height: 330px;
  left: -120px;
  bottom: -170px;
  background: rgba(154,177,183,.12);
}
.footer::after {
  width: 340px;
  height: 340px;
  right: -120px;
  top: -135px;
  background: rgba(55,130,130,.18);
}
.footer .wrap { position: relative; z-index: 1; }
.footer-grid { grid-template-columns: 1.45fr .7fr 1fr; gap: 86px; align-items: start; }
.footer h2 { font-size: clamp(34px, 3vw, 45px); margin: 0; }
.footer h3 { font-size: 28px; margin-bottom: 22px; }
.footer-brand { gap: 20px; margin-bottom: 28px; }
.footer-brand img { width: 88px; height: 88px; border-radius: 18px; padding: 8px; }
.footer p { font-size: 22px; line-height: 1.65; margin: 0; color: #fff; }
.footer-links { gap: 16px; font-size: 22px; color: #fff; }
.footer-links a:hover { color: #aee8e8; }
.social { margin-top: 28px; }
.social a { width: 52px; height: 52px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 64px; padding-top: 28px; justify-content: center; font-size: 19px; color: #fff; }
.footer-bottom span + span { display: none; }
@media (max-width: 640px) {
  .hero-copy { padding-top: 95px; }
  .footer p, .footer-links { font-size: 18px; }
}

/* Typography and home section additions */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
.section h2,
.title h2,
.split h2,
.faq h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: #378282;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.28;
}
.section .kicker,
.title .kicker,
.split .kicker {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: #062039;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
}
.hero-copy .kicker,
.page-hero .kicker { color: #aee8e8; }
.cta h2 { color: #fff; }
.physio-feature {
  background: #eef6f9;
}
.physio-panel {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 54px;
  align-items: center;
}
.physio-photo {
  min-height: 410px;
  border-radius: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 24px 70px rgba(6,32,57,.13);
}
.physio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,32,57,.14), rgba(6,32,57,.42));
}
.physio-photo-content {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  z-index: 1;
  color: #fff;
}
.physio-photo-content h3 { color: #fff; font-size: 28px; font-weight: 400; margin-bottom: 16px; }
.physio-photo-content p { color: #fff; margin: 0; font-size: 16px; line-height: 1.7; }
.physio-copy .divider {
  width: 90px;
  height: 3px;
  background: #062039;
  margin: 26px 0 46px;
}
.physio-copy p {
  color: #06192b;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px;
  line-height: 1.45;
  text-align: justify;
}
.testimonials {
  background: #fff;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 34px;
}
.testimonial-card {
  background: #fafafa;
  padding: 34px 48px 42px;
  position: relative;
  min-height: 255px;
  box-shadow: 0 20px 50px rgba(6,32,57,.07);
}
.testimonial-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid #fafafa;
}
.stars { color: #ffc20e; font-size: 24px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p {
  margin: 0;
  color: #06192b;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
}
.testimonial-author {
  margin-top: 48px;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #06192b;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 18px;
}
.avatar-placeholder {
  width: 80px;
  height: 70px;
  background: linear-gradient(135deg, #d7e0e5, #bcc9d0);
  position: relative;
  overflow: hidden;
}
.avatar-placeholder::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 0;
  bottom: -12px;
  height: 46px;
  background: #fff;
  border-radius: 50% 0 0 0;
  transform: rotate(-12deg);
}
.testimonial-dots { margin-top: 34px; display: flex; justify-content: center; gap: 9px; }
.testimonial-dots span { width: 9px; height: 9px; border-radius: 50%; background: #d1d1d1; display: block; }
.testimonial-dots span:first-child { background: #222; }
@media (max-width: 980px) {
  .physio-panel,
  .testimonial-grid { grid-template-columns: 1fr; }
  .physio-copy p { font-size: 19px; }
}
@media (max-width: 640px) {
  .section h2, .title h2, .split h2, .faq h2 { font-size: 30px; }
  .section .kicker, .title .kicker, .split .kicker { font-size: 18px; }
  .testimonial-card { padding: 28px 24px 36px; }
  .testimonial-card p { font-size: 17px; }
  .physio-photo { min-height: 320px; }
}

/* Size tuning */
.hero-copy h1 { font-size: clamp(36px, 4.1vw, 56px); line-height: 1.16; }
.hero-copy .lead { font-size: 20px; line-height: 1.65; max-width: 760px; }
.hero-copy .kicker { font-size: 18px; }
.footer h2 { font-size: clamp(28px, 2.4vw, 38px); }
.footer h3 { font-size: 24px; }
.footer p { font-size: 18px; }
.footer-links { font-size: 19px; }
.footer-bottom { font-size: 16px; }
@media (max-width: 640px) {
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .lead { font-size: 17px; }
  .hero-copy .kicker { font-size: 16px; }
  .footer h2 { font-size: 28px; }
  .footer h3 { font-size: 22px; }
  .footer p, .footer-links { font-size: 16px; }
}

/* Global Libre Baskerville and appointment modal */
html, body, button, input, textarea, select, a, p, span, div, nav, h1, h2, h3, h4, h5, h6 { font-family: 'Libre Baskerville', Georgia, serif; }
body { font-family: 'Libre Baskerville', Georgia, serif; }
.menu { font-family: 'Libre Baskerville', Georgia, serif; font-size: 17px; }
.brand img { width: 86px; height: 86px; border-radius: 16px; }
.nav { min-height: 104px; }
.footer p { max-width: 580px; }
.appointment-modal { position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center; padding: 24px; }
.appointment-modal:target { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6,32,57,.72); backdrop-filter: blur(6px); }
.modal-card { position: relative; z-index: 1; width: min(560px, 100%); background: #fff; border-radius: 22px; padding: 42px; box-shadow: 0 35px 90px rgba(6,32,57,.34); }
.modal-card h2 { color: #378282; font-size: 34px; margin-bottom: 14px; }
.modal-card p { margin: 0 0 22px; color: #253f54; font-size: 16px; }
.modal-card input, .modal-card textarea { width: 100%; border: 1px solid #dce8ee; border-radius: 12px; padding: 15px 17px; margin-bottom: 13px; font-size: 15px; color: #062039; }
.modal-close { position: absolute; right: 18px; top: 12px; font-size: 34px; line-height: 1; color: #062039; }
@media (max-width: 640px) { .brand img { width: 68px; height: 68px; } .nav { min-height: 86px; } .modal-card { padding: 30px 22px; } }

/* Final popup/font correction */
html, body, body * { font-family: 'Libre Baskerville', Georgia, serif !important; }
.physio-copy p { text-align: left !important; word-spacing: normal !important; letter-spacing: 0 !important; }
.appointment-modal { position: fixed !important; inset: 0 !important; z-index: 99999 !important; display: none !important; align-items: center !important; justify-content: center !important; padding: 24px !important; }
.appointment-modal.is-open { display: flex !important; }
.appointment-modal:target { display: none !important; }
.modal-backdrop { position: absolute !important; inset: 0 !important; background: rgba(6,32,57,.72) !important; backdrop-filter: blur(6px) !important; }
.modal-card { position: relative !important; z-index: 1 !important; width: min(560px, 94vw) !important; background: #fff !important; border-radius: 22px !important; padding: 40px !important; box-shadow: 0 35px 90px rgba(6,32,57,.34) !important; }
.modal-card h2 { color: #378282 !important; font-size: 32px !important; line-height: 1.25 !important; margin: 0 0 14px !important; }
.modal-card p { color: #253f54 !important; font-size: 15px !important; margin: 0 0 22px !important; }
.modal-card form { display: grid !important; gap: 13px !important; }
.modal-card input, .modal-card textarea { width: 100% !important; border: 1px solid #dce8ee !important; border-radius: 12px !important; padding: 14px 16px !important; margin: 0 !important; font-size: 15px !important; color: #062039 !important; }
.modal-card textarea { min-height: 105px !important; resize: vertical !important; }
.modal-close { position: absolute !important; right: 18px !important; top: 12px !important; font-size: 34px !important; line-height: 1 !important; color: #062039 !important; }
@media (max-width: 640px){ .modal-card{ padding: 30px 22px !important; } .modal-card h2{ font-size: 27px !important; } }

/* Final visual consistency patch */
html, body, body * { font-family: 'Libre Baskerville', Georgia, serif !important; }
.hero-copy h1, .hero-copy p, .lead, .btn, .menu, .footer, .footer * { font-family: 'Libre Baskerville', Georgia, serif !important; }
.appointment-modal { position: fixed !important; inset: 0 !important; z-index: 99999 !important; display: none !important; align-items: center !important; justify-content: center !important; padding: 24px !important; }
.appointment-modal.is-open { display: flex !important; }
.appointment-modal:target { display: none !important; }
.modal-backdrop { position: absolute !important; inset: 0 !important; background: rgba(6,32,57,.75) !important; backdrop-filter: blur(7px) !important; }
.modal-card { position: relative !important; z-index: 1 !important; width: min(560px, 94vw) !important; background: #fff !important; border-radius: 22px !important; padding: 40px !important; box-shadow: 0 35px 90px rgba(6,32,57,.34) !important; }
.modal-card h2 { color: #378282 !important; font-size: 32px !important; line-height: 1.25 !important; margin: 0 0 14px !important; }
.modal-card form { display: grid !important; gap: 13px !important; }
.modal-card input, .modal-card textarea { width: 100% !important; border: 1px solid #dce8ee !important; border-radius: 12px !important; padding: 14px 16px !important; margin: 0 !important; font-size: 15px !important; color: #062039 !important; }
.modal-card textarea { min-height: 105px !important; resize: vertical !important; }
.modal-close { position: absolute !important; right: 18px !important; top: 12px !important; font-size: 34px !important; line-height: 1 !important; color: #062039 !important; }
.process-card:nth-child(even) { background: linear-gradient(135deg, #062039 0%, #0d3b57 58%, #378282 100%) !important; color: #fff !important; }
.process-card:nth-child(even) h3, .process-card:nth-child(even) p { color: #fff !important; }
.process-card:nth-child(even) .icon { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.24); }
.testimonial-grid.four-reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 54px; }
.review-avatar { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 999px; font-size: 42px; background: #e9f2f4; box-shadow: 0 18px 45px rgba(6,32,57,.12); }
.review-avatar.male { background: #e7f0fb; }
.review-avatar.female { background: #f7eefa; }
.avatar-placeholder { display: none !important; }
@media (max-width: 900px){ .testimonial-grid.four-reviews { grid-template-columns: 1fr; } }
@media (max-width: 640px){ .modal-card{ padding: 30px 22px !important; } .modal-card h2{ font-size: 27px !important; } }

/* Carousel and final font fix */
html, body, body * { font-family: 'Libre Baskerville', Georgia, serif !important; }
body { font-size: 16px; }
.physio-copy p { font-size: 18px !important; line-height: 1.75 !important; text-align: left !important; word-spacing: normal !important; letter-spacing: 0 !important; max-width: 760px; }
.hero-copy h1 { font-size: clamp(34px, 3.7vw, 52px) !important; }
.hero-copy .lead { font-size: 18px !important; }
.btn { cursor: pointer; }
.appointment-modal { position: fixed !important; inset: 0 !important; z-index: 99999 !important; display: none !important; align-items: center !important; justify-content: center !important; padding: 24px !important; }
.appointment-modal.is-open { display: flex !important; }
.appointment-modal:target { display: none !important; }
.modal-backdrop { position: absolute !important; inset: 0 !important; background: rgba(6,32,57,.78) !important; backdrop-filter: blur(7px) !important; }
.modal-card { position: relative !important; z-index: 1 !important; width: min(560px, 94vw) !important; background: #fff !important; border-radius: 22px !important; padding: 40px !important; box-shadow: 0 35px 90px rgba(6,32,57,.34) !important; }
.modal-card h2 { color: #378282 !important; font-size: 32px !important; line-height: 1.25 !important; margin: 0 0 14px !important; }
.modal-card form { display: grid !important; gap: 13px !important; }
.modal-card input, .modal-card textarea { width: 100% !important; border: 1px solid #dce8ee !important; border-radius: 12px !important; padding: 14px 16px !important; margin: 0 !important; font-size: 15px !important; color: #062039 !important; }
.modal-card textarea { min-height: 105px !important; resize: vertical !important; }
.testimonial-carousel { position: relative; margin-top: 34px; padding: 0 54px; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; transition: transform .45s ease; will-change: transform; }
.review-slide { flex: 0 0 50%; padding: 0 16px; }
.review-arrow { position: absolute; top: 36%; transform: translateY(-50%); width: 46px; height: 46px; border: 0; background: transparent; color: #378282; font-size: 56px; line-height: 1; cursor: pointer; z-index: 2; }
.review-prev { left: 0; }
.review-next { right: 0; }
.testimonial-dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; padding: 0; background: #d1d1d1; cursor: pointer; }
.testimonial-dots button.active { background: #222; }
.review-avatar { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 999px; font-size: 42px; background: #e9f2f4; box-shadow: 0 18px 45px rgba(6,32,57,.12); }
.review-avatar.male { background: #e7f0fb; }
.review-avatar.female { background: #f7eefa; }
.avatar-placeholder { display: none !important; }
@media (max-width: 900px){ .review-slide { flex-basis: 100%; } .testimonial-carousel { padding: 0 34px; } }
@media (max-width: 640px){ .physio-copy p { font-size: 16px !important; } .modal-card{ padding: 30px 22px !important; } .modal-card h2{ font-size: 27px !important; } }

/* Founder and service image final patch */
.founder-shape { position: relative; min-height: 520px; display: grid; place-items: center; }
.founder-shape::before { content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 42% 58% 48% 52% / 58% 38% 62% 42%; background: linear-gradient(135deg, rgba(55,130,130,.18), rgba(6,32,57,.08)); transform: rotate(-8deg); }
.founder-shape img { position: relative; width: min(430px, 90%); aspect-ratio: 1; object-fit: cover; border-radius: 42% 58% 48% 52% / 58% 38% 62% 42%; box-shadow: 0 30px 80px rgba(6,32,57,.18); }
.process-card { background: linear-gradient(135deg, #062039 0%, #0d3b57 58%, #378282 100%) !important; color: #fff !important; }
.process-card h3, .process-card p { color: #fff !important; }
.process-card .icon { display: none !important; }
.process-card .step-head { justify-content: flex-start !important; }
.process-card:hover { background: #fff !important; color: #062039 !important; transform: translateY(-6px); }
.process-card:hover h3, .process-card:hover p { color: #062039 !important; }
.service-card img { background: #fff; object-fit: cover; }
@media (max-width: 640px){ .founder-shape { min-height: 360px; } .founder-shape img { width: min(320px, 92%); } }

/* Final polish stats slider services */
.slide { background-position: center center !important; }
.slide:nth-child(1) { background-position: 70% center !important; }
.slide:nth-child(2) { background-position: 66% center !important; }
.slide:nth-child(3) { background-position: 68% center !important; }
.hero-slider { min-height: 640px !important; }
.stats { grid-template-columns: repeat(4, 1fr) !important; }
.section.alt:has(.stats) { background: linear-gradient(135deg, #139bd2 0%, #2097ca 55%, #1788bd 100%) !important; position: relative; overflow: hidden; }
.section.alt:has(.stats)::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.13), transparent 25%), radial-gradient(circle at 70% 60%, rgba(255,255,255,.09), transparent 28%); }
.stats { position: relative; z-index: 1; gap: 18px !important; }
.stat { background: transparent !important; box-shadow: none !important; border: 0 !important; text-align: center; color: #071b2e !important; padding: 18px 12px !important; }
.stat strong { color: #fff !important; font-size: clamp(38px, 4.2vw, 70px) !important; line-height: 1 !important; }
.service-card .rating { display: none !important; }
.service-card img { object-fit: contain !important; background: #fff !important; padding: 16px; aspect-ratio: 4 / 3 !important; }
.service-card:hover img { background: #fff !important; }
.physio-feature { background: #eef7fa !important; overflow: hidden; }
.physio-panel { align-items: center !important; }
.physio-photo.doctor-photo { min-height: 520px !important; border-radius: 42% 58% 48% 52% / 58% 38% 62% 42% !important; background-size: cover !important; background-position: center !important; box-shadow: 0 30px 80px rgba(6,32,57,.18); }
.physio-photo.doctor-photo::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -36px; top: -36px; background: rgba(55,130,130,.18); z-index: 1; }
.physio-photo.doctor-photo::after { background: linear-gradient(180deg, rgba(6,32,57,0), rgba(6,32,57,.05)) !important; }
.physio-copy { position: relative; }
.physio-copy::before { content: ""; position: absolute; width: 140px; height: 140px; right: -40px; top: -50px; border-radius: 999px; background: rgba(55,130,130,.12); }
.about-list .pill { font-size: 17px !important; padding: 18px 22px !important; border-radius: 999px !important; background: #f6fbfd !important; }
.founder-shape { min-height: 560px !important; }
@media (max-width: 980px){ .stats { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 640px){ .stats { grid-template-columns: 1fr !important; } .physio-photo.doctor-photo { min-height: 380px !important; } .service-card img { padding: 10px; } }

/* Final brand color about service image polish */
.section.alt:has(.stats) { background: linear-gradient(135deg, #062039 0%, #0b334e 56%, #378282 100%) !important; padding: 68px 0 !important; }
.section.alt:has(.stats)::before { background: radial-gradient(circle at 10% 15%, rgba(154,177,183,.18), transparent 25%), radial-gradient(circle at 82% 52%, rgba(255,255,255,.08), transparent 30%) !important; }
.stat strong { color: #fff !important; text-shadow: 0 10px 30px rgba(0,0,0,.16); }
.stat { color: #dff5f4 !important; }
.about-list { gap: 22px !important; }
.about-list .pill { min-height: 86px; display: flex; align-items: center; padding: 22px 28px !important; border: 1px solid rgba(55,130,130,.2) !important; background: linear-gradient(135deg, #f7fbfd, #eef7fa) !important; box-shadow: 0 18px 45px rgba(6,32,57,.07); transition: .25s ease; }
.about-list .pill:hover { background: linear-gradient(135deg, #062039, #378282) !important; color: #fff !important; transform: translateY(-4px); }
.organic-image { position: relative; min-height: 470px; display: grid; place-items: center; }
.organic-image::before { content: ""; position: absolute; width: 84%; aspect-ratio: 1; border-radius: 44% 56% 52% 48% / 52% 42% 58% 48%; background: linear-gradient(135deg, rgba(55,130,130,.18), rgba(6,32,57,.08)); transform: rotate(7deg); }
.organic-image img { position: relative; width: min(520px, 92%); aspect-ratio: 1; object-fit: cover; border-radius: 44% 56% 52% 48% / 52% 42% 58% 48%; box-shadow: 0 30px 80px rgba(6,32,57,.18); }
.image-card img { border-radius: 44% 56% 52% 48% / 52% 42% 58% 48% !important; }
.service-card { display: flex; flex-direction: column; }
.service-card img { width: 100% !important; height: 270px !important; aspect-ratio: auto !important; object-fit: contain !important; object-position: center !important; padding: 22px !important; background: #fff !important; }
.service-body { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; min-height: 250px; }
.service-card h3 { min-height: 72px; }
.service-grid { align-items: stretch; }
@media (max-width: 980px){ .organic-image { min-height: 380px; } .service-card img { height: 240px !important; } }
@media (max-width: 640px){ .about-list .pill { min-height: 68px; } .organic-image img { width: min(340px, 92%); } .service-card img { height: 220px !important; } }

/* Stats boxed hover and map embed polish */
.section.alt:has(.stats) { background: linear-gradient(135deg, #062039 0%, #0b334e 58%, #378282 100%) !important; padding: 76px 0 !important; }
.stats { gap: 24px !important; }
.stat { background: rgba(255,255,255,.08) !important; border: 1px solid rgba(255,255,255,.18) !important; border-radius: 22px !important; padding: 34px 24px !important; box-shadow: 0 24px 70px rgba(0,0,0,.12) !important; backdrop-filter: blur(8px); transition: transform .28s ease, background .28s ease, box-shadow .28s ease, border-color .28s ease; }
.stat:hover { background: #fff !important; transform: translateY(-8px); border-color: rgba(55,130,130,.28) !important; box-shadow: 0 30px 80px rgba(6,32,57,.22) !important; }
.stat:hover strong { color: #378282 !important; text-shadow: none; }
.stat:hover { color: #062039 !important; }
.stat strong { font-size: clamp(42px, 4vw, 68px) !important; }
.map-embed { padding: 0 !important; overflow: hidden; min-height: 460px !important; background: #eef7fa !important; }
.map-embed iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; filter: saturate(.9) contrast(.95); }
.organic-image img { object-position: 68% center !important; }
.founder-shape img { object-position: center center !important; }
.image-card img { object-position: center center !important; }
@media (max-width: 640px){ .stat { padding: 26px 20px !important; } .map-embed, .map-embed iframe { min-height: 360px !important; } }

/* New services page format polish */
.services-intro-section .split { align-items: center; }
.service-organic img { object-position: 68% center !important; }
.service-categories-section { background: #f7fafc !important; }
.service-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; margin-top: 42px; }
.category-box { position: relative; overflow: hidden; background: #fff; border: 1px solid rgba(55,130,130,.14); border-radius: 24px; padding: 34px; box-shadow: 0 24px 70px rgba(6,32,57,.08); transition: transform .28s ease, background .28s ease, color .28s ease; }
.category-box::after { content: ""; position: absolute; width: 150px; height: 150px; right: -46px; top: -46px; border-radius: 999px; background: rgba(55,130,130,.09); }
.category-box span { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 999px; background: #062039; color: #fff; font-weight: 700; margin-bottom: 22px; }
.category-box h3 { color: #062039; font-size: 25px; line-height: 1.25; margin: 0 0 14px; }
.category-box p, .category-box li { color: #355269; font-size: 16px; line-height: 1.75; }
.category-box ul { margin: 18px 0 0; padding-left: 20px; }
.category-box.highlight, .category-box:hover { background: linear-gradient(135deg, #062039 0%, #0f3c55 58%, #378282 100%); transform: translateY(-6px); }
.category-box.highlight h3, .category-box.highlight p, .category-box.highlight li, .category-box:hover h3, .category-box:hover p, .category-box:hover li { color: #fff !important; }
.category-box.highlight span, .category-box:hover span { background: rgba(255,255,255,.14); color: #fff; }
.category-box.wide { grid-column: 1 / -1; }
.modern-service-grid .service-card { border-radius: 24px; overflow: hidden; border: 1px solid rgba(55,130,130,.14); }
.modern-service-grid .service-card img { height: 260px !important; padding: 18px !important; object-fit: contain !important; background: #fff !important; }
.modern-service-grid .service-card.featured:hover .service-body { background: linear-gradient(135deg, #062039, #378282) !important; }
.modern-service-grid .service-card.featured:hover h3, .modern-service-grid .service-card.featured:hover p { color: #fff !important; }
.badge { display: inline-block; color: #378282; background: #eef7fa; border-radius: 999px; padding: 8px 13px; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.service-card:hover .badge { background: rgba(255,255,255,.14); color: #fff; }
.equipment-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; margin-top: 38px; }
.equipment-card { background: #fff; border: 1px solid rgba(55,130,130,.13); border-radius: 22px; padding: 30px; box-shadow: 0 22px 64px rgba(6,32,57,.07); transition: .25s ease; }
.equipment-card h3 { color: #378282; font-size: 24px; margin: 0 0 12px; }
.equipment-card p { margin: 0; color: #2d4b62; font-size: 16px; line-height: 1.75; }
.equipment-card:hover { background: #062039; transform: translateY(-5px); }
.equipment-card:hover h3, .equipment-card:hover p { color: #fff !important; }
@media (max-width: 900px){ .service-category-grid, .equipment-list { grid-template-columns: 1fr; } .category-box.wide { grid-column: auto; } }
@media (max-width: 640px){ .category-box, .equipment-card { padding: 24px; } .modern-service-grid .service-card img { height: 220px !important; } }

/* Only user services content full format */
.services-master-intro .split { align-items: center; }
.services-master-intro p { color: #29475d; font-size: 17px; line-height: 1.82; }
.therapy-index-section { background: #f7fafc !important; }
.therapy-index-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 42px; }
.therapy-index-card { position: relative; overflow: hidden; background: #fff; border: 1px solid rgba(55,130,130,.14); border-radius: 24px; padding: 34px; box-shadow: 0 24px 70px rgba(6,32,57,.08); transition: .28s ease; }
.therapy-index-card::after { content: ""; position: absolute; right: -54px; top: -54px; width: 155px; height: 155px; border-radius: 999px; background: rgba(55,130,130,.09); }
.therapy-index-card > span { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 999px; background: #062039; color: #fff; margin-bottom: 22px; font-weight: 700; }
.therapy-index-card h3 { color: #062039; font-size: 25px; line-height: 1.25; margin: 0 0 14px; }
.therapy-index-card p, .therapy-index-card li { color: #355269; font-size: 16px; line-height: 1.75; }
.therapy-index-card ul { margin: 18px 0 0; padding-left: 20px; }
.therapy-index-card:nth-child(even), .therapy-index-card:hover { background: linear-gradient(135deg, #062039 0%, #0f3c55 58%, #378282 100%); transform: translateY(-6px); }
.therapy-index-card:nth-child(even) h3, .therapy-index-card:nth-child(even) p, .therapy-index-card:nth-child(even) li, .therapy-index-card:hover h3, .therapy-index-card:hover p, .therapy-index-card:hover li { color: #fff !important; }
.therapy-index-card:nth-child(even) > span, .therapy-index-card:hover > span { background: rgba(255,255,255,.14); color: #fff; }
.therapy-index-card.wide { grid-column: 1 / -1; }
.detail-card-grid { display: grid; gap: 30px; margin-top: 42px; }
.detail-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; background: #fff; border: 1px solid rgba(55,130,130,.14); border-radius: 28px; padding: 28px; box-shadow: 0 24px 70px rgba(6,32,57,.08); }
.detail-card.reverse .detail-media { order: 2; }
.detail-media { min-height: 390px; border-radius: 42% 58% 48% 52% / 58% 38% 62% 42%; overflow: hidden; background: #f7fafc; box-shadow: inset 0 0 0 1px rgba(55,130,130,.12); }
.detail-media img { width: 100%; height: 100%; min-height: 390px; object-fit: contain; object-position: center; padding: 24px; background: #fff; }
.detail-copy h3 { color: #378282; font-size: 32px; line-height: 1.22; margin: 0 0 16px; }
.detail-copy h4 { color: #062039; font-size: 20px; margin: 22px 0 10px; }
.detail-copy p, .detail-copy li { color: #28475f; font-size: 16px; line-height: 1.75; }
.detail-copy ul { padding-left: 20px; margin: 0; }
.equipment-master-section { background: #f7fafc !important; }
.equipment-grid-full { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; margin-top: 40px; }
.equipment-grid-full article { background: #fff; border: 1px solid rgba(55,130,130,.14); border-radius: 24px; padding: 28px; box-shadow: 0 22px 64px rgba(6,32,57,.07); transition: .25s ease; }
.equipment-grid-full article:hover { background: #062039; transform: translateY(-5px); }
.equipment-grid-full h3 { color: #378282; font-size: 24px; line-height: 1.25; margin: 0 0 12px; }
.equipment-grid-full p, .equipment-grid-full li { color: #2d4b62; font-size: 15.5px; line-height: 1.72; }
.equipment-grid-full ul { padding-left: 19px; margin: 12px 0 0; }
.equipment-grid-full article:hover h3, .equipment-grid-full article:hover p, .equipment-grid-full article:hover li { color: #fff !important; }
@media (max-width: 980px){ .therapy-index-grid, .detail-card, .equipment-grid-full { grid-template-columns: 1fr; } .therapy-index-card.wide { grid-column: auto; } .detail-card.reverse .detail-media { order: 0; } }
@media (max-width: 640px){ .therapy-index-card, .detail-card, .equipment-grid-full article { padding: 22px; } .detail-media, .detail-media img { min-height: 290px; } .detail-copy h3 { font-size: 26px; } }

/* Services dark default hover white update */
.therapy-index-card,
.therapy-index-card:nth-child(even) {
  background: linear-gradient(135deg, #062039 0%, #0f3c55 58%, #378282 100%) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.16) !important;
}
.therapy-index-card h3,
.therapy-index-card p,
.therapy-index-card li,
.therapy-index-card:nth-child(even) h3,
.therapy-index-card:nth-child(even) p,
.therapy-index-card:nth-child(even) li { color: #fff !important; }
.therapy-index-card > span,
.therapy-index-card:nth-child(even) > span { background: rgba(255,255,255,.14) !important; color: #fff !important; }
.therapy-index-card:hover {
  background: #fff !important;
  color: #062039 !important;
  border-color: rgba(55,130,130,.22) !important;
  box-shadow: 0 30px 85px rgba(6,32,57,.16) !important;
}
.therapy-index-card:hover h3 { color: #378282 !important; }
.therapy-index-card:hover p,
.therapy-index-card:hover li { color: #28475f !important; }
.therapy-index-card:hover > span { background: #062039 !important; color: #fff !important; }
.equipment-master-section .title { display: none !important; }
.equipment-grid-full { margin-top: 0 !important; }
.equipment-grid-full article {
  background: linear-gradient(135deg, #062039 0%, #0f3c55 58%, #378282 100%) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.16) !important;
  overflow: hidden;
}
.equipment-grid-full article h3,
.equipment-grid-full article p,
.equipment-grid-full article li { color: #fff !important; }
.equipment-grid-full article:hover {
  background: #fff !important;
  color: #062039 !important;
  border-color: rgba(55,130,130,.22) !important;
  box-shadow: 0 30px 85px rgba(6,32,57,.16) !important;
}
.equipment-grid-full article:hover h3 { color: #378282 !important; }
.equipment-grid-full article:hover p,
.equipment-grid-full article:hover li { color: #28475f !important; }
.equipment-img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  margin: -6px 0 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(55,130,130,.12);
}
.detail-card .detail-media img[src$="bfr-training.png"] { object-fit: cover !important; object-position: center !important; padding: 0 !important; }
@media (max-width: 640px){ .equipment-img { height: 190px; } }

/* Final about hero and service dark details */
.about-page-fix-marker { display: none; }
.detail-card {
  background: linear-gradient(135deg, #062039 0%, #0f3c55 58%, #378282 100%) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.16) !important;
  box-shadow: 0 28px 80px rgba(6,32,57,.16) !important;
}
.detail-card .detail-copy h3,
.detail-card .detail-copy h4,
.detail-card .detail-copy p,
.detail-card .detail-copy li { color: #fff !important; }
.detail-card .badge { background: rgba(255,255,255,.14) !important; color: #fff !important; }
.detail-card:hover {
  background: #fff !important;
  color: #062039 !important;
  border-color: rgba(55,130,130,.22) !important;
  transform: translateY(-6px);
}
.detail-card:hover .detail-copy h3 { color: #378282 !important; }
.detail-card:hover .detail-copy h4,
.detail-card:hover .detail-copy p,
.detail-card:hover .detail-copy li { color: #28475f !important; }
.detail-card:hover .badge { background: #eef7fa !important; color: #378282 !important; }
.detail-media { background: rgba(255,255,255,.96) !important; }
.detail-media img { background: #fff !important; border-radius: 26px; }
.equipment-grid-full { align-items: stretch; }
.equipment-grid-full article { display: flex; flex-direction: column; min-height: 520px; }
.equipment-grid-full article p,
.equipment-grid-full article li { font-size: 15px !important; line-height: 1.62 !important; }
.equipment-img { flex: 0 0 auto; }
@media (max-width: 640px){ .equipment-grid-full article { min-height: auto; } }

/* Services light one per row final override */
.therapy-index-grid,
.equipment-grid-full { grid-template-columns: 1fr !important; }
.therapy-index-card,
.therapy-index-card:nth-child(even),
.detail-card,
.equipment-grid-full article {
  background: #fff !important;
  color: #062039 !important;
  border: 1px solid rgba(55,130,130,.16) !important;
  box-shadow: 0 22px 64px rgba(6,32,57,.07) !important;
}
.therapy-index-card h3,
.therapy-index-card p,
.therapy-index-card li,
.therapy-index-card:nth-child(even) h3,
.therapy-index-card:nth-child(even) p,
.therapy-index-card:nth-child(even) li,
.detail-card .detail-copy h3,
.detail-card .detail-copy h4,
.detail-card .detail-copy p,
.detail-card .detail-copy li,
.equipment-grid-full article h3,
.equipment-grid-full article p,
.equipment-grid-full article li {
  color: inherit !important;
}
.therapy-index-card h3,
.detail-card .detail-copy h3,
.equipment-grid-full article h3 { color: #378282 !important; }
.therapy-index-card p,
.therapy-index-card li,
.detail-card .detail-copy h4,
.detail-card .detail-copy p,
.detail-card .detail-copy li,
.equipment-grid-full article p,
.equipment-grid-full article li { color: #28475f !important; }
.therapy-index-card > span,
.therapy-index-card:nth-child(even) > span { background: #062039 !important; color: #fff !important; }
.therapy-index-card:hover,
.detail-card:hover,
.equipment-grid-full article:hover {
  background: #f7fafc !important;
  transform: translateY(-6px);
  border-color: rgba(55,130,130,.28) !important;
  box-shadow: 0 30px 85px rgba(6,32,57,.13) !important;
}
.equipment-grid-full article {
  display: grid !important;
  grid-template-columns: 360px 1fr !important;
  gap: 34px !important;
  align-items: center !important;
  min-height: auto !important;
  padding: 30px !important;
}
.equipment-img {
  width: 100% !important;
  height: 260px !important;
  margin: 0 !important;
  border-radius: 22px !important;
  object-fit: contain !important;
  background: #fff !important;
}
.equipment-grid-full article h3 { margin-top: 0 !important; }
.equipment-master-section { background: #f7fafc !important; }
@media (max-width: 900px){ .equipment-grid-full article { grid-template-columns: 1fr !important; } .equipment-img { height: 230px !important; } }
@media (max-width: 640px){ .equipment-grid-full article { padding: 22px !important; } .equipment-img { height: 200px !important; } }

/* Restore treatment categories previous card grid */
.therapy-index-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
}
.therapy-index-card,
.therapy-index-card:nth-child(even) {
  background: linear-gradient(135deg, #062039 0%, #0f3c55 58%, #378282 100%) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.16) !important;
  box-shadow: 0 24px 70px rgba(6,32,57,.12) !important;
}
.therapy-index-card h3,
.therapy-index-card p,
.therapy-index-card li,
.therapy-index-card:nth-child(even) h3,
.therapy-index-card:nth-child(even) p,
.therapy-index-card:nth-child(even) li {
  color: #fff !important;
}
.therapy-index-card > span,
.therapy-index-card:nth-child(even) > span {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.therapy-index-card:hover {
  background: #fff !important;
  color: #062039 !important;
  transform: translateY(-6px);
  border-color: rgba(55,130,130,.24) !important;
}
.therapy-index-card:hover h3 { color: #378282 !important; }
.therapy-index-card:hover p,
.therapy-index-card:hover li { color: #28475f !important; }
.therapy-index-card:hover > span { background: #062039 !important; color: #fff !important; }
.therapy-index-card.wide { grid-column: 1 / -1 !important; }
@media (max-width: 900px){ .therapy-index-grid { grid-template-columns: 1fr !important; } .therapy-index-card.wide { grid-column: auto !important; } }

/* Final services images and hero cleanup */
.page-hero .hero-copy .breadcrumbs + h1 { margin-top: 24px !important; }
.detail-media img[src$="cryoscreen.png"],
.detail-media img[src$="robotic-4d-spine.png"] { object-fit: contain !important; padding: 24px !important; background: #fff !important; }
.equipment-img[src$="acupuncture-pen.png"],
.equipment-img[src$="chattanooga-vaginal-probe.png"] { object-fit: contain !important; padding: 22px !important; }
.equipment-img[src$="wunda-chair.png"],
.equipment-img[src$="btl.png"],
.equipment-img[src$="chattanooga-compex-pro.png"] { object-fit: contain !important; padding: 16px !important; }

/* Uniform service image shape final */
.detail-media,
.equipment-img {
  border-radius: 34px !important;
  background: #fff !important;
  border: 1px solid rgba(55,130,130,.14) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 18px 48px rgba(6,32,57,.08) !important;
  overflow: hidden !important;
}
.detail-media {
  min-height: 340px !important;
  height: 340px !important;
  display: grid !important;
  place-items: center !important;
}
.detail-media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border-radius: 34px !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 22px !important;
  background: #fff !important;
}
.detail-card .detail-media img[src$="bfr-training.png"] {
  object-fit: contain !important;
  object-position: center !important;
  padding: 22px !important;
}
.equipment-img {
  width: 100% !important;
  height: 260px !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 20px !important;
  margin: 0 !important;
}
.service-card img,
.modern-service-grid .service-card img {
  height: 260px !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 20px !important;
  border-radius: 34px !important;
  background: #fff !important;
}
@media (max-width: 900px){ .detail-media { height: 300px !important; min-height: 300px !important; } .equipment-img { height: 230px !important; } }
@media (max-width: 640px){ .detail-media { height: 240px !important; min-height: 240px !important; } .equipment-img, .service-card img, .modern-service-grid .service-card img { height: 210px !important; } }

/* Equipment split format like detail cards */
.equipment-split-section .title { display: block !important; margin-bottom: 38px; }
.equipment-split-list { display: grid; gap: 30px; }
.equipment-split-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(55,130,130,.16);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(6,32,57,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.equipment-split-card.reverse .equipment-split-media { order: -1; }
.equipment-split-card:hover { transform: translateY(-6px); border-color: rgba(55,130,130,.28); box-shadow: 0 32px 90px rgba(6,32,57,.13); }
.equipment-split-copy h3 { color: #378282; font-size: 34px; line-height: 1.18; margin: 0 0 18px; }
.equipment-split-copy h4 { color: #062039; font-size: 21px; margin: 24px 0 12px; }
.equipment-split-copy p,
.equipment-split-copy li { color: #28475f; font-size: 16px; line-height: 1.75; }
.equipment-split-copy ul { padding-left: 20px; margin: 0; }
.equipment-split-media {
  height: 360px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(55,130,130,.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 18px 48px rgba(6,32,57,.08);
  overflow: hidden;
}
.equipment-split-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 24px; background: #fff; }
.equipment-split-media img[src$="functional-strength.jpeg"] { object-fit: cover; padding: 0; }
.equipment-grid-full { display: none !important; }
@media (max-width: 980px){ .equipment-split-card { grid-template-columns: 1fr; } .equipment-split-card.reverse .equipment-split-media { order: 0; } }
@media (max-width: 640px){ .equipment-split-card { padding: 22px; } .equipment-split-copy h3 { font-size: 27px; } .equipment-split-media { height: 250px; } }

/* Final address phone forms image crop update */
.topbar a, .footer a, .contact-cards a { color: inherit; text-decoration: none; }
.section.alt:has(.stats) { background: #fff !important; }
.section.alt:has(.stats)::before { display: none !important; }
.section.alt:has(.stats) .stat { background: linear-gradient(135deg, #062039 0%, #173c55 58%, #378282 100%) !important; border-color: rgba(255,255,255,.18) !important; }
.section.alt:has(.stats) .stat:hover { background: #fff !important; }
.form-thanks { margin-top: 14px; padding: 13px 15px; border-radius: 12px; background: #eef7fa; color: #062039; font-size: 15px; border: 1px solid rgba(55,130,130,.18); }
.equipment-split-media, .detail-media { height: auto !important; min-height: 0 !important; aspect-ratio: 16 / 10 !important; }
.equipment-split-media img, .detail-media img { width: 100% !important; height: 100% !important; object-fit: contain !important; object-position: center !important; padding: 18px !important; }
.equipment-split-media img[src$="chiro-bed.png"], .detail-media img[src$="chiro-bed.png"],
.equipment-split-media img[src$="pilates.png"], .detail-media img[src$="pilates.png"],
.equipment-split-media img[src$="chattanooga-compex-pro.png"],
.equipment-split-media img[src$="hydro-collateral-pack.png"],
.equipment-split-media img[src$="btl.png"] { object-fit: contain !important; padding: 14px !important; }
@media (max-width: 640px){ .equipment-split-media, .detail-media { aspect-ratio: 4 / 3 !important; } }

/* Responsive service image anti crop final */
.service-detail-section .title p {
  max-width: 980px;
  margin: 18px auto 0;
  color: #28475f;
  font-size: 17px;
  line-height: 1.75;
}
.equipment-split-section .title { display: none !important; }
.detail-media,
.equipment-split-media {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 28px !important;
  background: #fff !important;
}
.detail-media img,
.equipment-split-media img,
.equipment-img,
.service-card img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 18px !important;
  background: #fff !important;
  border-radius: 26px !important;
}
.detail-card .detail-media img[src$="bfr-training.png"],
.equipment-split-media img[src$="pilates.png"],
.equipment-split-media img[src$="chiro-bed.png"],
.equipment-split-media img[src$="chattanooga-compex-pro.png"],
.equipment-split-media img[src$="intelect.png"],
.equipment-split-media img[src$="btl.png"],
.equipment-split-media img[src$="hydro-collateral-pack.png"] {
  object-fit: contain !important;
  padding: 16px !important;
}
.equipment-split-card,
.detail-card {
  overflow: visible !important;
}
.equipment-split-list { gap: 36px !important; }
@media (min-width: 1280px){
  .wrap { max-width: 1320px; }
  .equipment-split-media, .detail-media { aspect-ratio: 16 / 9 !important; }
}
@media (max-width: 1180px){
  .wrap { width: min(94%, 1080px); }
  .hero-copy h1 { font-size: clamp(34px, 4.4vw, 48px) !important; }
  .equipment-split-copy h3, .detail-copy h3 { font-size: 29px !important; }
}
@media (max-width: 980px){
  .nav { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .menu { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero-slider, .page-hero { min-height: 560px !important; }
  .hero-copy { max-width: 760px; }
  .split, .contact-layout, .footer-grid { grid-template-columns: 1fr !important; }
  .detail-card, .equipment-split-card { grid-template-columns: 1fr !important; }
  .detail-card.reverse .detail-media, .equipment-split-card.reverse .equipment-split-media { order: 0 !important; }
  .detail-media, .equipment-split-media { aspect-ratio: 4 / 3 !important; }
}
@media (max-width: 760px){
  .topbar .wrap { flex-direction: column; gap: 6px; text-align: center; }
  .hero-copy h1 { font-size: 34px !important; }
  .hero-copy .lead { font-size: 16px !important; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { text-align: center; width: 100%; }
  .section { padding: 58px 0 !important; }
  .service-detail-section .title p { font-size: 15px; }
  .equipment-split-card, .detail-card { padding: 20px !important; border-radius: 22px !important; }
  .equipment-split-copy p, .equipment-split-copy li, .detail-copy p, .detail-copy li { font-size: 15px !important; }
}
@media (max-width: 430px){
  .brand img { width: 62px !important; height: 62px !important; }
  .menu a { font-size: 14px; }
  .hero-slider, .page-hero { min-height: 520px !important; }
  .hero-copy h1 { font-size: 29px !important; }
  .detail-media, .equipment-split-media { aspect-ratio: 1 / 1 !important; }
  .floating { right: 12px !important; bottom: 12px !important; padding: 12px 16px !important; font-size: 14px !important; }
}

/* Education experience dark pills and no crop images */
.edu-title {
  color: #378282;
  font-size: 28px;
  line-height: 1.25;
  margin: 28px 0 18px;
}
.about-list .pill,
.about-list .pill:hover {
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease !important;
}
.about-list .pill {
  background: linear-gradient(135deg, #062039 0%, #143d56 58%, #378282 100%) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.14) !important;
  box-shadow: 0 20px 54px rgba(6,32,57,.12) !important;
}
.about-list .pill:hover {
  background: #fff !important;
  color: #062039 !important;
  border-color: rgba(55,130,130,.28) !important;
  transform: translateY(-5px);
}
.equipment-split-media,
.detail-media {
  aspect-ratio: auto !important;
  min-height: 430px !important;
  height: auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.equipment-split-media img,
.detail-media img {
  width: 100% !important;
  height: auto !important;
  max-height: 410px !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 18px !important;
  display: block !important;
}
.equipment-split-media img[src$="hydro-collateral-pack.png"],
.equipment-split-media img[src$="btl.png"],
.equipment-split-media img[src$="intelect.png"],
.equipment-split-media img[src$="chattanooga-compex-pro.png"],
.equipment-split-media img[src$="chattanooga-vaginal-probe.png"],
.equipment-split-media img[src$="acupuncture-pen.png"] {
  max-height: 390px !important;
  width: auto !important;
  max-width: 100% !important;
}
.equipment-split-media img[src$="pilates.png"],
.equipment-split-media img[src$="chiro-bed.png"],
.detail-media img[src$="robotic-4d-spine.png"],
.detail-media img[src$="bfr-training.png"] {
  width: 100% !important;
  max-height: 390px !important;
}
@media (max-width: 980px){
  .equipment-split-media, .detail-media { min-height: 360px !important; }
  .equipment-split-media img, .detail-media img { max-height: 340px !important; }
}
@media (max-width: 640px){
  .edu-title { font-size: 24px; }
  .equipment-split-media, .detail-media { min-height: 280px !important; }
  .equipment-split-media img, .detail-media img { max-height: 260px !important; padding: 12px !important; }
}

/* Home focused services replacement */
.home-focused-services .service-card img {
  height: 250px !important;
  object-fit: contain !important;
  padding: 18px !important;
  background: #fff !important;
}
.home-focused-services .service-card .service-body { min-height: 230px !important; }
.home-focused-services .service-card h3 { min-height: 86px !important; }
.service-more { margin-top: 38px; }
.service-more .btn { display: inline-flex; }
@media (max-width: 640px){ .home-focused-services .service-card img { height: 210px !important; } .home-focused-services .service-card h3 { min-height: auto !important; } }


/* Premium technology navigation final */
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
.brand img, .footer-brand img { width: 92px !important; height: 92px !important; object-fit: contain !important; }
.brand { gap: 14px !important; }
.home-focused-services .service-more, .service-more { display: flex !important; justify-content: center !important; text-align: center !important; }
.home-focused-services .service-more .btn, .service-more .btn { margin-left: auto !important; margin-right: auto !important; }
.therapy-index-card ul { list-style: none !important; padding-left: 0 !important; margin-top: 22px !important; display: grid; gap: 12px; }
.therapy-index-card li { list-style: none !important; }
.tech-link { display: grid; grid-template-columns: 34px 1fr 28px; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 16px; border: 1px solid rgba(255,255,255,.22); border-left: 4px solid transparent; background: rgba(255,255,255,.09); color: #fff !important; text-decoration: none; cursor: pointer; box-shadow: 0 12px 28px rgba(0,22,52,.08); transition: transform .28s ease, background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease; }
.tech-icon { width: 30px; height: 30px; display: inline-grid; place-items: center; border-radius: 10px; background: rgba(0,166,166,.18); color: #9ff4ef; font-weight: 700; line-height: 1; }
.tech-arrow { font-size: 19px; color: currentColor; transition: transform .28s ease; }
.tech-label { font-size: 15px; line-height: 1.45; color: currentColor; }
.tech-link:hover, .tech-link:focus, .tech-link.active { transform: translateY(-3px); border-left-color: #00A6A6; background: #fff; color: #001634 !important; box-shadow: 0 18px 42px rgba(0,22,52,.16); outline: none; }
.tech-link:hover .tech-arrow, .tech-link:focus .tech-arrow, .tech-link.active .tech-arrow { transform: translateX(4px); }
.tech-link:hover .tech-icon, .tech-link:focus .tech-icon, .tech-link.active .tech-icon { background: rgba(0,166,166,.14); color: #00A6A6; }
.therapy-index-card:hover .tech-link:not(:hover):not(.active) { background: #f8fafc; color: #001634 !important; border-color: rgba(0,22,52,.08); }
.tech-transition { margin: 52px auto 0; max-width: 920px; text-align: center; padding: 42px 34px; border-radius: 28px; background: linear-gradient(135deg, #fff 0%, #f8fafc 100%); border: 1px solid rgba(0,166,166,.14); box-shadow: 0 28px 80px rgba(0,22,52,.10); }
.tech-transition h2 { color: #378282; margin: 10px 0 14px; font-size: clamp(30px, 4vw, 44px); line-height: 1.15; }
.tech-transition p { max-width: 760px; margin: 0 auto 24px; color: #28475f; line-height: 1.75; }
.tech-transition-btn { justify-content: center; }
.scroll-discover { margin-top: 20px; display: grid; justify-items: center; gap: 12px; color: #001634; font-weight: 700; }
.scroll-discover i { width: 24px; height: 38px; border-radius: 999px; border: 2px solid rgba(0,166,166,.45); position: relative; }
.scroll-discover i::before { content: ""; position: absolute; left: 50%; top: 7px; width: 5px; height: 5px; border-radius: 999px; background: #00A6A6; transform: translateX(-50%); animation: techScrollDot 1.45s infinite; }
@keyframes techScrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 16px); } }
body.js-enabled .service-anchor { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease, box-shadow .35s ease, outline-color .35s ease; }
body.js-enabled .service-anchor.in-view { opacity: 1; transform: none; }
.service-anchor { scroll-margin-top: 132px; }
.service-anchor.target-pulse { outline: 3px solid rgba(0,166,166,.38); box-shadow: 0 28px 90px rgba(0,166,166,.22) !important; }
@media (max-width: 760px){ .brand img, .footer-brand img { width: 76px !important; height: 76px !important; } .tech-transition { padding: 30px 20px; } .tech-link { grid-template-columns: 30px 1fr 22px; padding: 12px; } }


/* About education and experience final content */
.credential-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.credential-item { border-radius: 22px; padding: 22px 24px; background: linear-gradient(135deg, #062039 0%, #16475b 58%, #378282 100%); color: #fff; box-shadow: 0 18px 48px rgba(6,32,57,.12); transition: transform .28s ease, background .28s ease, color .28s ease; }
.credential-item strong { display: block; color: #fff; font-size: 18px; margin-bottom: 8px; }
.credential-item span, .credential-item li { color: #fff; font-size: 15.5px; line-height: 1.65; }
.credential-item ul { margin: 0; padding-left: 18px; }
.credential-full { grid-column: 1 / -1; }
.credential-item:hover { transform: translateY(-4px); background: #fff; color: #062039; }
.credential-item:hover strong { color: #378282; }
.credential-item:hover span, .credential-item:hover li { color: #28475f; }
@media (max-width: 720px){ .credential-panel { grid-template-columns: 1fr; } .credential-full { grid-column: auto; } }


/* Founder education section redesigned */
.education-experience-section { background: #fff !important; padding-top: 84px !important; }
.education-profile-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 36px; align-items: stretch; }
.education-profile-card { position: relative; overflow: hidden; border-radius: 26px; padding: 30px; min-height: 210px; background: #f8fafc; border: 1px solid rgba(55,130,130,.18); box-shadow: 0 22px 60px rgba(6,32,57,.08); transition: transform .28s ease, background .28s ease, box-shadow .28s ease; }
.education-profile-card::after { content: ""; position: absolute; right: -48px; top: -48px; width: 150px; height: 150px; border-radius: 999px; background: rgba(55,130,130,.10); }
.profile-step { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 999px; background: #062039; color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 22px; }
.education-profile-card h3 { color: #378282; font-size: 26px; line-height: 1.2; margin: 0 0 12px; }
.education-profile-card p, .education-profile-card li, .education-profile-card span { color: #28475f; font-size: 16px; line-height: 1.7; }
.education-profile-card.feature-card { background: linear-gradient(135deg, #062039 0%, #15485b 58%, #378282 100%); }
.education-profile-card.feature-card h3, .education-profile-card.feature-card p { color: #fff !important; }
.education-profile-card.feature-card .profile-step { background: rgba(255,255,255,.14); }
.timeline-card { grid-column: 1 / -1; min-height: 0; }
.timeline-card ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.timeline-card li { display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: start; padding: 16px; border-radius: 18px; background: #fff; border: 1px solid rgba(55,130,130,.14); }
.timeline-card li strong { color: #062039; font-size: 17px; }
.education-profile-card:hover { transform: translateY(-5px); background: linear-gradient(135deg, #062039 0%, #15485b 58%, #378282 100%); box-shadow: 0 30px 80px rgba(6,32,57,.14); }
.education-profile-card:hover h3, .education-profile-card:hover p, .education-profile-card:hover span, .education-profile-card:hover li, .education-profile-card:hover strong { color: #fff !important; }
.education-profile-card:hover .profile-step { background: rgba(255,255,255,.14); }
.education-profile-card:hover .timeline-card li, .education-profile-card:hover li { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); }
@media (max-width: 980px){ .education-profile-grid { grid-template-columns: 1fr; } .timeline-card { grid-column: auto; } .timeline-card ul { grid-template-columns: 1fr; } }
@media (max-width: 560px){ .education-profile-card { padding: 24px; } .timeline-card li { grid-template-columns: 1fr; } }


/* Dark education cards, bigger logo, footer address spacing final */
.brand img { width: 118px !important; height: 118px !important; object-fit: contain !important; border-radius: 20px !important; }
.footer-brand img { width: 118px !important; height: 118px !important; object-fit: contain !important; border-radius: 20px !important; }
.nav { min-height: 116px !important; }
.education-profile-card,
.education-profile-card.feature-card,
.education-profile-card.timeline-card,
.education-profile-card:hover {
  background: linear-gradient(135deg, #062039 0%, #15485b 58%, #378282 100%) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.08) !important;
}
.education-profile-card h3,
.education-profile-card p,
.education-profile-card span,
.education-profile-card strong,
.education-profile-card li,
.education-profile-card:hover h3,
.education-profile-card:hover p,
.education-profile-card:hover span,
.education-profile-card:hover strong,
.education-profile-card:hover li { color: #fff !important; }
.education-profile-card .profile-step,
.education-profile-card:hover .profile-step { background: rgba(255,255,255,.15) !important; color: #fff !important; }
.timeline-card li,
.education-profile-card:hover li { background: rgba(255,255,255,.09) !important; border-color: rgba(255,255,255,.16) !important; }
.footer .footer-grid > div:last-child p { line-height: 1.35 !important; margin-top: 8px !important; }
.footer .footer-grid > div:last-child p br { line-height: 1 !important; }
.footer .footer-grid > div:last-child a { color: #fff !important; text-decoration: none !important; }
@media (max-width: 760px){ .brand img, .footer-brand img { width: 90px !important; height: 90px !important; } .nav { min-height: 96px !important; } }


/* Final requested image and highlight updates */
.services-hero-blue {
  background-size: cover !important;
  background-position: center !important;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #001634, #378282);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 14px 30px rgba(0, 22, 52, .16);
}
.service-card:hover .service-badge {
  background: #fff;
  color: #001634;
}


/* Final mobile responsive repair: menu, hero slider readability, forms */
.slide {
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}
.slide.active {
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(6,32,57,.14);
  border-radius: 14px;
  background: #fff;
  color: #062039;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(6,32,57,.08);
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.form-thanks {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,166,166,.10);
  color: #062039;
  font-weight: 700;
  border: 1px solid rgba(0,166,166,.20);
}
@media (max-width: 1024px) {
  .wrap { width: min(100% - 36px, 1180px) !important; }
  .header { z-index: 1000 !important; }
  .nav {
    min-height: 96px !important;
    justify-content: center !important;
    position: relative !important;
    gap: 14px !important;
  }
  .brand img { width: 92px !important; height: 92px !important; }
  .header .btn { display: none !important; }
  .menu-toggle {
    display: inline-flex !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }
  .menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    padding: 14px !important;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(6,32,57,.12);
    box-shadow: 0 24px 70px rgba(6,32,57,.18);
    z-index: 1001;
  }
  body.menu-open .menu { display: flex !important; }
  .menu a {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 16px !important;
    text-align: center;
  }
  .hero-slider { min-height: 650px !important; }
  .hero-copy { padding-top: 86px !important; max-width: 620px !important; }
  .hero-copy h1 { font-size: 46px !important; line-height: 1.12 !important; }
  .lead { font-size: 19px !important; line-height: 1.7 !important; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1180px) !important; }
  .nav { min-height: 106px !important; }
  .brand img { width: 96px !important; height: 96px !important; }
  .menu-toggle { right: 0; width: 44px; height: 44px; }
  .hero-slider {
    min-height: 720px !important;
    height: auto !important;
    overflow: hidden !important;
  }
  .slide {
    background-position: center center !important;
  }
  .slide:not(.active) .hero-copy {
    display: none !important;
  }
  .slide::before {
    background: linear-gradient(180deg, rgba(6,32,57,.95) 0%, rgba(6,32,57,.86) 44%, rgba(6,32,57,.72) 100%) !important;
  }
  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 58px !important;
    padding-bottom: 72px !important;
    color: #fff !important;
  }
  .hero-copy .kicker {
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
    color: #9fe6e3 !important;
  }
  .hero-copy h1 {
    font-size: 33px !important;
    line-height: 1.12 !important;
    margin: 0 0 16px !important;
    max-width: 100% !important;
    color: #fff !important;
    text-shadow: 0 4px 22px rgba(0,0,0,.38) !important;
  }
  .lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
    margin-bottom: 22px !important;
    color: rgba(255,255,255,.94) !important;
    max-width: 100% !important;
    text-shadow: 0 2px 16px rgba(0,0,0,.26) !important;
  }
  .hero-copy .actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 18px !important;
  }
  .hero-copy .actions .btn {
    width: 100% !important;
    min-height: 54px !important;
    padding: 14px 18px !important;
    font-size: 17px !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .slider-arrow { display: none !important; }
  .dots {
    bottom: 24px !important;
    z-index: 5 !important;
  }
  .floating { display: none !important; }
  .section { padding: 62px 0 !important; }
  .grid-3, .grid-4, .footer-grid, .contact-layout, .split, .about-split, .service-grid, .equipment-grid {
    grid-template-columns: 1fr !important;
  }
  .btn { max-width: 100%; white-space: normal; }
}
@media (max-width: 390px) {
  .hero-slider { min-height: 760px !important; }
  .hero-copy h1 { font-size: 30px !important; }
  .lead { font-size: 15.5px !important; }
}


/* Mobile slider and menu hard fix 20260730-mobile2 */
@media (min-width: 769px) {
  .header .menu-toggle,
  .menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
  }
  .header .menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .header .btn[data-appointment="true"] {
    display: inline-flex !important;
  }
}
@media (max-width: 768px) {
  body { overflow-x: hidden !important; }
  .topbar { display: none !important; }
  .header { position: sticky !important; top: 0 !important; z-index: 9999 !important; }
  .nav {
    width: min(100% - 24px, 1180px) !important;
    min-height: 96px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    position: relative !important;
  }
  .brand { margin: 0 auto !important; }
  .brand img {
    width: 86px !important;
    height: 86px !important;
    border-radius: 18px !important;
  }
  .header .btn[data-appointment="true"] { display: none !important; }
  .header .menu-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid rgba(6,32,57,.18) !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #fff !important;
    color: #062039 !important;
    border-radius: 14px !important;
    z-index: 10001 !important;
  }
  .header .menu-toggle span {
    display: block !important;
    width: 23px !important;
    height: 2.5px !important;
    background: #062039 !important;
    border-radius: 99px !important;
  }
  .header .menu {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 14px !important;
    flex-direction: column !important;
    gap: 6px !important;
    background: #fff !important;
    border: 1px solid rgba(6,32,57,.12) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 70px rgba(6,32,57,.20) !important;
    z-index: 10000 !important;
  }
  body.menu-open .header .menu { display: flex !important; }
  .header .menu a {
    display: block !important;
    width: 100% !important;
    padding: 13px 14px !important;
    border-radius: 12px !important;
    color: #062039 !important;
    text-align: center !important;
    font-size: 16px !important;
  }
  .header .menu a.active,
  .header .menu a:hover {
    background: #f2f8f9 !important;
    color: #378282 !important;
  }
  .hero-slider {
    min-height: 690px !important;
    height: auto !important;
    background: #062039 !important;
    overflow: hidden !important;
  }
  .slide {
    background-position: 58% center !important;
    background-size: cover !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }
  .slide.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 3 !important;
  }
  .slide:not(.active) .hero-copy { display: none !important; }
  .slide::before {
    background: linear-gradient(180deg, rgba(0,22,52,.72) 0%, rgba(0,22,52,.84) 42%, rgba(0,22,52,.94) 100%) !important;
    backdrop-filter: blur(1px) !important;
  }
  .hero-slider .wrap {
    width: min(100% - 24px, 1180px) !important;
    min-height: 690px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }
  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 22px 18px 70px !important;
    box-sizing: border-box !important;
    border-radius: 22px !important;
    background: rgba(0,22,52,.72) !important;
    border: 1px solid rgba(255,255,255,.20) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.22) !important;
    color: #fff !important;
    text-align: left !important;
  }
  .hero-copy .kicker {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #aee8e8 !important;
    margin-bottom: 10px !important;
    letter-spacing: .01em !important;
  }
  .hero-copy h1 {
    font-size: 27px !important;
    line-height: 1.16 !important;
    margin: 0 0 14px !important;
    color: #fff !important;
    max-width: 100% !important;
    letter-spacing: 0 !important;
    text-shadow: 0 3px 16px rgba(0,0,0,.42) !important;
  }
  .hero-copy .lead,
  .lead {
    font-size: 15.5px !important;
    line-height: 1.62 !important;
    margin: 0 0 20px !important;
    color: rgba(255,255,255,.96) !important;
    max-width: 100% !important;
    text-shadow: 0 2px 12px rgba(0,0,0,.36) !important;
  }
  .hero-copy .actions,
  .actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 11px !important;
    align-items: stretch !important;
    width: 100% !important;
    margin-top: 16px !important;
  }
  .hero-copy .actions .btn,
  .actions .btn {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 50px !important;
    padding: 13px 16px !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    border-radius: 14px !important;
  }
  .slider-arrow { display: none !important; }
  .dots {
    bottom: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9 !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: rgba(0,22,52,.45) !important;
    backdrop-filter: blur(8px) !important;
  }
}
@media (max-width: 390px) {
  .hero-slider, .hero-slider .wrap { min-height: 720px !important; }
  .hero-copy { padding: 20px 16px 68px !important; }
  .hero-copy h1 { font-size: 24px !important; }
  .hero-copy .lead, .lead { font-size: 14.5px !important; }
  .hero-copy .actions .btn, .actions .btn { min-height: 48px !important; font-size: 15px !important; }
}


/* Social icon footer update 20260730-social1 */
.social {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 26px !important;
}
.social a,
.social-link {
  width: 52px !important;
  height: 52px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.12) !important;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease !important;
}
.social-link svg {
  width: 23px !important;
  height: 23px !important;
  fill: currentColor !important;
  display: block !important;
}
.social-link:hover {
  transform: translateY(-4px) !important;
  background: #fff !important;
  color: #062039 !important;
  border-color: #fff !important;
}
.social-link.instagram:hover { color: #c13584 !important; }
.social-link.facebook:hover { color: #1877f2 !important; }
.social-link.whatsapp:hover { color: #25d366 !important; }
@media (max-width: 640px) {
  .social { justify-content: center !important; }
  .social a, .social-link { width: 48px !important; height: 48px !important; }
}


.certificates-block {
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(55, 130, 130, 0.18);
  box-shadow: 0 18px 50px rgba(6, 32, 57, 0.08);
}

.certificates-block h3 {
  margin: 0 0 16px;
  color: #378282;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
}

.certificate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.certificate-list li {
  position: relative;
  padding-left: 24px;
  color: #062039;
  font-size: 16px;
  line-height: 1.55;
}

.certificate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #378282;
  box-shadow: 0 0 0 4px rgba(55, 130, 130, 0.12);
}

@media (max-width: 760px) {
  .certificates-block {
    padding: 20px;
  }

  .certificate-list {
    grid-template-columns: 1fr;
  }
}


.about-certificates-section .about-certificates-card {
  max-width: 1040px;
  margin: 30px auto 0;
}

.about-certificates-section .certificate-list li {
  font-weight: 700;
}


.poster-services-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.poster-services-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.poster-services-media {
  border-radius: 28px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(55, 130, 130, 0.16);
  box-shadow: 0 24px 70px rgba(6, 32, 57, 0.12);
}

.poster-services-media img {
  display: block;
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.poster-services-content > p {
  max-width: 760px;
  margin-bottom: 26px;
}

.poster-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.poster-service-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #062039;
  background: #ffffff;
  border: 1px solid rgba(55, 130, 130, 0.16);
  box-shadow: 0 14px 38px rgba(6, 32, 57, 0.07);
  font-weight: 700;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}

.poster-service-list a span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(55, 130, 130, 0.12);
  color: #378282;
  font-size: 13px;
  font-weight: 700;
}

.poster-service-list a:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #062039, #378282);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 24px 55px rgba(6, 32, 57, 0.18);
}

.poster-service-list a:hover span {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.poster-services-actions {
  margin-top: 28px;
}

.btn.ghost-dark {
  color: #062039;
  background: transparent;
  border: 1px solid rgba(6, 32, 57, 0.22);
}

.btn.ghost-dark:hover {
  color: #ffffff;
  background: #378282;
  border-color: #378282;
}

@media (max-width: 980px) {
  .poster-services-wrap {
    grid-template-columns: 1fr;
  }

  .poster-services-media {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .poster-service-list {
    grid-template-columns: 1fr;
  }

  .poster-services-actions {
    justify-content: center;
  }
}

/* Contact, footer and icon service polish 20260811-contact-icons1 */
.poster-services-section .poster-services-wrap-clean {
  display: block !important;
  max-width: 1220px;
}
.poster-services-section .poster-services-media { display: none !important; }
.poster-services-section .poster-services-content {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.poster-services-section .poster-services-content > p {
  margin-left: auto;
  margin-right: auto;
}
.poster-service-list.icon-service-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.poster-service-list.icon-service-list a {
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 16px !important;
  text-align: left !important;
  min-height: 92px;
  cursor: pointer;
}
.poster-service-list.icon-service-list a .service-mini-icon {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: #e8f3f3 !important;
  color: #378282 !important;
  font-size: 24px !important;
  line-height: 1 !important;
  box-shadow: inset 0 0 0 1px rgba(55,130,130,.15) !important;
  transition: .25s ease !important;
}
.poster-service-list.icon-service-list a strong {
  color: inherit;
  font-size: 22px;
  line-height: 1.25;
}
.poster-service-list.icon-service-list a:hover .service-mini-icon {
  background: #fff !important;
  color: #062039 !important;
  transform: scale(1.06);
}
.home-location-pills {
  display: grid;
  gap: 10px;
  margin: 24px 0 8px;
  max-width: 620px;
}
.home-location-pills span {
  color: #378282;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
.home-location-pills strong {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(55,130,130,.18);
  border-radius: 16px;
  padding: 14px 18px;
  color: #062039;
  box-shadow: 0 18px 48px rgba(6,32,57,.07);
}
.home-location-pills strong::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #378282;
  box-shadow: 0 0 0 6px rgba(55,130,130,.12);
}
.contact-cards .card p,
.footer .footer-grid > div:last-child p {
  word-break: normal !important;
  overflow-wrap: anywhere;
}
.contact-cards a,
.footer a,
.topbar a { color: inherit !important; text-decoration: none !important; }
.footer .footer-grid > div:last-child p { line-height: 1.45 !important; }
@media (max-width: 760px) {
  .poster-service-list.icon-service-list { grid-template-columns: 1fr !important; }
  .poster-service-list.icon-service-list a strong { font-size: 18px; }
  .poster-service-list.icon-service-list a { min-height: 76px; }
  .poster-service-list.icon-service-list a .service-mini-icon { width: 46px !important; height: 46px !important; min-width: 46px !important; font-size: 20px !important; }
  .home-location-pills strong { font-size: 15px; }
}
/* 20260812-foot-chiro1 START */
.poster-service-list.icon-service-list {
  align-items: stretch;
}
.poster-service-list.icon-service-list a {
  cursor: pointer;
}
.poster-service-list.icon-service-list a:hover .service-mini-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, #001634, #378282);
  color: #ffffff;
}
.footer .footer-grid > div:last-child p,
.footer .footer-grid .contact-text {
  max-width: 360px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: anywhere;
}
.footer a[href^="mailto"],
.footer a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
.blink-chiro {
  display: inline-block;
  animation: chiroBedBlink 1.15s ease-in-out infinite;
  text-shadow: 0 0 0 rgba(0, 166, 166, 0);
}
@keyframes chiroBedBlink {
  0%, 100% { color: inherit; transform: scale(1); text-shadow: 0 0 0 rgba(0, 166, 166, 0); }
  50% { color: #00a6a6; transform: scale(1.025); text-shadow: 0 0 18px rgba(0, 166, 166, 0.45); }
}
@media (max-width: 767px) {
  .poster-service-list.icon-service-list {
    grid-template-columns: 1fr;
  }
  .footer .footer-grid > div:last-child p {
    max-width: 100%;
  }
}
/* 20260812-foot-chiro1 END */
/* 20260812-velstand-icons1 START */
.service-mini-icon.service-mini-img {
  width: 68px;
  height: 68px;
  padding: 0;
  overflow: hidden;
  background: #e9fbfb;
  border: 1px solid rgba(0, 166, 166, .22);
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.65);
}
.service-mini-icon.service-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster-service-list.icon-service-list a:hover .service-mini-icon.service-mini-img {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 22, 52, .14), inset 0 0 0 5px rgba(255,255,255,.85);
}
.footer .footer-grid > div:last-child p {
  max-width: 420px;
  line-height: 1.55;
}
@media (max-width: 767px) {
  .service-mini-icon.service-mini-img {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }
}
/* 20260812-velstand-icons1 END */
/* 20260812-service-icons2 START */
.service-mini-icon.service-mini-img {
  background: #ffffff;
  border-color: rgba(0, 22, 52, .12);
  box-shadow: 0 10px 22px rgba(0, 22, 52, .08);
}
.service-mini-icon.service-mini-img img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}
.poster-services-actions {
  justify-content: center;
}
.poster-services-actions .btn {
  min-width: 255px;
  text-align: center;
}
@media (max-width: 767px) {
  .poster-services-actions .btn {
    width: 100%;
    min-width: 0;
  }
}
/* 20260812-service-icons2 END */

/* 20260812-uniform-icons-mission1 START */
.service-mini-icon.service-mini-img {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  border-radius: 999px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #eaf7f7 !important;
  border: 1px solid rgba(55,130,130,.20) !important;
  box-shadow: 0 10px 24px rgba(0,22,52,.08), inset 0 0 0 5px rgba(255,255,255,.72) !important;
}
.service-mini-icon.service-mini-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  padding: 8px !important;
  display: block !important;
}
.poster-service-list.icon-service-list a:hover .service-mini-icon.service-mini-img {
  transform: translateY(-2px) scale(1.05) !important;
  background: #ffffff !important;
  border-color: rgba(55,130,130,.45) !important;
}
@media (max-width: 767px) {
  .service-mini-icon.service-mini-img {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
  }
  .service-mini-icon.service-mini-img img { padding: 7px !important; }
}
/* 20260812-uniform-icons-mission1 END */
