:root {
  --green: #147a5c;
  --green-dark: #0d573f;
  --mint: #e9f6f1;
  --text: #172331;
  --muted: #667085;
  --border: #e7eee9;
  --white: #fff;
  --shadow: 0 20px 50px rgba(18, 77, 58, .12);
  --radius: 26px
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7
}

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

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

.container {
  width: min(1180px, 92%);
  margin: auto
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .04)
}

.navbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--green-dark);
  height: 100%;
}

.logo img {
  height: 100%;
}

.logo small {
  display: block;
  color: #50645c;
  font-size: 12px;
  line-height: 1.1;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--mint);
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 800
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 600
}

.nav-links a {
  position: relative
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--green)
}

.nav-links a.active:after,
.nav-links a:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background: var(--green);
  border-radius: 5px
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px
}

.call {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
  color: #53645f
}

.call i {
  color: var(--green);
  font-size: 16px
}

.call b {
  font-size: 13px;
  color: var(--text)
}

.btn {
  border: 0;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: .25s
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 30px rgba(20, 122, 92, .24)
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px)
}

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

.btn-light {
  background: #fff;
  color: var(--green-dark)
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 28px
}

.hero {
  padding: 75px 0 80px;
  background: radial-gradient(circle at 58% 35%, #dff2eb 0 18%, transparent 34%), linear-gradient(180deg, #fbfdfc, #f5fbf8)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr 360px;
  align-items: center;
  gap: 25px
}

.badge {
  display: inline-block;
  background: #e7f5ef;
  color: var(--green);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  margin: 22px 0
}

.hero h1 span {
  color: var(--green)
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px
}

.hero-stats {
  display: flex;
  gap: 15px;
  margin-top: 34px
}

.hero-stats div,
.appointment-card,
.feature-card,
.numbers,
.service-row article,
.testimonial-grid article {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 20px
}

.hero-stats div {
  width: 130px;
  padding: 18px;
  text-align: center
}

.hero-stats b {
  display: block;
  color: var(--green);
  font-size: 20px
}

.hero-stats small {
  font-size: 12px;
  color: #65756f
}

.hero-doctor img {
  filter: drop-shadow(0 25px 35px rgba(18, 77, 58, .15));
  margin: auto;
  max-height: 560px
}

.appointment-card {
  padding: 28px
}

.appointment-card h3 {
  font-size: 24px
}

.appointment-card p {
  font-size: 14px;
  margin-bottom: 20px
}

.appointment-card label {
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  display: block
}

.appointment-card input,
.appointment-card select {
  width: 100%;
  height: 48px;
  border: 1px solid #e3e9e6;
  border-radius: 12px;
  margin-top: 7px;
  padding: 0 14px;
  color: #677;
  background: #fff
}

.appointment-card button {
  width: 100%;
  margin-top: 20px
}

.section {
  padding: 95px 0
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1fr .55fr;
  gap: 45px;
  align-items: center
}

.image-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--mint)
}

h2 {
  font-size: 42px;
  line-height: 1.18
}

.about-content p,
.speciality p {
  color: var(--muted);
  margin: 18px 0
}

.check-list {
  list-style: none;
  margin: 20px 0
}

.check-list li {
  margin: 10px 0;
  color: #3e514b
}

.check-list li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 50%;
  background: #dff2eb;
  color: var(--green);
  font-weight: 800
}

.feature-card {
  padding: 28px
}

.feature-card img {
  width: 90px;
  margin-bottom: 18px
}

.feature-card h4 {
  font-size: 18px
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px;
  margin-top: 20px
}

.numbers div {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  border-right: 1px solid var(--border)
}

.numbers div:last-child {
  border-right: 0
}

.numbers span {
  font-size: 30px;
  color: var(--green)
}

.numbers b {
  font-size: 32px
}

.numbers small {
  display: block;
  color: var(--muted)
}

.section-title {
  text-align: center;
  margin-bottom: 45px
}

.section-title h2 {
  margin-top: 14px
}

.service-slider {
  display: flex;
  align-items: center;
  gap: 18px
}

.service-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  flex: 1
}

.service-row article {
  text-align: center;
  padding: 25px 14px;
  transition: .25s
}

.service-row article:hover {
  transform: translateY(-8px)
}

.service-row img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 0 auto 15px
}

.service-row h4 {
  font-size: 15px;
  line-height: 1.35
}

.slide-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center
}

.center {
  text-align: center;
  margin-top: 35px
}

.speciality {
  background: linear-gradient(180deg, #fff, #f7fbf9)
}

.speciality-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 55px;
  align-items: center
}

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.treatment-grid article {
  min-height: 210px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .05)), var(--img) center/cover;
  box-shadow: var(--shadow)
}

.treatment-grid h4 {
  font-size: 22px
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.testimonial-grid article {
  padding: 34px
}

.testimonial-grid b {
  font-size: 70px;
  color: #a6d2c2;
  line-height: .7
}

.testimonial-grid p {
  color: #51615b;
  margin: 10px 0 22px
}

.testimonial-grid h4 {
  color: var(--green-dark)
}

.cta {
  margin-bottom: 80px;
  background: linear-gradient(135deg, var(--green), #3b9a78);
  color: white;
  border-radius: 22px;
  padding: 35px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow)
}

.cta h2 {
  font-size: 28px
}

.cta p {
  opacity: .9
}

.footer {
  background: linear-gradient(180deg, #eff9f5, #fff);
  padding: 70px 0 25px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 45px
}

.footer p,
.footer a {
  color: #566b64;
  font-size: 14px
}

.footer p i {
  color: var(--green);
  margin-right: 8px;
  width: 18px;
  text-align: center
}

.footer a {
  display: block;
  margin: 10px 0
}

.footer h4 {
  color: var(--green-dark);
  margin-bottom: 15px
}

.footer-logo {
  margin-bottom: 18px;
  height: 60px;
}

.footer-logo img {
  height: 100%;
}

.copyright {
  border-top: 1px solid #dce8e3;
  margin-top: 45px;
  padding-top: 20px;
  color: #6a7773;
  font-size: 13px
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: none
}

.to-top.show {
  display: block
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:1050px) {

  .hero-grid,
  .about-grid,
  .speciality-grid {
    grid-template-columns: 1fr
  }

  .appointment-card {
    max-width: 460px
  }

  .service-row {
    grid-template-columns: repeat(3, 1fr)
  }

  .nav-actions {
    display: none
  }

  .hero h1 {
    font-size: 48px
  }
}

@media(max-width:780px) {
  .menu-btn {
    display: block
  }

  .navbar {
    height: 75px
  }

  .nav-links {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08)
  }

  .nav-links.open {
    display: flex
  }

  .hero {
    padding-top: 40px
  }

  .hero h1 {
    font-size: 38px
  }

  .hero-stats,
  .cta {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-stats div {
    width: 100%
  }

  .numbers,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .numbers div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 15px
  }

  .service-row {
    grid-template-columns: 1fr 1fr
  }

  .slide-btn {
    display: none
  }

  .treatment-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 65px 0
  }

  h2 {
    font-size: 30px
  }
}


/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.about-page {
  --green: #0f7658;
  --green-dark: #063d31;
  --green-soft: #eaf7f2;
  --text: #122033;
  --muted: #687282;
  --border: #e7eee9;
  --white: #fff;
  --footer: #062b46;
  --shadow: 0 20px 60px rgba(14, 85, 64, .10);
  overflow-x: hidden;
}

.about-page main .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(15, 118, 88, .18)
}


.about-page main .outline-btn {
  background: white;
  color: var(--green);
  border: 1px solid var(--green);
  box-shadow: none
}

.about-page .section {
  padding: 86px 0
}

.about-page .badge {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px
}

.about-page h1 {
  font-size: 58px;
  line-height: 1.12;
  margin: 22px 0;
  color: var(--text)
}

.about-page h1 span,
.about-page h2 span {
  color: var(--green)
}

.about-page h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 18px
}

.about-page .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px
}

.about-page .muted {
  color: var(--muted)
}

.about-page .hero {
  padding: 76px 0 68px;
  background: radial-gradient(circle at 75% 20%, #eaf7f2 0, transparent 34%), linear-gradient(180deg, #fff, #fbfffd)
}

.about-page .hero-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 56px;
  align-items: center
}

.about-page .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px
}

.about-page .stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow)
}

.about-page .stat-card i {
  color: var(--green);
  font-size: 22px
}

.about-page .stat-card b {
  display: block;
  font-size: 19px;
  margin-top: 8px
}

.about-page .stat-card small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600
}

.about-page .hero-img {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 480px;
  background: #eef6f2
}

.about-page .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-page .trust {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--green);
  color: white;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .22)
}

.about-page .trust i {
  font-size: 30px
}

.about-page .trust b {
  display: block
}

.about-page .trust span {
  font-size: 13px;
  opacity: .9
}

.about-page .story-card {
  background: linear-gradient(135deg, #fff, #f8fffc);
  border-radius: 34px;
  padding: 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center
}

.about-page .story-images {
  position: relative
}

.about-page .story-images .main {
  border-radius: 26px;
  height: 470px;
  width: 88%;
  object-fit: cover
}

.about-page .story-images .small {
  position: absolute;
  right: 0;
  bottom: -24px;
  width: 240px;
  height: 165px;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid white;
  box-shadow: var(--shadow)
}

.about-page .checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0
}

.about-page .check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #394658;
  font-weight: 500
}

.about-page .check i {
  color: var(--green);
  margin-top: 4px
}

.about-page .feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 24px;
  gap: 18px
}

.about-page .mini {
  text-align: center
}

.about-page .mini i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  color: var(--green)
}

.about-page .mini b {
  font-size: 14px
}

.about-page .why {
  background: linear-gradient(180deg, #fff, #fbfffd)
}

.about-page .why-grid {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 50px;
  align-items: center
}

.about-page .why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.about-page .why-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(17, 72, 55, .06)
}

.about-page .why-item i {
  color: var(--green);
  margin-top: 4px
}

.about-page .doctor-card {
  position: relative;
  text-align: center
}

.about-page .doctor-card img {
  max-height: 520px;
  margin: auto
}

.about-page .exp-box {
  position: absolute;
  left: 10%;
  bottom: 20px;
  background: white;
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: var(--shadow)
}

.about-page .exp-box b {
  font-size: 30px;
  color: var(--green)
}

.about-page .cta {
  margin: 30px auto 80px
}

.about-page .cta-box {
  background: linear-gradient(135deg, #086b50, #0f7658);
  border-radius: 28px;
  display: grid;
  grid-template-columns: .45fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 28px;
  color: white;
  overflow: hidden
}

.about-page .cta-box img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px
}

.about-page .cta-box p {
  opacity: .88
}

.about-page .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.about-page .cta .outline-btn {
  border-color: white;
  color: white;
  background: rgba(255, 255, 255, .12)
}

.about-page .to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 0;
  background: #78a9e8;
  color: white;
  font-size: 18px;
  cursor: pointer
}

@media(max-width:980px) {

  .about-page .hero-grid,
  .about-page .story-card,
  .about-page .why-grid,
  .about-page .cta-box {
    grid-template-columns: 1fr
  }

  .about-page h1 {
    font-size: 42px
  }

  .about-page .hero-stats,
  .about-page .feature-row,
  .about-page .why-list {
    grid-template-columns: 1fr 1fr
  }

  .about-page .hero-img {
    min-height: 360px
  }
}

@media(max-width:560px) {


  .about-page .section {
    padding: 58px 0
  }

  .about-page .hero-stats,
  .about-page .feature-row,
  .about-page .why-list {
    grid-template-columns: 1fr
  }

  .about-page .story-images .main {
    width: 100%;
    height: 340px
  }

  .about-page .story-images .small {
    position: relative;
    width: 100%;
    height: 170px;
    margin-top: 14px;
    bottom: auto;
    border: 0
  }

  .about-page .cta-box {
    padding: 20px
  }

  .about-page h1 {
    font-size: 34px
  }

  .about-page h2 {
    font-size: 29px
  }

  .about-page .trust {
    position: static;
    margin-top: 14px
  }

  .about-page .hero-img {
    overflow: visible
  }
}

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

.services-page .badge {
  display: inline-block;
  background: var(--mint);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

.services-page .hero-section {
  padding: 90px 0 60px;
  background: radial-gradient(circle at 80% 20%, var(--mint) 0%, transparent 40%), linear-gradient(180deg, #fff, #fbfffd);
  text-align: center;
}

.services-page .hero-section h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0 22px;
  font-weight: 800;
  color: var(--text);
}

.services-page .hero-section h1 span {
  color: var(--green);
}

.services-page .hero-section .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-page .services-grid-section {
  padding: 80px 0;
  background: #fafdfc;
}

.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

.services-page .service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.services-page .service-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 30px 60px rgba(20, 122, 92, 0.12);
}

.services-page .service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 26px;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.services-page .service-card:hover .service-card-icon {
  background: var(--green);
  color: #fff;
}

.services-page .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.services-page .service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  flex-grow: 1;
}

.services-page .service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  transition: gap 0.2s ease;
}

.services-page .service-card:hover .service-card-link {
  gap: 12px;
}

.services-page .cta {
  margin: 40px auto 80px;
}

.services-page .cta-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 28px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.services-page .cta-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

.services-page .cta-box h2 {
  font-size: 32px;
  line-height: 1.2;
  color: white;
  margin-bottom: 12px;
}

.services-page .cta-box p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.services-page .cta-actions {
  display: flex;
  gap: 15px;
}

.services-page .cta-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.services-page .cta-actions .btn-primary {
  background: white;
  color: var(--green);
  background-color: #fff;
}

.services-page .cta-actions .btn-primary:hover {
  background-color: var(--mint);
}

.services-page .to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

@media (max-width: 980px) {
  .services-page .hero-section h1 {
    font-size: 38px;
  }

  .services-page .cta-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .services-page .cta-box img {
    height: 160px;
  }
}

@media (max-width: 560px) {
  .services-page .hero-section h1 {
    font-size: 30px;
  }

  .services-page .hero-section .lead {
    font-size: 16px;
  }

  .services-page .services-grid {
    grid-template-columns: 1fr;
  }

  .services-page .service-card {
    padding: 30px;
  }

  .services-page .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .services-page .cta-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   TREATMENTS PAGE STYLES
   ========================================================================== */

.treatments-page .badge {
  display: inline-block;
  background: var(--mint);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

.treatments-page .hero-section {
  padding: 90px 0 60px;
  background: radial-gradient(circle at 80% 20%, var(--mint) 0%, transparent 40%), linear-gradient(180deg, #fff, #fbfffd);
  text-align: center;
}

.treatments-page .hero-section h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0 22px;
  font-weight: 800;
  color: var(--text);
}

.treatments-page .hero-section h1 span {
  color: var(--green);
}

.treatments-page .hero-section .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.treatments-page .treatment-categories-section {
  padding: 80px 0;
  background: #fafdfc;
}

.treatments-page .categories-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.treatments-page .category-card {
  background: white;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.treatments-page .category-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
}

.treatments-page .category-image {
  height: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.treatments-page .category-info {
  padding: 50px;
}

.treatments-page .category-info i {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 20px;
  display: inline-block;
}

.treatments-page .category-info h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 15px;
}

.treatments-page .category-info p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.treatments-page .treatment-subservices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.treatments-page .subservice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.treatments-page .subservice-item i {
  color: var(--green);
  font-size: 16px;
  margin-bottom: 0;
}

.treatments-page .category-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  transition: gap 0.2s ease;
}

.treatments-page .category-card:hover .category-btn {
  gap: 12px;
}

.treatments-page .cta {
  margin: 40px auto 80px;
}

.treatments-page .cta-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 28px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.treatments-page .cta-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

.treatments-page .cta-box h2 {
  font-size: 32px;
  line-height: 1.2;
  color: white;
  margin-bottom: 12px;
}

.treatments-page .cta-box p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.treatments-page .cta-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #fff;
  color: var(--green);
}

.treatments-page .cta-actions .btn:hover {
  background-color: var(--mint);
}

.treatments-page .to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

@media (max-width: 980px) {
  .treatments-page .hero-section h1 {
    font-size: 38px;
  }

  .treatments-page .category-card {
    grid-template-columns: 1fr;
  }

  .treatments-page .category-image {
    height: 260px;
    min-height: auto;
  }

  .treatments-page .category-info {
    padding: 35px;
  }

  .treatments-page .cta-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .treatments-page .cta-box img {
    height: 160px;
  }
}

@media (max-width: 560px) {
  .treatments-page .hero-section h1 {
    font-size: 30px;
  }

  .treatments-page .hero-section .lead {
    font-size: 16px;
  }

  .treatments-page .treatment-subservices {
    grid-template-columns: 1fr;
  }

  .treatments-page .cta-actions {
    width: 100%;
  }

  .treatments-page .cta-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   PATIENT INFO PAGE STYLES
   ========================================================================== */

.patient-info-page .badge {
  display: inline-block;
  background: var(--mint);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

.patient-info-page .hero-section {
  padding: 90px 0 60px;
  background: radial-gradient(circle at 80% 20%, var(--mint) 0%, transparent 40%), linear-gradient(180deg, #fff, #fbfffd);
  text-align: center;
}

.patient-info-page .hero-section h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0 22px;
  font-weight: 800;
  color: var(--text);
}

.patient-info-page .hero-section h1 span {
  color: var(--green);
}

.patient-info-page .hero-section .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.patient-info-page .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.patient-info-page .section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-top: 10px;
}

.patient-info-page .patient-reviews-section {
  padding: 80px 0;
  background: #fafdfc;
}

.patient-info-page .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.patient-info-page .review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.patient-info-page .review-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
}

.patient-info-page .quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: var(--mint);
  z-index: 1;
}

.patient-info-page .review-text {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.patient-info-page .patient-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.patient-info-page .patient-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
}

.patient-info-page .patient-details h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.patient-info-page .patient-details span {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}

.patient-info-page .faq-section {
  padding: 80px 0;
  background: #fff;
}

.patient-info-page .faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.patient-info-page .faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.patient-info-page .faq-item:hover,
.patient-info-page .faq-item.active {
  border-color: var(--green);
  box-shadow: 0 10px 25px rgba(20, 122, 92, 0.05);
}

.patient-info-page .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.patient-info-page .faq-question span {
  flex: 1;
}

.patient-info-page .faq-icon {
  font-size: 16px;
  color: var(--green);
  transition: transform 0.3s ease;
}

.patient-info-page .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.patient-info-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.patient-info-page .faq-answer-inner {
  padding: 0 28px 25px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px dashed var(--border);
  padding-top: 20px;
}

.patient-info-page .education-section {
  padding: 80px 0;
  background: #fafdfc;
}

.patient-info-page .edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.patient-info-page .edu-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.patient-info-page .edu-card:hover {
  transform: translateY(-5px);
}

.patient-info-page .edu-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.patient-info-page .edu-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.patient-info-page .edu-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.patient-info-page .edu-list {
  list-style: none;
}

.patient-info-page .edu-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.patient-info-page .edu-list li i {
  color: var(--green);
  font-size: 14px;
  margin-top: 4px;
}

.patient-info-page .edu-list li strong {
  color: var(--text);
  display: block;
}

.patient-info-page .cta {
  margin: 40px auto 80px;
}

.patient-info-page .cta-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 28px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.patient-info-page .cta-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

.patient-info-page .cta-box h2 {
  font-size: 32px;
  line-height: 1.2;
  color: white;
  margin-bottom: 12px;
}

.patient-info-page .cta-box p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.patient-info-page .cta-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #fff;
  color: var(--green);
}

.patient-info-page .cta-actions .btn:hover {
  background-color: var(--mint);
}

.patient-info-page .to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

@media (max-width: 980px) {
  .patient-info-page .hero-section h1 {
    font-size: 38px;
  }

  .patient-info-page .cta-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .patient-info-page .cta-box img {
    height: 160px;
  }
}

@media (max-width: 560px) {
  .patient-info-page .hero-section h1 {
    font-size: 30px;
  }

  .patient-info-page .hero-section .lead {
    font-size: 16px;
  }

  .patient-info-page .cta-actions {
    width: 100%;
  }

  .patient-info-page .cta-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-page .badge {
  display: inline-block;
  background: var(--mint);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

.contact-page .hero-section {
  padding: 90px 0 60px;
  background: radial-gradient(circle at 80% 20%, var(--mint) 0%, transparent 40%), linear-gradient(180deg, #fff, #fbfffd);
  text-align: center;
}

.contact-page .hero-section h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0 22px;
  font-weight: 800;
  color: var(--text);
}

.contact-page .hero-section h1 span {
  color: var(--green);
}

.contact-page .hero-section .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-page .contact-layout-section {
  padding: 80px 0;
  background: #fafdfc;
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.contact-page .contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-page .info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 35px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-page .info-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.contact-page .info-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-page .info-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-page .info-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-page .info-content a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.contact-page .info-content a:hover {
  color: var(--green);
}

.contact-page .contact-form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 45px;
  box-shadow: var(--shadow);
  position: relative;
}

.contact-page .contact-form-panel h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-page .contact-form-panel p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 30px;
}

.contact-page .form-group {
  margin-bottom: 20px;
}

.contact-page .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
  width: 100%;
  background: #fafdfc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  transition: all 0.3s ease;
  outline: none;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(20, 122, 92, 0.1);
}

.contact-page .form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-page .form-submit-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(20, 122, 92, 0.15);
  transition: all 0.3s ease;
}

.contact-page .form-submit-btn:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 24px rgba(20, 122, 92, 0.25);
}

.contact-page .form-submit-btn i {
  transition: transform 0.2s ease;
}

.contact-page .form-submit-btn:hover i {
  transform: translateX(4px);
}

.contact-page .success-alert {
  display: none;
  background: var(--mint);
  border: 1px solid rgba(20, 122, 92, 0.2);
  border-radius: 18px;
  padding: 25px;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 25px;
  animation: fadeIn 0.4s ease forwards;
}

.contact-page .success-alert i {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 12px;
}

.contact-page .success-alert h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-page .success-alert p {
  font-size: 14.5px;
  margin-bottom: 0;
  color: var(--text);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.contact-page .map-section {
  padding: 0 0 80px;
  background: #fafdfc;
}

.contact-page .map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 480px;
}

.contact-page .map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 18px;
}

.contact-page .to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

@media (max-width: 980px) {
  .contact-page .hero-section h1 {
    font-size: 38px;
  }

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

  .contact-page .contact-form-panel {
    padding: 35px;
  }

  .contact-page .map-card {
    height: 380px;
  }
}

@media (max-width: 560px) {
  .contact-page .hero-section h1 {
    font-size: 30px;
  }

  .contact-page .hero-section .lead {
    font-size: 16px;
  }
}

/* ==========================================================================
   TREATMENT SUBPAGES SHARED STYLES
   ========================================================================== */

.treatment-subpage .badge {
  display: inline-block;
  background: var(--mint);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

.treatment-subpage .subpage-hero {
  padding: 90px 0 60px;
  background: radial-gradient(circle at 80% 20%, var(--mint) 0%, transparent 40%), linear-gradient(180deg, #fff, #fbfffd);
}

.treatment-subpage .subpage-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 15px 0 20px;
  font-weight: 800;
  color: var(--text);
}

.treatment-subpage .subpage-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 800px;
  line-height: 1.7;
}

.treatment-subpage .treatments-section {
  padding: 80px 0;
  background: #fafdfc;
}

.treatment-subpage .treatments-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 50px;
}

.treatment-subpage .treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.treatment-subpage .treatment-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.treatment-subpage .treatment-detail-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: 0 20px 40px rgba(20, 122, 92, 0.08);
}

.treatment-subpage .treatment-detail-card i.main-icon {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 20px;
}

.treatment-subpage .treatment-detail-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.treatment-subpage .treatment-detail-card .tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 15px;
}

.treatment-subpage .treatment-detail-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

.treatment-subpage .cta {
  margin: 40px auto 80px;
}

.treatment-subpage .cta-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 28px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.treatment-subpage .cta-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

.treatment-subpage .cta-box h2 {
  font-size: 32px;
  line-height: 1.2;
  color: white;
  margin-bottom: 12px;
}

.treatment-subpage .cta-box p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.treatment-subpage .cta-actions {
  display: flex;
  gap: 15px;
}

.treatment-subpage .cta-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #fff;
  color: var(--green);
}

.treatment-subpage .cta-actions .btn:hover {
  background-color: var(--mint);
}

.treatment-subpage .to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

@media (max-width: 980px) {
  .treatment-subpage .cta-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .treatment-subpage .cta-box img {
    height: 160px;
  }
}

@media (max-width: 560px) {
  .treatment-subpage .subpage-hero h1 {
    font-size: 30px;
  }

  .treatment-subpage .treatments-grid {
    grid-template-columns: 1fr;
  }

  .treatment-subpage .cta-actions {
    width: 100%;
  }

  .treatment-subpage .cta-actions .btn {
    width: 100%;
  }
}