/*
Theme Name: In Balance Centre
Author: Aldemar de Sousa
*/

/* ==================================================
   1. VARIABLES
================================================== */

:root {
  --colour-purple: #584998;
  --colour-purple-alt: #5f4aa6;
  --colour-purple-card: #7769ad;
  --colour-orange: #f18620;
  --colour-orange-dark: #ef8418;
  --colour-peach: #fcd2aa;
  --colour-lavender: #edebf7;
  --colour-cream: #f3eee8;
  --colour-white: #ffffff;
  --colour-light-grey: #f1f1f1;
  --colour-text: #333333;

  --font-main: "Poppins", sans-serif;

  --site-width: 1140px;
  --wide-width: 1180px;

  --desktop-side-padding: 68px;
  --tablet-side-padding: 36px;
  --mobile-side-padding: 24px;
  --small-mobile-side-padding: 16px;
}

/* ==================================================
   2. RESET / BASE
================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--colour-white);
  color: var(--colour-text);
}

body.page {
  padding-top: 75px;
}

body.home {
  padding-top: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

#help {
  scroll-margin-top: 70px;
}

/* ==================================================
   3. SHARED LAYOUT
================================================== */

.section-inner,
.osteo-help-inner,
.topbar-inner,
.header-inner {
  width: 100%;
  max-width: var(--wide-width);
  margin: 0 auto;
  padding-left: var(--desktop-side-padding);
  padding-right: var(--desktop-side-padding);
}

.hero-inner,
.about-osteo .section-inner,
.osteo-help-inner,
.services-pricing .section-inner,
.about-me .section-inner,
.footer-inner,
.copyright-bar .section-inner {
  max-width: var(--site-width);
  padding-left: 0;
  padding-right: 0;
}

/* ==================================================
   4. TITLES
================================================== */

.section-title-center,
.section-title-purple,
.section-title-light {
  margin: 0 0 75px;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}

.section-title-center,
.section-title-purple {
  color: var(--colour-purple);
  font-size: 70px;
}

.section-title-light {
  color: var(--colour-white);
  font-size: 70px;
}

/* ==================================================
   5. BUTTON IMAGES
================================================== */

.hero-btn,
.about-osteo-learnmore-icon,
.osteo-help-readmore,
.services-book-btn,
.about-me-readmore {
  display: inline-block;
  line-height: 0;
}

.hero-button-icon,
.about-osteo-learnmore-icon img,
.osteo-help-readmore img,
.services-book-btn img,
.about-me-readmore img {
  width: auto;
  height: 45px;
}

/* ==================================================
   6. TOPBAR
================================================== */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 45px;
  background: var(--colour-orange-dark);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  height: 45px;
}

.topbar-left,
.topbar-center,
.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--colour-white);
  font-size: 14px;
  line-height: 1;
}

.topbar-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.book-now-icon {
  width: auto;
  height: 25px;
}

/* ==================================================
   7. HEADER / NAVIGATION
================================================== */

.site-header {
  position: fixed;
  top: 45px;
  left: 0;
  z-index: 9998;
  width: 100%;
  background: var(--colour-light-grey);
  transition: box-shadow 0.25s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  transition: height 0.25s ease;
}

.logo,
.logo a,
.custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 1;
}

.custom-logo {
  width: auto;
  height: 75px;
  transition: height 0.25s ease;
}

.site-header.header-scrolled {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.site-header.header-scrolled .header-inner {
  height: 60px;
}

.site-header.header-scrolled .custom-logo {
  height: 58px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .menu a {
  color: var(--colour-purple-alt);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--colour-purple-alt);
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==================================================
   8. HERO
================================================== */

.hero {
  padding-top: 0;
  padding-bottom: 75px;
  background: var(--colour-purple);
}

.hero-text {
  margin-top: 0;
  transform: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 75px;
  width: 100%;
  max-width: var(--site-width);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.hero-text,
.hero-art {
  flex: 0 0 532.5px;
  max-width: 532.5px;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  margin: 0 0 35px;
  color: var(--colour-white);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
}

.hero-text p {
  margin: 0 0 10px;
  color: var(--colour-white);
  font-size: 24px;
  line-height: 1.25;
}

.hero-text p:last-of-type {
  margin-bottom: 35px;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle,
.osteo-help-circle {
  width: 510px;
  height: 510px;
  border-radius: 50%;
  overflow: hidden;
}

.hero-circle {
  background: var(--colour-lavender);
}

.hero-circle img,
.osteo-help-circle img,
.about-me-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================================================
   9. ABOUT OSTEOPATHY
================================================== */

.about-osteo {
  padding: 75px 0;
  background: var(--colour-peach);
}

.about-osteo-content {
  max-width: 980px;
}

.about-osteo-content h3 {
  margin: 0 0 35px;
  color: var(--colour-purple);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
}

.about-osteo-content p {
  margin: 0 0 35px;
  color: var(--colour-purple);
  font-size: 20px;
  line-height: 1.25;
}

/* ==================================================
   10. OSTEO HELP
================================================== */

.osteo-help {
  padding: 75px 0;
  background: var(--colour-orange);
}

.osteo-help-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 75px;
}

.osteo-help-art,
.osteo-help-content {
  flex: 0 0 532.5px;
  max-width: 532.5px;
}

.osteo-help-art {
  display: flex;
  justify-content: center;
}

.osteo-help-circle {
  background: var(--colour-purple);
}

.osteo-help-content h2 {
  margin: 0 0 35px;
  color: var(--colour-white);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
}

.osteo-help-content p,
.osteo-help-strong {
  color: var(--colour-white);
  font-size: 20px;
  line-height: 1.25;
}

.osteo-help-content p {
  margin: 0 0 20px;
}

.osteo-help-strong {
  margin: 0 0 35px;
}

/* ==================================================
   11. TESTIMONIALS
================================================== */

.testimonials {
  padding: 75px 0;
  background: var(--colour-purple);
}

.testimonials-inner {
  max-width: 980px;
}

.testimonial-text {
  max-width: 860px;
  margin: 0 auto;
  color: var(--colour-white);
  font-size: 20px;
  line-height: 1.25;
  text-align: left;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
}

.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colour-white);
}

/* ==================================================
   12. SERVICES / PRICING
================================================== */

.services-pricing {
  padding: 75px 0;
  background: var(--colour-lavender);
}

.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 35px;
}

.service-card {
  flex: 0 0 330px;
  max-width: 330px;
  min-height: 372px;
  padding: 30px 20px 28px;
  background: var(--colour-purple-card);
  color: var(--colour-white);
  text-align: center;
}

.service-card h3,
.service-price {
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 20px;
}

.service-card p {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.service-price {
  margin: 0 0 14px;
}

.services-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-note {
  margin-bottom: 10px;
  color: var(--colour-purple);
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
}

/* ==================================================
   13. ABOUT ME / ABOUT PAGE
================================================== */

.about-me {
  padding: 75px 0;
  overflow: hidden;
  background: var(--colour-peach);
}

.about-me-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
}

.about-me-text {
  flex: 0 0 730px;
  max-width: 730px;
  padding-top: 135px;
}

.about-me-text h2 {
  position: absolute;
  top: 0;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
}

.about-me-text p {
  max-width: 522px;
  margin: 0 0 20px;
  color: var(--colour-purple);
  font-size: 20px;
  line-height: 1.25;
}

.about-me-art {
  position: relative;
  flex: 0 0 375px;
  max-width: 375px;
  min-height: 383px;
}

.about-me-photo {
  position: absolute;
  top: 100px;
  right: 0;
  width: 375px;
  height: 375px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--colour-lavender);
}

.about-me-pencil {
  position: absolute;
  top: 206px;
  left: -230px;
  z-index: 2;
  width: 173px;
}

/* About page desktop */
@media (min-width: 1025px) {
  .about-page .section-inner {
    max-width: var(--site-width);
    padding-left: 0;
    padding-right: 0;
  }

  .about-page .about-me-text {
    padding-top: 140px;
  }

  .about-page .about-me-text h2 {
    left: 0;
    width: 100%;
    transform: none;
    text-align: center;
  }

  .about-page .about-me-text p {
    max-width: 730px;
  }

  .about-page .about-me-art {
    min-height: 700px;
  }

  .about-page .about-me-photo {
    top: 140px;
  }

  .about-page .about-me-pencil {
    top: 555px;
    left: 70px;
    width: 250px;
  }
}

/* ==================================================
   14. INNER PAGES
================================================== */

.services-page p,
.services-page h3,
.services-page li,
.booking-page p,
.booking-page h3,
.booking-page li {
  color: var(--colour-purple);
  font-size: 24px;
  line-height: 1.25;
}

.services-spacing {
  margin-top: 50px;
}

.booking-page {
  padding: 75px 0 30px;
  background: var(--colour-peach);
}

.booking-page iframe {
  margin-bottom: 75px;
}

.booking-intro {
  margin-bottom: 35px;
}

.booking-intro p {
  margin: 0 0 20px;
}

/* ==================================================
   15. SERVICES MOCKUP PAGE
================================================== */

.services-mockup-page {
  position: relative;
  padding: 75px 0;
  overflow: hidden;
  background-color: var(--colour-peach);
  background-image: url("https://inbalancecentre.com/wp-content/uploads/2026/04/logomark2.svg");
  background-repeat: no-repeat;
  background-size: 1180px auto;
  background-position: right 150px top 0;
}

.services-mockup-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

.services-mockup-title {
  margin: 0 0 55px;
  color: var(--colour-purple);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.services-mockup-page p,
.services-mockup-page li,
.services-mockup-page h3 {
  color: var(--colour-purple);
  font-size: 20px;
  line-height: 1.18;
}

.services-mockup-page p {
  margin: 0 0 22px;
}

.services-osteo-row {
  display: block;
  clear: both;
}

.services-osteo-text {
  max-width: 565px;
}

.services-osteo-image {
  float: right;
  width: 460px;
  max-width: 460px;
  margin: 10px 0 140px 60px;
}

.services-osteo-image img,
.services-help-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
}

.services-help-section {
  clear: both;
  margin-top: 45px;
}

.services-help-row {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 42px;
  align-items: center;
}

.services-help-image {
  max-width: 430px;
}

.services-help-list {
  max-width: 470px;
}

.services-help-list h3 {
  margin: 0 0 8px;
  font-weight: 700;
}

.services-help-list ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.services-help-list li {
  margin-bottom: 4px;
}

.services-massage-section,
.services-training-section {
  margin-top: 50px;
  clear: both;
}

.services-massage-section .services-mockup-title,
.services-training-section .services-mockup-title {
  margin-bottom: 35px;
}

.services-training-social img {
  width: 38px;
  height: 38px;
}

/* ==================================================
   16. FOOTER / GET IN TOUCH
================================================== */

.site-footer {
  padding-top: 10px;
  background: var(--colour-purple);
  color: var(--colour-white);
}

.footer-inner {
  max-width: 1320px;
  padding-top: 82px;
  padding-bottom: 48px;
}

.site-footer .section-title-light {
  position: relative;
  margin-bottom: 82px;
  font-size: 78px;
  line-height: 1;
}

.site-footer .section-title-light::after {
  content: "";
  display: block;
  width: 66px;
  height: 6px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: var(--colour-orange);
}

.footer-top,
.footer-middle {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 62px;
}

.footer-contact {
  position: relative;
  flex: 0 0 470px;
  max-width: 470px;
  padding-top: 8px;
  padding-left: 170px;
}

.footer-logo {
  position: absolute;
  top: 12px;
  left: 0;
  width: 165px;
}

.footer-contact::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 135px;
  width: 1px;
  height: 180px;
  background: rgba(255, 255, 255, 0.45);
}

.footer-contact h3,
.footer-locations h3 {
  margin: 0 0 28px;
  color: var(--colour-white);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item p {
  margin: 0;
  color: var(--colour-white);
  font-size: 20px;
  line-height: 1.45;
}

.footer-icon,
.footer-location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--colour-orange);
  flex-shrink: 0;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.footer-locations {
  flex: 0 0 620px;
  max-width: 620px;
  padding-left: 56px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-location-grid {
  display: flex;
  gap: 52px;
}

.footer-location {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 14px;
  align-items: start;
  flex: 1;
}

.footer-location-divider {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-location-icon {
  margin-top: 2px;
}

.footer-location-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-location p {
  margin: 0 0 6px;
  color: var(--colour-white);
  font-size: 18px;
  line-height: 1.45;
}

.footer-location p:first-child {
  margin-bottom: 12px;
}

.footer-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 72px;
}

.footer-socials img {
  width: auto;
  height: 118px;
  object-fit: contain;
}

.footer-follow {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--colour-white);
  font-size: 34px;
}

.footer-follow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  color: var(--colour-white);
}

.footer-follow a svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-menu,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-menu {
  gap: 34px;
}

.footer-links {
  gap: 34px;
}

.footer-menu a,
.footer-links a {
  color: var(--colour-white);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.copyright-bar {
  min-height: 58px;
  background: var(--colour-orange);
  text-align: center;
}

.copyright-bar p {
  margin: 0;
  color: var(--colour-white);
  font-size: 16px;
  line-height: 58px;
}

/* ==================================================
   17. RESPONSIVE - 1024px
================================================== */

@media (max-width: 1024px) {
  .section-inner,
  .hero-inner,
  .osteo-help-inner,
  .topbar-inner,
  .header-inner,
  .footer-inner,
  .copyright-bar .section-inner,
  .testimonials-inner {
    padding-left: var(--tablet-side-padding);
    padding-right: var(--tablet-side-padding);
  }

.about-osteo,
.osteo-help,
.testimonials,
.services-pricing,
.about-me,
.booking-page {
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero {
  padding-top: 0;
  padding-bottom: 64px;
}

  .hero-inner,
  .osteo-help-inner,
  .about-me-inner {
    gap: 48px;
  }

  .hero-text,
  .hero-art,
  .osteo-help-art,
  .osteo-help-content {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-circle,
  .osteo-help-circle {
    width: 420px;
    height: 420px;
    max-width: 100%;
  }

  .section-title-center,
  .section-title-purple,
  .section-title-light {
    font-size: 58px;
  }

  .hero-text h1,
  .about-osteo-content h3,
  .osteo-help-content h2 {
    font-size: 44px;
  }

  .hero-text p,
  .about-osteo-content p,
  .osteo-help-content p,
  .osteo-help-strong,
  .testimonial-text,
  .about-me-text p {
    font-size: 20px;
  }

  .service-card {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

/* ==================================================
   18. RESPONSIVE - 768px
================================================== */

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  body,
  body.home {
    padding-top: 0;
  }

  body.page {
    padding-top: 75px;
  }

  .section-inner,
  .hero-inner,
  .osteo-help-inner,
  .topbar-inner,
  .header-inner,
  .footer-inner,
  .copyright-bar .section-inner,
  .testimonials-inner {
    padding-left: var(--mobile-side-padding);
    padding-right: var(--mobile-side-padding);
  }

  .topbar-inner {
    justify-content: space-between;
    gap: 14px;
  }

  .topbar-item {
    gap: 8px;
    font-size: 12px;
  }

  .topbar-icon {
    width: 18px;
    height: 18px;
  }

  .book-now-icon {
    height: 28px;
  }

.header-inner {
  height: 60px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.custom-logo {
  height: 48px;
}

  .site-header.header-scrolled .header-inner {
    height: 68px;
  }

  .site-header.header-scrolled .custom-logo {
    height: 48px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 10001;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    left: 24px;
    z-index: 10000;
    padding: 14px 18px;
    background: var(--colour-white);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav .menu li + li {
    border-top: 1px solid rgba(95, 74, 166, 0.12);
  }

  .main-nav .menu a {
    display: block;
    padding: 14px 0;
  }

  .hero-inner,
  .osteo-help-inner,
  .about-me-inner,
  .services-grid,
  .footer-top,
  .footer-location-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero-inner {
    padding-top: 0;
    gap: 32px;
  }

  .hero-text,
  .hero-art,
  .osteo-help-art,
  .osteo-help-content,
  .about-me-text,
  .about-me-art,
  .service-card {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .hero-circle,
  .osteo-help-circle,
  .about-me-photo {
    width: min(78vw, 320px);
    height: min(78vw, 320px);
  }

  .hero-art {
    margin-bottom: -50px;
  }

  .section-title-center,
  .section-title-purple,
  .section-title-light {
    margin-bottom: 30px;
    font-size: 42px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .about-osteo-content h3,
  .osteo-help-content h2 {
    font-size: 34px;
  }

  .hero-text p,
  .about-osteo-content p,
  .osteo-help-content p,
  .osteo-help-strong,
  .testimonial-text,
  .about-me-text p,
  .services-page p,
  .services-page li,
  .services-page h3,
  .booking-page p,
  .booking-page li,
  .booking-page h3 {
    font-size: 18px;
    line-height: 1.45;
  }

  .about-me-text {
    padding-top: 0;
    text-align: center;
  }

  .about-me-text h2 {
    position: static;
    width: 100%;
    transform: none;
  }

  .about-me-text p {
    max-width: 100%;
    text-align: center;
  }

.about-me-photo {
  position: relative;
  top: auto;
  right: auto;
  margin: 0 auto;
}

.about-me-art {
  min-height: auto;
  margin-bottom: -20px;
}

.about-me-art {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  margin-bottom: -30px;
}

.about-me-text {
  padding-top: 20px;
}

  .about-me-pencil {
    display: none;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    min-height: auto;
  }

  .services-osteo-row,
  .services-help-row {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .services-osteo-image {
    float: none;
    margin: 0 auto 24px;
  }

  /* Footer tablet */
  .footer-inner {
    max-width: 100%;
    padding: 70px 50px 0;
  }

  .site-footer .section-title-light {
    font-size: 42px;
  }

  .footer-top {
    display: block;
  }

  .footer-contact {
    display: grid;
    grid-template-columns: 190px 1px 1fr;
    column-gap: 38px;
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
  }

  .footer-logo {
    position: static;
    grid-column: 1;
    grid-row: 1 / 4;
    width: 170px;
  }

  .footer-contact::before {
    position: static;
    grid-column: 2;
    grid-row: 1 / 4;
    width: 1px;
    height: 170px;
  }

  .footer-contact h3,
  .footer-contact-item {
    grid-column: 3;
  }

  .footer-locations {
    max-width: 680px;
    margin: 48px auto 0;
    padding: 44px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
  }

  .footer-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer-middle {
    display: block;
    max-width: 680px;
    margin-top: 48px;
  }

  .footer-socials {
    justify-content: space-between;
    gap: 44px;
  }

  .footer-socials img {
    height: 105px;
  }

  .footer-follow {
    justify-content: center;
    margin-top: 36px;
  }

  .footer-bottom {
    margin: 58px -50px 0;
    padding: 28px 50px 24px;
    background: rgba(0, 0, 0, 0.12);
  }
}

/* ==================================================
   19. RESPONSIVE - 480px
================================================== */

@media (max-width: 480px) {
  .section-inner,
  .hero-inner,
  .osteo-help-inner,
  .topbar-inner,
  .header-inner,
  .footer-inner,
  .copyright-bar .section-inner,
  .testimonials-inner {
    padding-left: var(--small-mobile-side-padding);
    padding-right: var(--small-mobile-side-padding);
  }

  .topbar-center {
    display: none;
  }

  .topbar-item {
    font-size: 14px;
    font-weight: 600;
  }

  .custom-logo {
    height: 48px;
  }

  .main-nav {
    right: 16px;
    left: 16px;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-inner {
    gap: 8px;
    padding-top: 65px;
  }

  .hero-art {
    margin-bottom: -90px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .about-osteo,
  .osteo-help,
  .testimonials,
  .services-pricing,
  .about-me,
  .booking-page {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-title-center,
  .section-title-purple,
  .section-title-light {
    font-size: 32px;
  }

  .about-osteo-content h3,
  .osteo-help-content h2 {
    font-size: 28px;
  }

  .hero-text p,
  .about-osteo-content p,
  .osteo-help-content p,
  .osteo-help-strong,
  .testimonial-text,
  .about-me-text p,
  .services-page p,
  .services-page li,
  .services-page h3,
  .booking-page p,
  .booking-page li,
  .booking-page h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-circle,
  .osteo-help-circle,
  .about-me-photo {
    width: min(82vw, 280px);
    height: min(82vw, 280px);
  }
  
.about-me-art {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  margin-bottom: 35px;
}

  .service-card h3,
  .service-price {
    font-size: 28px;
  }
  
/* Services page first image fix */
.services-osteo-image {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 24px;
}

.services-osteo-image img {
  width: 100%;
  height: auto;
}  

  .book-now-icon,
  .hero-button-icon,
  .about-osteo-learnmore-icon img,
  .osteo-help-readmore img,
  .services-book-btn img,
  .about-me-readmore img {
    height: 38px;
  }

  /* Footer phone */
  .footer-inner {
    padding: 56px 24px 0;
  }

  .site-footer .section-title-light {
    margin-bottom: 38px;
    font-size: 38px;
  }

  .footer-contact {
    grid-template-columns: 95px 1px 1fr;
    column-gap: 18px;
  }

  .footer-logo {
    width: 92px;
  }

  .footer-contact::before {
    height: 120px;
  }

  .footer-contact h3 {
    font-size: 30px;
  }

  .footer-contact-item p {
    font-size: 14px;
  }

  .footer-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-locations {
    margin-top: 38px;
    padding-top: 36px;
  }

  .footer-locations h3 {
    font-size: 32px;
    text-align: center;
  }

  .footer-location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-location,
  .footer-location-divider {
    grid-template-columns: 28px 1fr;
    padding-left: 0;
    border-left: 0;
  }

  .footer-location p {
    font-size: 16px;
  }

  .footer-middle {
    margin-top: 42px;
    padding: 34px 0;
  }

  .footer-socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .footer-socials img {
    width: 100%;
    height: 62px;
  }

  .footer-follow {
    margin-top: 28px;
    font-size: 22px;
  }

  .footer-follow a {
    width: 52px;
    height: 52px;
  }

  .footer-bottom {
    margin: 42px -24px 0;
    padding: 24px 18px 22px;
  }

  .footer-menu,
  .footer-links {
    gap: 12px 18px;
  }

  .footer-menu a,
  .footer-links a {
    font-size: 13px;
  }

  .copyright-bar p {
    padding: 10px 18px;
    line-height: 1.35;
  }
}

@media (min-width: 1025px) {

  /* Footer title */
  .site-footer .section-title-light::after {
    width: 78px !important;
    height: 7px !important;
    margin-top: 26px !important;
  }

  /* Top layout */
  .footer-top {
    align-items: center !important;
    margin-bottom: 56px !important;
  }

  /* Contact */
  .footer-contact {
    flex: 0 0 520px !important;
    max-width: 520px !important;
    padding-left: 230px !important;
  }

  .footer-logo {
    width: 205px !important;
    top: -15px !important;
  }

  .footer-contact::before {
    left: 185px !important;
    height: 165px !important;
  }

  .footer-contact h3 {
    font-size: 50px !important;
    margin-bottom: 22px !important;
  }

  .footer-contact p {
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  /* Locations */
  .footer-locations {
    flex: 0 0 700px !important;
    max-width: 700px !important;
    padding-left: 60px !important;
  }

  .footer-locations h3 {
    font-size: 50px !important;
    margin-bottom: 26px !important;
  }

  .footer-location-grid {
    gap: 72px !important;
  }

  .footer-location {
    grid-template-columns: 30px 250px !important;
  }

  .footer-location p {
    line-height: 1.45 !important;
  }

  /* Middle row */
  .footer-middle {
    align-items: center !important;
    padding: 38px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.38) !important;
    border-bottom: 1px solid rgba(255,255,255,0.38) !important;
  }

  .footer-follow {
    margin-top: -6px !important;
  }

  /* Divider brightness */
  .footer-contact::before,
  .footer-location-divider,
  .footer-middle,
  .footer-bottom {
    border-color: rgba(255,255,255,0.38) !important;
  }

  /* Footer menu */
  .footer-menu {
    gap: 0 !important;
  }

  .footer-menu a {
    position: relative;
    padding: 0 18px;
    font-size: 17px !important;
  }

  .footer-menu a:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -4px;
    color: var(--colour-orange);
  }
  
   .footer-menu a:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -4px;
    color: var(--colour-orange);
  }

  /* Main vertical dividers */
  .footer-contact::before,
  .footer-locations,
  .footer-location-divider {
    border-color: rgba(241, 134, 32, 0.45) !important;
  }

  .footer-contact::before {
    left: 210px !important;
    width: 1px;
    height: 170px !important;
    background: rgba(241, 134, 32, 0.45) !important;
  }

  .footer-locations {
    padding-left: 50px !important;
    border-left: 1px solid rgba(241, 134, 32, 0.45) !important;
  }

  .footer-location-divider {
    padding-left: 50px !important;
    border-left: 1px solid rgba(241, 134, 32, 0.45) !important;
  }

}

/* ==================================================
   HERO MOBILE/TABLET TOP SPACE FIX
================================================== */

@media (max-width: 768px) {
  .hero {
    padding-top: 75px !important;
  }

  .hero-inner {
    padding-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 75px !important;
  }

  .hero-inner {
    padding-top: 0 !important;
  }
}

