/* Our Services — image cards */

.our-svc-page {
  margin: 0;
  font-family:"Poppins", sans-serif;
  color: #1c2430;
  background: #eef3f7;
}
.our-svc__icon.our-svc__icon--svg img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}
.our-svc {
  width: 100%;
  padding: 88px 0 100px;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(44, 170, 223, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(15, 70, 100, 0.08), transparent 50%),
    linear-gradient(180deg, #f8fbfd 0%, #eef3f7 100%);
}

.our-svc__wrap {
  width: 92%;
  max-width: 1367px;
  margin: 0 auto;
}
.our-svc__intro {
    max-width: 780px;
    margin: 0 auto 48px auto;
    text-align: center;
}

.our-svc__title {
  margin: 0 0 18px;
  color: #0f1a24;
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.our-svc__copy {
  margin: 0 0 14px;
  color: #5a6b7a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.our-svc__lead {
  margin: 0;
  color: #0f1a24;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.our-svc__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}

.our-svc__card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(25% - 16.5px);
  width: calc(25% - 16.5px);
  max-width: calc(25% - 16.5px);
  min-width: 0;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(28, 54, 72, 0.08);
  border-radius: 18px;
  box-shadow:
    0 2px 6px rgba(15, 35, 55, 0.04),
    0 14px 32px rgba(15, 35, 55, 0.07);
  overflow: visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.our-svc__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, #2caadf, #7ec8e8);
  border-radius: 18px 18px 0 0;
}

.our-svc__card--b .our-svc__media::before {
  background: linear-gradient(90deg, #1a7a9c, #2caadf);
}

.our-svc__card--c .our-svc__media::before {
  background: linear-gradient(90deg, #2caadf, #3d9a7a);
}

.our-svc__card--d .our-svc__media::before {
  background: linear-gradient(90deg, #0f4c6e, #2caadf);
}

.our-svc__card:hover {
  transform: translateY(-8px);
  border-color: rgba(44, 170, 223, 0.35);
  box-shadow:
    0 10px 20px rgba(15, 35, 55, 0.06),
    0 28px 48px rgba(15, 35, 55, 0.12);
}

/* Whole-card link (main services page — same as old m-services wrap) */
.our-svc__card-hit {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.our-svc__card-hit .our-svc__link {
  pointer-events: none;
}

/* Last-two wide cards (main services page) */
.our-svc__card--wide {
  flex: 0 0 calc(50% - 11px);
  width: calc(50% - 11px);
  max-width: calc(50% - 11px);
}

.our-svc__card--wide .our-svc__media {
  height: 220px;
}

.our-svc__card--wide .our-svc__icon {
  top: 220px;
}

.our-svc__media {
  position: relative;
  width: 100%;
  height: 180px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #e8f1f6;
  border-radius: 18px 18px 0 0;
}

.our-svc__media img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.our-svc__card:hover .our-svc__media img {
  transform: scale(1.06);
}

.our-svc__icon {
  position: absolute;
  left: 50%;
  top: 180px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  background: #2caadf;
  border: 4px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 35, 55, 0.16);
  pointer-events: none;
}

.our-svc__icon svg {
  width: 26px;
  height: 26px;
  flex: none;
}

.our-svc__icon i {
  font-size: 22px;
  line-height: 1;
  color: #ffffff;
}

.our-svc__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 40px 22px 22px;
  border-radius: 0 0 18px 18px;
}

.our-svc__card-title {
  margin: 0 0 10px;
  color: #0f1a24;
  font-family:"Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.our-svc__card-copy {
  margin: 0 0 20px;
  color: #5a6b7a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  flex: 1 1 auto;
}

.our-svc__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 16px 20px;
  background: #2caadf;
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(44, 170, 223, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, gap 0.25s ease;
}

.our-svc__link svg {
  width: 15px;
  height: 15px;
  flex: none;
  transition: transform 0.25s ease;
}

.our-svc__link:hover {
  background: #2497c7;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(44, 170, 223, 0.38);
  gap: 12px;
}

.our-svc__link:hover svg {
  transform: translateX(3px);
}

.our-svc__bottom {
  max-width: 780px;
  margin: 36px 0 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .our-svc {
    padding: 64px 0 80px;
  }

  .our-svc__title {
    font-size: 30px;
  }

  .our-svc__card,
  .our-svc__card--wide {
    flex: 0 0 calc(50% - 11px);
    width: calc(50% - 11px);
    max-width: calc(50% - 11px);
  }

  .our-svc__media,
  .our-svc__card--wide .our-svc__media {
    height: 200px;
  }

  .our-svc__icon,
  .our-svc__card--wide .our-svc__icon {
    top: 200px;
  }
}

@media (max-width: 767px) {
  .our-svc {
    padding: 48px 0 64px;
  }

  .our-svc__intro {
    margin-bottom: 32px;
  }

  .our-svc__title {
    font-size: 26px;
  }

  .our-svc__copy,
  .our-svc__lead {
    font-size: 15px;
  }

  .our-svc__grid {
    gap: 16px;
  }

  .our-svc__card,
  .our-svc__card--wide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .our-svc__media,
  .our-svc__card--wide .our-svc__media {
    height: 210px;
  }

  .our-svc__icon,
  .our-svc__card--wide .our-svc__icon {
    top: 210px;
    width: 52px;
    height: 52px;
  }

  .our-svc__icon svg {
    width: 24px;
    height: 24px;
  }

  .our-svc__card-title {
    font-size: 20px;
  }
}

















/* =========================================
   Services Page Styles
   (extracted from home.css)
   Note: shared reset, .container, header, footer,
   service-area map and .home-faq styles live in
   home.css, which must also be loaded on this page.
   ========================================= */

.svc-hero__tags {
    padding-left:0 !important;
}
.svc-hero__transition path {
    fill: #2CAADF;
}

/* service */

/* =========================================
   Services Page — Hero + Feature Bar
   ========================================= */

body.svc-page {
  overflow-x: hidden;
  --svc-wave-h: 210px;
}

.svc-hero {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: visible;
}
.svc-hero__stage {
  position: relative;
  min-height: 640px;
  padding: 0 40px 0;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 75% bottom;
  overflow: hidden;
}

.svc-hero__stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 16%,
    rgba(255, 255, 255, 0.99) 28%,
    rgba(255, 255, 255, 0.94) 40%,
    rgba(255, 255, 255, 0.84) 52%,
    rgba(255, 255, 255, 0.64) 64%,
    rgba(255, 255, 255, 0.34) 76%,
    rgba(255, 255, 255, 0.1) 88%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(10px);
}

.svc-hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 12%,
    rgba(255, 255, 255, 0.98) 22%,
    rgba(255, 255, 255, 0.94) 34%,
    rgba(255, 255, 255, 0.82) 46%,
    rgba(255, 255, 255, 0.62) 56%,
    rgba(255, 255, 255, 0.32) 66%,
    rgba(255, 255, 255, 0.08) 74%,
    rgba(255, 255, 255, 0) 82%
  );
}

.svc-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  min-height: 560px;
  padding-top: 48px;
}

.svc-hero__content {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 56px;
}

/* Blue logo block (mock top-left) */
.svc-hero__logo-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: #2caadf;
  padding: 14px 18px;
  margin-bottom: 36px;
  line-height: 0;
}

.svc-hero__logo-badge img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.svc-hero__title {
  font-size: 50px;
  line-height: 1.12;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
  max-width: 560px;
}

.svc-hero__title-mark {
  position: relative;
  display: inline-block;
}

.svc-hero__title-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 72px;
  height: 2px;
  background: #2caadf;
  border-radius: 2px;
}

.svc-hero__copy {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
  color: #4a6278;
  max-width: 480px;
  margin-bottom: 28px;
}

.svc-hero__tags {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 30px;
}

.svc-hero__tags li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #4a6278;
  white-space: nowrap;
  padding: 0 18px;
}

.svc-hero__tags li:first-child {
  padding-left: 0;
}

.svc-hero__tags li + li {
  border-left: 1px solid rgba(74, 98, 120, 0.28);
}

.svc-hero__tag-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #2caadf;
  border-radius: 50%;
  font-size: 14px;
  color: #2caadf;
}

.svc-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.svc-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.svc-hero__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.svc-hero__btn--primary {
  background: #2caadf;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(44, 170, 223, 0.22);
}

.svc-hero__btn--primary:hover {
  background: #0a1a2e;
  box-shadow: 0 8px 22px rgba(10, 26, 46, 0.28);
  transform: translateY(-1px);
}

.svc-hero__btn--outline {
  background: #ffffff;
  color: #2caadf;
  border: 2px solid #2caadf;
  padding-right: 20px;
}

.svc-hero__btn--outline:hover {
  background: #2caadf;
  color: #ffffff;
  border-color: #2caadf;
  transform: translateY(-1px);
}

/* Hero wave — black SVG anchored to hero bottom, cuts into image */
.svc-hero__transition {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--svc-wave-h);
  z-index: 10;
  line-height: 0;
  pointer-events: none;
}

.svc-hero__transition svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Feature bar */
.svc-features {
  position: relative;
  z-index: 5;
  background: #2CAADF;
  padding: 40px 40px 56px;
  margin-top: -1px;
}

.svc-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.svc-features__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.svc-features__item:first-child {
  padding-left: 0;
}

.svc-features__item:last-child {
  padding-right: 0;
  border-right: 0;
}

.svc-features__icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
}

.svc-features__body strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}

.svc-features__body p {
  font-size: 12px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

/* =========================================
   Intro — Designed Around Your Needs
   ========================================= */
.svc-intro {
  padding: 80px 40px 80px;
  background: #ffffff;
}

.svc-intro__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.svc-intro__content {
  flex: 0 0 58%;
  max-width: 58%;
}

.svc-intro__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.svc-intro__title span {
  display: block;
}

.svc-intro__title-dark {
  color: #000;
}

.svc-intro__title-blue {
  color: #2caadf;
}

.svc-intro__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin-bottom: 18px;
}

.svc-intro__copy {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  color: #4a6278;
  margin-bottom: 14px;
}

.svc-intro__copy:last-child {
  margin-bottom: 0;
}

.svc-intro__media {
  position: relative;
  flex: 0 0 40%;
  max-width: 40%;
  height: 380px;
  overflow: hidden;
}

.svc-intro__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.7) 12%,
    rgba(255, 255, 255, 0.2) 26%,
    rgba(255, 255, 255, 0) 40%
  );
}

.svc-intro__media img {
  display: block;
  width: 100%;
  height: 380px;
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.svc-intro__media:hover img {
  transform: scale(1.05);
}

/* =========================================
   Our Services Grid
   ========================================= */
.svc-grid {
  padding: 24px 40px 80px;
  background: #ffffff;
}

.svc-grid__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.svc-grid__line {
  flex: 1 1 auto;
  max-width: 420px;
  height: 1px;
  background: rgba(44, 170, 223, 0.35);
}

.svc-grid__title {
  flex: 0 0 auto;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.svc-grid__cards {
    display: flex;
    flex-wrap: wrap;
}
a.m-services {
    width: 33.33%;
    padding: 15px;
}
.svc-grid__card {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(26, 58, 92, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.svc-grid__card:hover {
  transform: translateY(-5px);
  background-color: #2caadf;
  border-color: #2caadf;
  box-shadow: 0 18px 40px rgba(44, 170, 223, 0.35);
}

.svc-grid__card--wide {
  grid-column: span 3;
}

.svc-grid__card-media {
  flex: 0 0 108px;
  width: 108px;
  overflow: hidden;
  border-radius: 10px;
}

.svc-grid__card-media img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: transform 0.45s ease;
}

.svc-grid__card:hover .svc-grid__card-media img {
  transform: scale(1.08);
}

.svc-grid__card-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-grid__card-body h3 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.svc-grid__card-body p {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 400;
  color: #4a6278;
  transition: color 0.3s ease;
}

.svc-grid__card:hover .svc-grid__card-body h3,
.svc-grid__card:hover .svc-grid__card-body p {
  color: #ffffff;
}

/* =========================================
   Conditions We Commonly Treat
   ========================================= */
.svc-conditions {
  padding: 80px 40px;
  background: #eef6fb;
}

.svc-conditions__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.svc-conditions__kicker {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2caadf;
  margin-bottom: 14px;
}

.svc-conditions__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.svc-conditions__copy {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  color: #4a6278;
}

.svc-conditions__grid {
  display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: stretch;
}
a.serv-conditons{
    width: 25%;
    padding: 10px;
}
.svc-cond-card {
  position: relative;
  --svc-cond-media-h: 132px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(26, 58, 92, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-cond-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(44, 170, 223, 0.2);
}

.svc-cond-card__media {
  position: relative;
  flex: 0 0 auto;
  height: var(--svc-cond-media-h);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.svc-cond-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.svc-cond-card:hover .svc-cond-card__media img {
  transform: scale(1.07);
}

.svc-cond-card__icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(44, 170, 223, 0.45);
  background: rgba(44, 170, 223, 0.12);
  color: #2caadf;
  font-size: 17px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.svc-cond-card:hover .svc-cond-card__icon {
  transform: scale(1.08);
  background: rgba(44, 170, 223, 0.2);
}

.svc-cond-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.svc-cond-card__head h3 {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #2caadf;
  margin: 0;
}

.svc-cond-card__head h3 span {
  display: block;
}

.svc-cond-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 14px 16px 18px;
  border-radius: 0 0 14px 14px;
  background: #ffffff;
}

.svc-cond-card__lead {
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 500;
  color: #4a6278;
  margin-bottom: 8px;
}

.svc-cond-card__list {
  list-style: none;
  flex: 1 1 auto;
  margin-bottom: 12px;
}

.svc-cond-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 400;
  color: #4a6278;
  margin-bottom: 5px;
}

.svc-cond-card__list li:last-child {
  margin-bottom: 0;
}

.svc-cond-card__list li i {
  flex: 0 0 auto;
  color: #2caadf;
  font-size: 12px;
  margin-top: 1px;
}

.svc-cond-card__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}

.svc-cond-card__note {
  font-size: 11px;
  line-height: 1.6;
  font-weight: 400;
  color: #4a6278;
  margin-top: auto;
}

.svc-conditions__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  background: rgba(44, 170, 223, 0.14);
  border: 1px solid rgba(44, 170, 223, 0.2);
  border-radius: 14px;
}

.svc-conditions__cta-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.svc-conditions__cta-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 24px;
}

.svc-conditions__cta-tagline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.svc-conditions__cta-tagline strong {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #000;
}

.svc-conditions__cta-tagline span {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #2caadf;
}

.svc-conditions__cta-divider {
  flex: 0 0 auto;
  width: 1px;
  align-self: stretch;
  min-height: 48px;
  background: rgba(0, 0, 0, 0.12);
}

.svc-conditions__cta-text {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  color: #4a6278;
  text-align: center;
}
p.relives-colss {
  color: #2caadf;
}
.svc-conditions__cta-text i {
  flex: 0 0 auto;
  color: #2caadf;
  font-size: 25px;
}

.svc-conditions__cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 8px;
  background: #0a1a2e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.svc-conditions__cta-btn:hover {
  background: #2caadf;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(44, 170, 223, 0.35);
  transform: translateY(-1px);
}

.svc-conditions__cta-btn i {
  font-size: 11px;
}

/* =========================================
   Personalized Treatment — NC & Georgia
   ========================================= */
.svc-treatment {
  padding: 72px 40px 80px;
  background: #f9f9f9;
}

.svc-treatment__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.svc-treatment__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.svc-treatment__title span {
  display: block;
}

.svc-treatment__title-dark {
  color: #000;
}

.svc-treatment__title-blue {
  color: #2caadf;
}

.svc-treatment__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin-bottom: 18px;
}

.svc-treatment__copy {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  color: #4a6278;
  margin-bottom: 14px;
}

.svc-treatment__copy:last-child {
  margin-bottom: 0;
}

.svc-treatment__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-treatment__gallery-main {
  overflow: hidden;
  border-radius: 14px;
}

.svc-treatment__gallery-main img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  transition: transform 0.45s ease;
}

.svc-treatment__gallery-main:hover img {
  transform: scale(1.06);
}

.svc-treatment__gallery-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.svc-treatment__gallery-row img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  transition: transform 0.45s ease, box-shadow 0.3s ease;
}

.svc-treatment__gallery-row img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(44, 170, 223, 0.18);
}

.svc-treatment__features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.svc-treatment__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.svc-treatment__feature:first-child {
  padding-left: 0;
}

.svc-treatment__feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.svc-treatment__feature-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #2caadf;
  color: #2caadf;
  font-size: 20px;
  background: transparent;
}

.svc-treatment__feature-body h3 {
  color: #0a1a2e;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 6px;
  padding-right: 20px;
}

.svc-treatment__feature-body p {
  color: #4a6278;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}

/* =========================================
   Why Patients Choose
   ========================================= */
.svc-why {
  padding: 72px 40px 80px;
  background: #ffffff;
}

.svc-why__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
}

.svc-why__logo-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: #2caadf;
  padding: 12px 16px;
  margin-bottom: 24px;
  line-height: 0;
}

.svc-why__logo-badge img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.svc-why__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.svc-why__title span {
  display: block;
}

.svc-why__title-dark {
  color: #0a1a2e;
}

.svc-why__title-blue {
  color: #2caadf;
}

.svc-why__lead {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  color: #4a6278;
  max-width: 520px;
}

.svc-why__hero-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(26, 58, 92, 0.12);
}

.svc-why__hero-media img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.svc-why__hero-media:hover img {
  transform: scale(1.05);
}

.svc-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.svc-why-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(26, 58, 92, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(44, 170, 223, 0.18);
}

.svc-why-card__media {
  position: relative;
  height: 148px;
  overflow: visible;
  background: #f3f8fb;
  border-radius: 16px 16px 0 0;
}

.svc-why-card__media > img {
  border-radius: 16px 16px 0 0;
}

.svc-why-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

/* .svc-why-card:hover .svc-why-card__media:not(.svc-why-card__media--awards):not(.svc-why-card__media--stars) > img {
  transform: scale(1.06);
} */

.svc-why-card__media--awards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef6fb 100%);
}

.svc-why-card__award-trophy {
  flex: 0 0 auto;
  width: auto !important;
  height: 88px !important;
  object-fit: contain !important;
  transition: transform 0.45s ease;
}

.svc-why-card__award-badge {
  flex: 0 0 auto;
  width: auto !important;
  height: 96px !important;
  object-fit: contain !important;
  transition: transform 0.45s ease;
}

.svc-why-card:hover .svc-why-card__award-trophy {
  transform: scale(1.06);
}

.svc-why-card:hover .svc-why-card__award-badge {
  transform: scale(1.06);
}

.svc-why-card__media--stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  background-color: #2c333f;
  background-image: url("assets/svc-why-reviews-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: filter 0.3s ease;
}

.svc-why-card:hover .svc-why-card__media--stars {
  filter: brightness(1.1);
}

.svc-why-card__media--stars::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 16px 16px 0 0;
  background: rgba(20, 28, 38, 0.5);
}

.svc-why-card__stars {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f5b942;
  font-size: 28px;
}

.svc-why-card__icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  transform: translate(-50%, 50%);
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(44, 170, 223, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-why-card:hover .svc-why-card__icon {
  transform: translate(-50%, 50%) scale(1.08);
  box-shadow: 0 8px 22px rgba(44, 170, 223, 0.45);
}

.svc-why-card__icon i {
  display: block;
  line-height: 1;
}

.svc-why-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 38px 18px 22px;
  text-align: left;
}

.svc-why-card__body h3 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #2caadf;
  margin-bottom: 10px;
}

.svc-why-card__body p {
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
  color: #4a6278;
}

.svc-why-card__list {
  list-style: none;
  margin: 10px 0;
  text-align: left;
}

.svc-why-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  color: #4a6278;
  margin-bottom: 6px;
}

.svc-why-card__list li:last-child {
  margin-bottom: 0;
}

.svc-why-card__list li i {
  flex: 0 0 auto;
  color: #2caadf;
  font-size: 13px;
}

.svc-why-card__note {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px !important;
  line-height: 1.5 !important;
}

.svc-why__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  background: #2caadf;
  border-radius: 14px;
}

.svc-why__cta-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.svc-why__cta-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 22px;
}

.svc-why__cta-tagline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.svc-why__cta-tagline strong {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.svc-why__cta-tagline span {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.svc-why__cta-divider {
  flex: 0 0 auto;
  width: 1px;
  align-self: stretch;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.28);
}

.svc-why__cta-text {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.svc-why__cta-text i {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 22px;
}

.svc-why__cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  background: #ffffff;
  color: #2caadf;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.svc-why__cta-btn:hover {
  background: #0a1a2e;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(10, 26, 46, 0.28);
  transform: translateY(-1px);
}

.svc-why__cta-btn i:last-child {
  font-size: 11px;
}

/* =========================================
   Serving Patients — NC & Georgia
   ========================================= */
.svc-locations {
  padding: 72px 40px 80px;
  background: #f9f9f9;
}

.svc-locations__main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}

.svc-locations__title {
  font-size: 40px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.svc-locations__title span {
  display: block;
}

.svc-locations__title-dark {
  color: #0a1a2e;
}

.svc-locations__title-blue {
  color: #2caadf;
}

.svc-locations__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin-bottom: 16px;
}

.svc-locations__copy {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: #4a6278;
  margin-top: 6px;
  margin-bottom: 14px;
}

.svc-locations__ga-lead {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #0a1a2e;
  margin-top: 6px;
  margin-bottom: 14px;
}

.svc-locations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.svc-loc-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(26, 58, 92, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(44, 170, 223, 0.16);
}

.svc-loc-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.45s ease;
}

.svc-loc-card:hover img {
  transform: scale(1.06);
}

.svc-loc-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  color: #0a1a2e;
  background: #ffffff;
}

.svc-loc-card__label i {
  flex: 0 0 auto;
  color: #2caadf;
  font-size: 14px;
}

.svc-locations__ga {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.svc-loc-card--newnan img {
  height: 108px;
}

.svc-locations__ga-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.svc-locations__ga-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.svc-locations__ga-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 18px;
}

.svc-locations__ga-item p {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  color: #4a6278;
}

.svc-locations__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-locations__media img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(26, 58, 92, 0.1);
  transition: transform 0.45s ease, box-shadow 0.3s ease;
}

.svc-locations__media img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(44, 170, 223, 0.18);
}

.svc-locations__media-top {
  height: 370px;
  object-position: center top;
}

.svc-locations__media-bottom {
  height: 330px;
  object-position: center;
}

.svc-locations__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 22px 28px;
  background: #eef6fb;
  border: 1px solid rgba(44, 170, 223, 0.18);
  border-radius: 14px;
}

.svc-locations__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-right: 1px solid rgba(44, 170, 223, 0.22);
}

.svc-locations__feature:first-child {
  padding-left: 0;
}

.svc-locations__feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.svc-locations__feature-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 20px;
}

.svc-locations__feature p {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  color: #0a1a2e;
}

/* =========================================
   Schedule Your Visit Today
   ========================================= */
.svc-schedule {
  padding: 24px 40px 80px;
  background: #f9f9f9;
}

.svc-schedule__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
  padding: 44px 30px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(26, 58, 92, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.svc-schedule__content {
  flex: 1 1 60%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 8px;
}

.svc-schedule__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.svc-schedule__head-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0a1a2e;
  color: #ffffff;
  font-size: 35px;
  margin-top: 4px;
}

.svc-schedule__title {
  font-size: 40px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.svc-schedule__title span {
  display: block;
}

.svc-schedule__title-dark {
  color: #0a1a2e;
}

.svc-schedule__title-blue {
  color: #2caadf;
}

.svc-schedule__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
}

.svc-schedule__copy {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
    color: #4a6278;
    margin-bottom: 30px;
}

.svc-schedule__copy:last-of-type {
  margin-bottom: 30px;
}

.svc-schedule__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.svc-schedule__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px 10px 14px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(26, 58, 92, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.svc-schedule__card:hover {
  transform: translateY(-3px);
  border-color: rgba(44, 170, 223, 0.2);
  box-shadow: 0 12px 28px rgba(44, 170, 223, 0.14);
}

span.svc-schedule__card-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(44, 170, 223, 0.14);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2caadf;
  transition: transform 0.3s ease, background 0.3s ease;
}

.svc-schedule__card:hover .svc-schedule__card-icon {
  transform: scale(1.08);
  background: rgba(44, 170, 223, 0.22);
}

.svc-schedule__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.svc-schedule__card strong {
  display: block;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  color: #0a1a2e;
}

.svc-schedule__card .svc-schedule__card-body span {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2caadf;
}

.svc-schedule__media {
  flex: 1 1 40%;
  min-width: 0;
  display: flex;
  overflow: hidden;
  border-radius: 18px;
}

.svc-schedule__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.svc-schedule__media:hover img {
  transform: scale(1.04);
}


/* =========================================
   Book Appointment CTA
   ========================================= */
.svc-book {
  position: relative;
  padding: 60px 40px;
  background: #2caadf url("assets/home-book-bg.png") center / cover no-repeat;
  overflow: hidden;
}

.svc-book::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 170, 223, 0.94), rgba(44, 170, 223, 0.9));
  pointer-events: none;
}

.svc-book__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.svc-book__info {
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.svc-book__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.svc-book__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  color: #2caadf;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.svc-book__icon svg {
  width: 28px;
  height: 28px;
}

.svc-book__title {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 0;
}

.svc-book__copy {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 520px;
}

.svc-book__form-wrap {
  padding-left: 48px;
}

.svc-book__form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.svc-book__form-title {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}

.svc-book__logo {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.svc-book__widget {
  min-height: 320px;
}

/* =========================================
   Tablet (768–1024px)
   ========================================= */
@media (min-width: 768px) and (max-width: 1024px) {
    
    
    a.serv-conditons {
        width: 50%;
        padding: 10px;
    }
  .svc-hero__stage {
    min-height: 0;
    padding: 0 24px 72px;
    background-position: 82% center;
  }

  .svc-hero__stage::before {
    width: 100%;
    filter: blur(8px);
    background: linear-gradient(
      to right,
      #ffffff 0%,
      #ffffff 20%,
      rgba(255, 255, 255, 0.96) 38%,
      rgba(255, 255, 255, 0.82) 54%,
      rgba(255, 255, 255, 0.48) 68%,
      rgba(255, 255, 255, 0.12) 82%,
      rgba(255, 255, 255, 0) 94%
    );
  }

  .svc-hero__stage::after {
    background: linear-gradient(
      to right,
      #ffffff 0%,
      rgba(255, 255, 255, 0.98) 18%,
      rgba(255, 255, 255, 0.9) 36%,
      rgba(255, 255, 255, 0.68) 52%,
      rgba(255, 255, 255, 0.32) 66%,
      rgba(255, 255, 255, 0) 80%
    );
  }

  .svc-hero__inner {
    min-height: 0;
    padding-top: 40px;
  }

  .svc-hero__content {
    flex: none;
    max-width: 100%;
    padding: 0 0 36px;
  }

  .svc-hero__title {
    font-size: 38px;
  }

  body.svc-page {
    --svc-wave-h: 154px;
  }

  .svc-features {
    padding: 32px 24px 44px;
  }

  .svc-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .svc-features__item {
    border-right: 0;
    padding: 0;
  }

  .svc-grid__title {
    font-size: 34px;
  }

  .svc-grid__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .svc-grid__card,
  .svc-grid__card--wide {
    grid-column: span 1;
    flex-direction: column;
    gap: 14px;
  }

  .svc-grid__card-media {
    flex: none;
    width: 100%;
  }

  .svc-grid__card-media img {
    width: 100%;
    height: 180px;
  }

  .svc-intro {
    padding: 56px 24px 16px;
  }

  .svc-intro__inner {
    flex-direction: column;
    gap: 28px;
  }

  .svc-intro__content {
    flex: none;
    max-width: 100%;
  }

  .svc-intro__title {
    font-size: 34px;
  }

  .svc-intro__media {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: 320px;
  }

  .svc-intro__media img {
    height: 320px;
    max-height: 320px;
  }

  .svc-grid {
    padding: 16px 24px 64px;
  }

  .svc-conditions {
    padding: 56px 24px;
  }

  .svc-conditions__title {
    font-size: 34px;
  }

 

  .svc-conditions__cta {
    flex-wrap: wrap;
    gap: 18px;
  }

  .svc-conditions__cta-divider {
    display: none;
  }

  .svc-conditions__cta-text {
    flex: 1 1 100%;
  }

  .svc-conditions__cta-btn {
    width: 100%;
    justify-content: center;
  }

  .svc-treatment {
    padding: 56px 24px;
  }

  .svc-treatment__top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }

  .svc-treatment__title {
    font-size: 34px;
  }

  .svc-treatment__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
    padding-top: 28px;
  }

  .svc-treatment__feature {
    padding: 0 16px;
    border-right: 0;
  }

  .svc-treatment__feature:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  .svc-treatment__feature:nth-child(1),
  .svc-treatment__feature:nth-child(2) {
    padding-top: 0;
  }

  .svc-treatment__feature:nth-child(odd):first-child {
    padding-left: 0;
  }

  .svc-treatment__feature:nth-child(even) {
    padding-right: 0;
  }

  .svc-why {
    padding: 56px 24px 64px;
  }

  .svc-why__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-why__title {
    font-size: 34px;
  }

  .svc-why__hero-media img {
    height: 280px;
  }

  .svc-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .svc-why__cta {
    flex-wrap: wrap;
    gap: 18px;
  }

  .svc-why__cta-divider {
    display: none;
  }

  .svc-why__cta-text {
    flex: 1 1 100%;
  }

  .svc-why__cta-btn {
    width: 100%;
    justify-content: center;
  }

  .svc-locations {
    padding: 56px 24px 64px;
  }

  .svc-locations__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .svc-locations__title {
    font-size: 34px;
  }

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

  .svc-locations__ga {
    grid-template-columns: 1fr;
  }

  .svc-loc-card--newnan {
    max-width: 220px;
  }

  .svc-locations__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
    padding: 20px 18px;
  }

  .svc-locations__feature {
    padding: 0 12px;
    border-right: 0;
  }

  .svc-locations__feature:nth-child(odd) {
    border-right: 1px solid rgba(44, 170, 223, 0.22);
  }

  .svc-schedule {
    padding: 0 24px 64px;
  }

  .svc-schedule__inner {
    flex-direction: column;
    padding: 32px 28px;
  }

  .svc-schedule__content,
  .svc-schedule__media {
    flex: 1 1 auto;
    width: 100%;
  }

  .svc-schedule__title {
    font-size: 42px;
  }

  .svc-schedule__head-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .svc-schedule__copy {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .svc-schedule__media img {
    min-height: 320px;
    max-height: 420px;
  }

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

  .svc-faq {
    padding: 56px 24px 48px;
  }

  .svc-faq__title {
    font-size: 28px;
  }

  .svc-book {
    padding: 48px 24px;
  }

  .svc-book__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .svc-book__info {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .svc-book__form-wrap {
    padding-left: 0;
  }

  .svc-book__widget {
    min-height: 280px;
  }
}

/* =========================================
   Mobile (≤767px)
   ========================================= */
@media (max-width: 767px) {
    
        a.serv-conditons {
        width: 100%;
        padding: 10px;
    }
    a.m-services {
    width: 100%;
}
  .svc-hero__stage {
    min-height: 0;
    padding: 0 16px 56px;
    background-position: center center;
  }

  .svc-hero__stage::before {
    width: 100%;
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      #ffffff 38%,
      rgba(255, 255, 255, 0.97) 52%,
      rgba(255, 255, 255, 0.88) 66%,
      rgba(255, 255, 255, 0.62) 80%,
      rgba(255, 255, 255, 0.28) 92%,
      rgba(255, 255, 255, 0) 100%
    );
    filter: none;
  }

  .svc-hero__stage::after {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.92) 40%,
      rgba(255, 255, 255, 0.78) 58%,
      rgba(255, 255, 255, 0.45) 76%,
      rgba(255, 255, 255, 0.12) 90%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  body.svc-page {
    --svc-wave-h: 126px;
  }

  .svc-hero__inner {
    min-height: 0;
    padding-top: 32px;
  }

  .svc-hero__content {
    flex: none;
    max-width: 100%;
    padding: 0 0 24px;
  }

  .svc-hero__title {
    font-size: 30px;
  }

  .svc-hero__copy {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .svc-hero__tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }

  .svc-hero__tags li {
    padding: 0;
    white-space: normal;
  }

  .svc-hero__tags li + li {
    border-left: 0;
  }

  .svc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .svc-hero__btn {
    justify-content: center;
    width: 100%;
  }

  .svc-features {
    padding: 28px 16px 36px;
  }

  .svc-features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-features__item {
    border-right: 0;
    padding: 0;
  }

  .svc-grid {
    padding: 24px 16px 56px;
  }

  .svc-grid__head {
    gap: 14px;
    margin-bottom: 32px;
  }

  .svc-grid__line {
    max-width: 72px;
  }

  .svc-grid__title {
    font-size: 28px;
    white-space: normal;
    text-align: center;
  }

  .svc-grid__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-grid__card,
  .svc-grid__card--wide {
    grid-column: span 1;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .svc-grid__card-media {
    flex: none;
    width: 100%;
  }

  .svc-grid__card-media img {
    width: 100%;
    height: 200px;
  }

  .svc-intro {
    padding: 40px 16px 8px;
  }

  .svc-intro__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .svc-intro__content {
    flex: none;
    max-width: 100%;
  }

  .svc-intro__title {
    font-size: 28px;
  }

  .svc-intro__copy {
    font-size: 13px;
  }

  .svc-intro__media {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: 260px;
  }

  .svc-intro__media::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0) 28%
    );
  }

  .svc-intro__media img {
    height: 260px;
    max-height: 260px;
  }

  .svc-conditions {
    padding: 48px 16px;
  }

  .svc-conditions__head {
    margin-bottom: 28px;
  }

  .svc-conditions__kicker {
    font-size: 12px;
  }

  .svc-conditions__title {
    font-size: 28px;
  }

  .svc-conditions__copy {
    font-size: 13px;
  }


  .svc-cond-card__head h3 {
    font-size: 13px;
  }

  .svc-conditions__cta {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px;
    gap: 12px;
  }

  .svc-conditions__cta-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    align-self: stretch;
    margin: 0;
  }

  .svc-conditions__cta-brand {
    flex-direction: column;
    text-align: center;
  }

  .svc-conditions__cta-tagline {
    align-items: center;
  }

  .svc-conditions__cta-text {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .svc-conditions__cta-text i {
    font-size: 36px;
  }

  .svc-conditions__cta-btn {
    width: 100%;
    justify-content: center;
  }

  .svc-treatment {
    padding: 40px 16px 56px;
  }

  .svc-treatment__top {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  .svc-treatment__title {
    font-size: 28px;
  }

  .svc-treatment__copy {
    font-size: 13px;
  }

  .svc-treatment__gallery-main img {
    height: 200px;
  }

  .svc-treatment__gallery-row {
    gap: 8px;
  }

  .svc-treatment__feature-body h3 {
    font-size: 16px;
    padding-right: 0;
  }

  .svc-treatment__features {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
  }

  .svc-treatment__feature {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .svc-treatment__feature:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .svc-why {
    padding: 40px 16px 56px;
  }

  .svc-why__head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .svc-why__title {
    font-size: 28px;
  }

  .svc-why__lead {
    font-size: 13px;
  }

  .svc-why__hero-media img {
    height: 220px;
  }

  .svc-why__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .svc-why__cta {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px;
    gap: 12px;
  }

  .svc-why__cta-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    align-self: stretch;
    margin: 0;
  }

  .svc-why__cta-brand {
    flex-direction: column;
    text-align: center;
  }

  .svc-why__cta-tagline {
    align-items: center;
  }

  .svc-why__cta-text {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .svc-why__cta-text i {
    font-size: 36px;
  }

  .svc-why__cta-btn {
    width: 100%;
    justify-content: center;
  }

  .svc-locations {
    padding: 40px 16px 56px;
  }

  .svc-locations__main {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  .svc-locations__title {
    font-size: 28px;
  }

  .svc-locations__copy {
    font-size: 14px;
  }

  .svc-locations__ga-lead {
    font-size: 14px;
  }

  .svc-locations__ga {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .svc-locations__ga-item {
    align-items: flex-start;
  }

  .svc-locations__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .svc-loc-card--newnan {
    max-width: 100%;
  }

  .svc-locations__media-top {
    height: 220px;
  }

  .svc-locations__media-bottom {
    height: 200px;
  }

  .svc-locations__features {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 16px;
  }

  .svc-locations__feature {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(44, 170, 223, 0.22);
  }

  .svc-locations__feature:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .svc-schedule {
    padding: 0 16px 56px;
  }

  .svc-schedule__inner {
    flex-direction: column;
    padding: 24px 18px;
    gap: 24px;
  }

  .svc-schedule__content,
  .svc-schedule__media {
    flex: 1 1 auto;
    width: 100%;
  }

  .svc-schedule__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .svc-schedule__head-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .svc-schedule__head-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-top: 0;
  }

  .svc-schedule__line {
    margin: 0 auto;
  }

  .svc-schedule__title {
    font-size: 32px;
  }

  .svc-schedule__copy {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .svc-schedule__copy:last-of-type {
    margin-bottom: 18px;
  }

  .svc-schedule__cards {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .svc-schedule__card strong {
    font-size: 13px;
  }

  .svc-schedule__media img {
    min-height: 240px;
    max-height: 320px;
  }

  .svc-faq {
    padding: 48px 16px 40px;
  }

  .svc-faq__head {
    margin-bottom: 28px;
  }

  .svc-faq__title {
    font-size: 26px;
  }

  .svc-faq__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .svc-faq__item summary {
    padding: 16px 14px;
  }

  .svc-faq__question {
    font-size: 14px;
  }

  .svc-faq__answer {
    padding: 0 14px 14px 50px;
  }

  .svc-book {
    padding: 48px 16px;
  }

  .svc-book__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .svc-book__info {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .svc-book__form-wrap {
    padding-left: 0;
  }

  .svc-book__copy {
    max-width: 100%;
  }

  .svc-book__form-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .svc-book__head {
    flex-wrap: wrap;
  }

  .svc-book__title {
    font-size: 24px;
  }

  .svc-book__form-title {
    font-size: 22px;
  }

  .svc-book__widget {
    min-height: 240px;
  }
}
