* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1367px;
  width: 100%;
  margin: 0 auto;
}
.home-nav__submenu a {
    display: flex !important;
    gap: 4px;
}

.home-svc-card__icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}
a {
  text-decoration: none;
  color: inherit;
}
.home-footer__condition-icon i {
    font-size: 20px;
}
ul.home-footer__conditions {
    padding-left:0;
}
ul.home-footer__locations {
    padding-top: 20px;
    padding-left:0;
}
span.home-footer__condition-icon {
    justify-content: flex-start !important;
}
.home-nav__ico img {
    height: 20px;
    width: 20px;
}
.sechdule-btns {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    background: #2caadf;
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(44, 170, 223, 0.3);
}
.sechdule-btns:hover {
    background: #ffffff;
    transform: translateY(-1px);
    color: #2caadf;
}
.sechdule-btns:hover .sechdule-icon {
    color: #2caadf;
}
.sechdule-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: transparent;
    color: #ffffff;
}
.descript-advs {
    padding-bottom: 20px;
}
.descript-advs p {
    font-size: 14px;
    padding-bottom: 10px;
}
/* =========================================
   Header
   ========================================= */
.home-header {
  width: 100%;
  background: #ffffff;
  position: relative;
  z-index: 20;
  padding: 0 40px;
}

.home-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left:40px;
  padding-right:40px;
}

.home-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.home-logo__img {
  display: block;
  width: auto;
  height: 72px;
  max-width: 220px;
  object-fit: contain;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap:10px;
}

.home-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.home-nav a:hover {
  color: #2caadf;
}

.home-nav__dropdown {
  position: relative;
  display: flex;
}

.home-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 0 0px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
}

.home-nav__trigger i {
  font-size: 9px;
  color: inherit;
  margin-top: 1px;
  transition: transform 0.2s ease;
}

.home-nav__dropdown:hover .home-nav__trigger,
.home-nav__dropdown.is-open .home-nav__trigger {
  color: #2caadf;
}

.home-nav__dropdown:hover .home-nav__trigger i,
.home-nav__dropdown.is-open .home-nav__trigger i {
  transform: rotate(180deg);
}

.home-nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 40;
}

.home-nav__submenu::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  z-index: -1;
}

.home-nav__dropdown:hover .home-nav__submenu,
.home-nav__dropdown:focus-within .home-nav__submenu,
.home-nav__dropdown.is-open .home-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-nav__submenu li {
  position: relative;
  z-index: 1;
}

.home-nav__submenu a {
  display: block;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #000;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.home-nav__submenu a:hover {
  color: #2caadf;
  background: rgba(44, 170, 223, 0.06);
}

.home-header__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  background: #2caadf;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-header__cta:hover {
  background: #24a0cf;
  transform: translateY(-1px);
}

.home-header__toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(44, 170, 223, 0.35);
  border-radius: 8px;
  background: #ffffff;
  color: #000;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.home-header__toggle:hover {
  border-color: #2caadf;
  color: #2caadf;
}

.home-header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 20px;
  min-width: 0;
  flex-wrap:wrap;
}

body.home-menu-open {
  overflow: hidden;
}

/* =========================================
   Hero
   ========================================= */
.home-hero {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.home-hero__stage {
  position: relative;
  min-height: 640px;
  padding: 80px 40px;
  background-image: url("assets/home-hero-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
	width:100%;
}

.home-hero__stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0.99) 12%,
    rgba(255, 255, 255, 0.92) 24%,
    rgba(255, 255, 255, 0.72) 38%,
    rgba(255, 255, 255, 0.38) 52%,
    rgba(255, 255, 255, 0.08) 66%,
    rgba(255, 255, 255, 0) 78%
  );
  filter: blur(10px);
}

.home-hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0.96) 10%,
    rgba(255, 255, 255, 0.82) 20%,
    rgba(255, 255, 255, 0.45) 34%,
    rgba(255, 255, 255, 0.12) 48%,
    rgba(255, 255, 255, 0) 58%
  );
}

.home-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  min-height: 480px;
}

.home-hero__content {
  position: relative;
  z-index: 3;
  flex: 0 0 46%;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 80px;
}

.home-hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.home-hero__kicker span {
  flex: 0 0 48px;
  height: 2px;
  background: #2caadf;
  border-radius: 2px;
}

.home-hero__kicker p {
  font-size: 14px;
  font-weight: 700;
  color: #2caadf;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.home-hero__title {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
  max-width: 580px;
}

.home-hero__copy {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  color: #000;
  max-width: 500px;
  margin-bottom: 30px;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-hero__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: transparent;
}

.home-hero__btn--primary {
  background: #2caadf !important;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(44, 170, 223, 0.3);
}

.home-hero__btn--primary .home-hero__btn-icon {
  color: #ffffff;
}

.home-hero__btn--primary:hover {
  background: #24a0cf;
  transform: translateY(-1px);
}

.home-hero__btn--outline {
  background: #ffffff;
  color: #2caadf;
  border: 2px solid #2caadf;
  padding-right: 20px;
}

.home-hero__btn-icon--outline {
  color: #2caadf;
  background: transparent;
}

.home-hero__btn--outline:hover {
  background: rgba(44, 170, 223, 0.05);
  transform: translateY(-1px);
}

.home-trust-wrap {
  position: relative;
  z-index: 5;
  margin-top: -78px;
  padding: 0 40px 52px;
}

.home-trust-bar {
  display: grid;
  grid-template-columns: 1.05fr 0.92fr 1.18fr;
  gap: 0;
  padding: 30px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(26, 58, 92, 0.11);
  overflow: hidden;
	margin-top:-60px;
}

.home-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0px 24px;
  border-right: 1px solid rgba(26, 58, 92, 0.09);
}

.home-trust-item:last-child {
  border-right: 0;
}

.home-trust-item__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.home-trust-item__icon--award img {
  width: 130px;
  height: auto;
  display: block;
}

.home-trust-item__icon--gold-star {
  color: #2caadf;
  font-size: 60px;
  line-height: 1;
}

.home-trust-item__icon--blue {
  color: #2caadf;
  font-size: 60px;
  line-height: 1;
}

.home-trust-item__body strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #2caadf;
  margin-bottom: 5px;
}

.home-trust-item__body p {
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
  color: #000;
}

.home-trust-item__body p.home-trust-item__cities {
  font-size: 12px;
  line-height: 1.65;
  margin-top: 0;
}

/* =========================================
   Section 2: Our Chiropractic Services
   ========================================= */
.home-services {
  position: relative;
  padding: 80px 40px;
  
  overflow: hidden;
  background:#a4cedf12;
}

.home-services > .container {
  position: relative;
  z-index: 1;
}



.home-services__hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 28px;
}

.home-services__intro {
  flex: 0 0 52%;
  max-width: 52%;
  padding: 8px 0;
}

.home-services__title {
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.home-services__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin-bottom: 18px;
}

.home-services__copy {
  color: #000;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 14px;
}

.home-services__copy:last-child {
  margin-bottom: 0;
}

.home-services__copy strong {
  color: #2caadf;
  font-weight: 700;
}

.home-services__hero-media,
.home-conditions__hero-media {
  position: relative;
  flex: 0 0 46%;
  max-width: 46%;
  min-height: 290px;
  overflow: visible;
}

.home-services__hero-media::after,
.home-conditions__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #2ca9e1cf;
  clip-path: ellipse(100% 140% at 100% 53%);
}

.home-services__hero-media img, .home-conditions__hero-media img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  position: relative;
  z-index: 1;
  transform: translateX(9px);
  clip-path: ellipse(calc(100% - 3px) 122% at 100% 49%);
  border-radius: 0;
  transform-origin: center;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-services__grid {
      display: flex;
    align-items: start;
    flex-wrap: wrap;
}
a.home.services {
    width: 25%;
    padding: 15px;
}
.home-svc-card {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 38%;
  column-gap: 8px;
  align-items: start;
  height: 152px;
  padding: 0 0 0 12px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.09);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(44, 170, 223, 0.18);
}

.home-svc-card__icon {
  grid-column: 1;
  grid-row: 1;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: 10px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.home-svc-card:hover .home-svc-card__icon {
  transform: scale(1.08);
}

.home-svc-card__body {
  grid-column: 2;
  grid-row: 1;
  margin-top: 10px;
  padding-right: 4px;
  min-width: 0;
}

.home-svc-card__body h3 {
  color: #000;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-svc-card__body p {
  color: #4a6278;
  font-size: 11px;
  line-height: 1.42;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-svc-card__media {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  align-self: stretch;
  height: 100%;
  overflow: hidden;
}

.home-svc-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 20%, rgba(255, 255, 255, 0) 46%);
}

.home-svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

/* .home-svc-card:hover .home-svc-card__media img {
  transform: scale(1.08);
} */

.home-svc-card--cta {
  grid-template-columns: 36px minmax(0, 1fr);
  padding-right: 38%;
  background: linear-gradient(135deg, rgba(44, 170, 223, 0.18) 0%, rgba(44, 170, 223, 0.07) 100%);
  border: 1px solid rgba(44, 170, 223, 0.2);
  box-shadow: 0 8px 24px rgba(44, 170, 223, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-svc-card--cta:hover {
  transform: translateY(-5px);
  border-color: rgba(44, 170, 223, 0.35);
  box-shadow: 0 16px 36px rgba(44, 170, 223, 0.22);
}

.home-svc-card--cta .home-svc-card__body h3 {
  color: #2caadf;
}

.home-svc-card__spine {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  max-height: 96%;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.3;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.home-svc-card--cta:hover .home-svc-card__spine {
  transform: scale(1.06);
  opacity: 0.42;
}

.home-services__bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  padding: 22px 24px;
  background: #000;
  border-radius: 0;
}

.home-services-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.home-services-bar__item:first-child {
  padding-left: 0;
}

.home-services-bar__item:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-services-bar__icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  font-size: 44px;
}

.home-services-bar__text strong {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.home-services-bar__text strong span {
  display: block;
  white-space: nowrap;
}

/* =========================================
   Section 3: Welcome
   ========================================= */
.home-welcome {
  padding: 80px 40px;
  background: #eef6fb;
}

.home-welcome__panel {
  /* container only — no panel styling */
}

.home-welcome__head {
  text-align: center;
  margin-bottom: 36px;
}

.home-welcome__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.home-welcome__kicker span {
  flex: 0 0 56px;
  height: 2px;
  background: #2caadf;
  border-radius: 2px;
}

.home-welcome__kicker p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2caadf;
  white-space: nowrap;
}

.home-welcome__title {
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.home-welcome__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin: 0 auto 14px;
}

.home-welcome__subtitle {
  color: #000;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.home-welcome__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.home-welcome__video-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 36px rgba(26, 58, 92, 0.14);
}

.home-welcome__video {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
  background: #000;
}

.home-welcome__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.home-welcome__timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: rgba(44, 170, 223, 0.35);
  pointer-events: none;
}

.home-welcome__step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-welcome__step-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #000;
  color: #ffffff;
  font-size: 22px;
}

.home-welcome__step p {
  color: #000;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  padding-top: 6px;
}

.home-welcome__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  padding: 26px 32px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(26, 58, 92, 0.1);
}

.home-welcome__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-right: 1px solid rgba(26, 58, 92, 0.1);
}

.home-welcome__feature:first-child {
  padding-left: 0;
}

.home-welcome__feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-welcome__feature-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 22px;
}

.home-welcome__feature-body h3 {
  color: #000;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 4px;
}

.home-welcome__feature-body p {
  color: #4a6278;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}

/* =========================================
   Section 4: Conditions We Commonly Treat
   ========================================= */
.home-conditions {
  position: relative;
  padding: 80px 40px;
  background: #a4cedf12;
  overflow: hidden;
}

.home-conditions > .container {
  position: relative;
  z-index: 1;
}

.home-conditions__hero {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 28px;
}

.home-conditions__intro {
  flex: 0 0 52%;
  max-width: 52%;
  padding: 8px 0;
}

.home-conditions__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.home-conditions__title span {
  display: block;
}

.home-conditions__title-dark {
  color: #000000;
}

.home-conditions__title-blue {
  color: #2caadf;
}

.home-conditions__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin-bottom: 18px;
}

.home-conditions__copy {
  color: #000;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
}

.home-conditions__grid {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
a.home-conditons {
    width: 25%;
    padding: 10px;
}
.home-cond-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(44, 170, 223, 0.12);
  padding: 16px 16px 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height:100%;
}

.home-cond-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(44, 170, 223, 0.2);
}

.home-cond-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.home-cond-card__icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.home-cond-card:hover .home-cond-card__icon {
  transform: scale(1.08);
}

.home-cond-card__head h3 {
  color: #2caadf;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.home-cond-card__list {
  list-style: none;
  flex: 1 1 auto;
  margin-bottom: 12px;
}

.home-cond-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4a6278;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 5px;
}

.home-cond-card__list li:last-child {
  margin-bottom: 0;
}

.home-cond-card__list li i {
  flex: 0 0 auto;
  color: #2caadf;
  font-size: 12px;
  margin-top: 1px;
}

.home-cond-card__media {
  margin: auto -16px 0;
  height: 132px;
  position: relative;
  overflow: hidden;
}

.home-cond-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}

.home-cond-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}



.home-cond-card__media--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  height: 132px;
}

.home-cond-card__media--grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-cond-card:hover .home-cond-card__media--grid img {
  transform: scale(1.07);
}

.home-conditions__banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  margin-top: 14px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(44, 170, 223, 0.16) 0%, rgba(44, 170, 223, 0.06) 100%);
  border: 1px solid rgba(44, 170, 223, 0.2);
  border-radius: 14px;
  overflow: hidden;
}

.home-conditions__banner-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #2caadf;
  background: transparent;
  position: relative;
  z-index: 2;
}

.home-conditions__banner-icon svg {
  width: 52px;
  height: 52px;
  display: block;
}

.home-conditions__banner-text {
  flex: 1 1 auto;
  color: #000;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  padding-right: 38%;
  position: relative;
  z-index: 2;
}

.home-conditions__banner-text strong {
  color: #2caadf;
  font-weight: 700;
}

.home-conditions__banner-spine {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  height: 96%;
  max-width: 38%;
  min-width: 72px;
  z-index: -1;
  pointer-events: none;
}
.home-conditions__banner-icon i {
    font-size: 55px;
}
.home-conditions__banner-spine img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center right;
  mix-blend-mode: screen;
  opacity: 0.85;
}




/* =========================================
   Section 5 — Locations
   ========================================= */
.home-locations {
  padding: 60px 40px;
  background: #ffffff;
}

.home-locations__inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.home-locations__content {
  flex: 0 0 52%;
  max-width: 52%;
  padding: 0 20px 0 0;
}

.home-locations__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.home-locations__title span {
  display: block;
}

.home-locations__title-dark {
  color: #000;
}

.home-locations__title-blue {
  color: #2caadf;
}

.home-locations__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin-bottom: 16px;
}

.home-locations__copy {
  color: #000;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 12px;
}

.home-locations__copy:last-child {
  margin-bottom: 0;
}

.home-locations__panel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 14px 0 12px;
}

.home-locations__subheading {
  color: #2caadf;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-locations__list-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.home-locations__list {
  list-style: disc;
  padding-left: 20px;
  color: #000;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.home-locations__list li {
  padding-left: 4px;
}

.home-locations__map {
  flex: 0 0 auto;
  width: 178px;
}

.home-locations__map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.home-locations__media {
  position: relative;
  flex: 0 0 48%;
  max-width: 48%;
  height: 600px;
  display: flex;
  overflow: hidden;
}

.home-locations__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.65) 10%, rgba(255, 255, 255, 0.15) 22%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

.home-locations__media img {
  width: 100%;
  height: 600px;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* =========================================
   Section 6 — Advanced Care
   ========================================= */
.home-advanced {
  padding: 60px 40px;
  background: #a4cedf12;
}

.home-advanced__inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.home-advanced__content {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 20px 0 0;
}

.home-advanced__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.home-advanced__title span {
  display: block;
}

.home-advanced__title-dark {
  color: #000;
}

.home-advanced__title-blue {
  color: #2caadf;
}

.home-advanced__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin-bottom: 16px;
}

.home-advanced__copy {
  color: #000;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 12px;
}

.home-advanced__copy:last-child {
  margin-bottom: 0;
}

.home-advanced__media {
  position: relative;
  flex: 0 0 40%;
  max-width: 40%;
  height: 600px;
  display: flex;
  overflow: hidden;
}

.home-advanced__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.65) 10%, rgba(255, 255, 255, 0.15) 22%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

.home-advanced__media img {
  width: 100%;
  height: 600px;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* =========================================
   Section 7 — Doctor Profile
   ========================================= */
.home-doctor {
  padding: 40px 40px;
  background: #ffffff;
}

.home-doctor__inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.home-doctor__media {
  flex: 0 0 40%;
  max-width: 40%;
}

.home-doctor__media img {
    display: block;
    width: 100%;
    height: 630px;
    max-height: 630px;
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
}

.home-doctor__content {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 0 0 8px;
}

.home-doctor__title {
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.home-doctor__role {
  color: #2caadf;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 14px;
}

.home-doctor__copy {
  color: #000;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 14px;
}

.home-doctor-desc {
    font-size: 14px;
}

.home-doctor__copy:last-child {
  margin-bottom: 0;
}

.home-doctor__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin: 16px 0 18px;
}

.home-doctor__name {
  color: #000;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
}

.home-doctor__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #2caadf;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

/* =========================================
   Section 8 — Patient Journey
   ========================================= */
.home-journey {
  padding: 40px 40px;
  background: #a4cedf12;
}

.home-journey__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.home-journey__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.home-journey__kicker span {
  flex: 0 0 56px;
  height: 2px;
  background: #2caadf;
  border-radius: 2px;
}

.home-journey__kicker p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2caadf;
  white-space: nowrap;
}

.home-journey__title {
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.home-journey__subtitle {
  color: #000;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.home-journey__main {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  gap: 36px;
  align-items: start;
}

.home-journey__media {
  position: relative;
  padding: 0;
  border-radius: 40px;
  background: #ffffff;
  border: 12px solid rgba(44, 170, 223, 0.32);
  box-shadow: 0 20px 50px rgba(44, 170, 223, 0.16);
  overflow: hidden;
   height: 100%;
}

.home-journey__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}

.home-journey__overlay {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.home-journey__overlay-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 22px;
}

.home-journey__overlay-body strong {
  display: block;
  color: #2caadf;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 3px;
}

.home-journey__overlay-body p {
  color: #4a6278;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}

.home-journey__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-journey__timeline::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(44, 170, 223, 0.4);
  pointer-events: none;
}

.home-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  cursor: pointer;
  padding: 0;
  transition: gap 0.25s ease, padding 0.25s ease;
}

.home-journey__step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #2caadf 0%, #1f95cc 52%, #1f8fbf 100%);
  box-shadow: 0 12px 28px rgba(44, 170, 223, 0.28);
  opacity: 0;
  transition: opacity 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

.home-journey__step::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px) 0 0 / 11px 11px;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.home-journey__step:hover::before,
.home-journey__step:focus-within::before,
.home-journey__step:hover::after,
.home-journey__step:focus-within::after {
  opacity: 1;
}

.home-journey__step-marker {
  position: relative;
  z-index: 2;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
}

.home-journey__step-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #2caadf;
  border: 2px solid #2caadf;
  font-size: 21px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-journey__step-marker-num {
  position: absolute;
  right: -1px;
  bottom: 0;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ffffff;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(44, 170, 223, 0.2);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-journey__step-body {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  min-height: 68px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(44, 170, 223, 0.14);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-journey__step-num {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease;
}

.home-journey__step-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.home-journey__step-copy h3 {
  color: #2caadf;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 3px;
  transition: color 0.25s ease;
}

.home-journey__step-copy p {
  color: #4a6278;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  transition: color 0.25s ease;
}

.home-journey__step:hover,
.home-journey__step:focus-within {
  gap: 12px;
  padding: 4px 18px 4px 4px;
}

.home-journey__step:hover .home-journey__step-icon,
.home-journey__step:focus-within .home-journey__step-icon {
  background: #ffffff;
  color: #2caadf;
  border-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.home-journey__step:hover .home-journey__step-marker-num,
.home-journey__step:focus-within .home-journey__step-marker-num {
  background: #ffffff;
  color: #2caadf;
  border-color: #ffffff;
}

.home-journey__step:hover .home-journey__step-body,
.home-journey__step:focus-within .home-journey__step-body {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.home-journey__step:hover .home-journey__step-num,
.home-journey__step:focus-within .home-journey__step-num {
  background: #ffffff;
  color: #2caadf;
}

.home-journey__step:hover .home-journey__step-copy h3,
.home-journey__step:hover .home-journey__step-copy p,
.home-journey__step:focus-within .home-journey__step-copy h3,
.home-journey__step:focus-within .home-journey__step-copy p {
  color: #ffffff;
}

/* =========================================
   Shared — Star Divider
   ========================================= */
.home-star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 18px;
  max-width: 320px;
}

.home-star-divider__line {
  flex: 1 1 auto;
  height: 2px;
  background: rgba(44, 170, 223, 0.35);
  border-radius: 2px;
}

.home-star-divider__star {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  color: #2caadf;
  font-size: 14px;
  line-height: 1;
}

/* =========================================
   Section 8 — Reviews
   ========================================= */
.home-reviews {
  padding: 40px 40px;
  background: #ffffff;
}

.home-reviews__head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.home-reviews__title {
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.home-reviews__intro {
  color: #000;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.home-reviews__widget {
  width: 100%;
  min-height: 280px;
  padding: 8px 0;
}

/* =========================================
   Section 9 — Accolades
   ========================================= */
.home-accolades {
  padding: 40px 40px;
  background: #ffffff;
}

.home-accolades__head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.home-accolades__title {
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.home-accolades__intro {
  color: #000;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.home-accolades__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 28px;
}

.home-accolades__badges img {
  display: block;
  width: auto;
  height: 118px;
  max-width: 118px;
  object-fit: contain;
}



/* =========================================
   Section 10 — Why Choose
   ========================================= */
.home-why {
  padding: 40px 40px;
  background: #a4cedf12;
}

.home-why__top {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 480px;
    margin-bottom: 0;
    padding: 0 40px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}
.home-why__title-linesss {
  padding-bottom: 50px;
}
.home-why__top-bg {
  position: absolute;
  right: 0;
  z-index: 0;
  width: 45%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  transition: transform 0.5s ease;
}

.home-why__top:hover .home-why__top-bg {
  transform: scale(1.03);
}

.home-why__top-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 34%,
    rgba(255, 255, 255, 0.96) 42%,
    rgba(255, 255, 255, 0.78) 50%,
    rgba(255, 255, 255, 0.35) 58%,
    rgba(255, 255, 255, 0.08) 66%,
    transparent 74%
  );
}

.home-why__top-fade::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
}

.home-why__intro {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 52%);
  min-height: 100%;
}

.home-why__title {
  color: #000;
  font-size: 41px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.home-why__title-line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin-bottom: 16px;
}

.home-why__lead {
  color: #4a6278;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 0;
}

.home-why__ribbon {
    display: flex;
    align-items: center;
    margin-top: -54px;
    padding: 14px 32px;
    background: #2caadf;
    border-radius: 0 28px 0 0;
    width: max-content;
    position: relative;
}

.home-why__ribbon span {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.home-why__rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
  padding-top: 40px;
}

.home-why__row {
    display: grid;
    grid-template-columns: 0.3fr 1.35fr 1.35fr;
    gap: 30px;
    align-items: center;
    transition: transform 0.3s ease;
}
.home-why__icon {
  display: inline-grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(44, 170, 223, 0.14);
  color: #2caadf;
  font-size: 44px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.home-why__row:hover .home-why__icon {
  transform: scale(1.06);
  background: rgba(44, 170, 223, 0.22);
}

.home-why__copy h3 {
  color: #000;
  font-size: 20px; 
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 6px;
}

.home-why__copy p {
  color: #4a6278;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.home-why__visual {
  border-radius: 12px;
  overflow: hidden;
}


.home-why__visual img {
  display: block;
  width: 100%;
  height: 185px;
  object-fit: cover;
}


.home-why__visual--awards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  min-height: 118px;
  padding: 0;
}

.home-why__visual--awards img {
    width: auto;
    height: 102px;
    max-width: 102px;
    object-fit: contain;
    transition: transform 0.3s ease;
}


.home-why__visual--grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  min-height: 132px;
  background: #ffffff;
}

.home-why__visual--grid img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.home-why__footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 2px solid rgba(44, 170, 223, 0.35);
  border-radius: 14px;
  background: rgba(44, 170, 223, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.home-why__footer:hover {
  border-color: rgba(44, 170, 223, 0.55);
  background: rgba(44, 170, 223, 0.12);
}

.home-why__footer-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  font-size: 22px;
}

.home-why__footer p {
  color: #4a6278;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.home-why__footer strong {
  color: #2caadf;
  font-weight: 700;
}

/* =========================================
   Section 12 — Start Your Journey
   ========================================= */
.home-start {
  padding:40px 40px;
  background: #ffffff;
}

.home-start__inner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
}

.home-start__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-start__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-start__inner:hover .home-start__bg {
  transform: scale(1.03);
}

.home-start__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 38%,
    rgba(255, 255, 255, 0.98) 44%,
    rgba(255, 255, 255, 0.82) 52%,
    rgba(255, 255, 255, 0.42) 60%,
    rgba(255, 255, 255, 0.1) 68%,
    transparent 76%
  );
}

.home-start__fade::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
}

.home-start__content {
    position: relative;
    z-index: 2;
    width: min(100%, 37%);
    padding: 48px 0 40px;
    padding-right: 20px;
}

.home-start__title {
  margin-bottom: 0;
}

.home-start__title span {
  display: block;
}

.home-start__title-dark {
  color: #000;
  font-size: 34px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.6px;
  max-width: 100%;
}

.home-start__title-blue {
  color: #2caadf;
  font-size: 40px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.6px;
  position: relative;
  z-index: 3;
  width: 190%;
  max-width: calc(100vw - 80px);
  margin-top: 4px;
}

.home-start__body {
  max-width: 100%;
  margin-top: 12px;
}

.home-start__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin-bottom: 16px;
}

.home-start__copy {
  color: #000;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 100%;
}
.home-start__copy p{
	margin-bottom:15px;
}
.home-start__copy:last-child {
  margin-bottom: 0;
}

/* =========================================
   Section 13 — FAQ
   ========================================= */
.home-faq {
  padding: 40px 40px;
	background:#a4cedf12;
}

.home-faq__head {
  text-align: center;
  margin-bottom: 42px;
}

.home-faq__title {
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.home-faq__line {
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: #2caadf;
  margin: 10px auto 0;
}

.home-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.home-faq__card {
 padding:10px;
}

.home-faq__card:hover {
  border-color: #b8d4e4;
}

.home-faq__item {
  width: 100%;
	border: 1px solid #d8e2ea;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px;
  cursor: pointer;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.home-faq__num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2caadf;
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

.home-faq__question {
  color: #2caadf;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.home-faq__chevron {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #2caadf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.home-faq__chevron svg {
  width: 100%;
  height: 100%;
}

.home-faq__item[open] .home-faq__chevron {
  transform: rotate(180deg);
}

.home-faq__answer {
  padding: 0 16px 16px 56px;
}

.home-faq__answer p {
  color: #000;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

/* =========================================
   Section 14 — Book Appointment CTA
   ========================================= */
.home-book {
  position: relative;
  padding: 60px 40px;
  overflow: hidden;
}

.home-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;
}

.home-book__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.home-book__info {
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.home-book__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.home-book__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  color: #2caadf;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.home-book__icon svg {
  width: 28px;
  height: 28px;
}

.home-book__title {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 0;
}

.home-book__copy {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 520px;
}

.home-book__form-wrap {
  padding-left: 48px;
}

.home-book__form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.home-book__form-title {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}

.home-book__logo {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-book__widget {
  min-height: 320px;
}



/* Footer mount — prevent horizontal overflow from map pins */
.site-footer-mount {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Footer css */

/* Shared layout + overflow guard */
#site-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.home-serve,
.home-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.home-serve__head,
.home-serve__map-inner,
.home-footer__main,
.home-footer__bar-inner {
  width: 100%;
  max-width: 1367px;
  margin: 0 auto;
  box-sizing: border-box;
}

.home-serve a,
.home-footer a {
  text-decoration: none;
  color: inherit;
}

.home-serve ul,
.home-footer ul {
  list-style: none;
  margin: 0;
}
/* =========================================
   Service Area Map
   ========================================= */
.home-serve {
  background: #ffffff;
  padding: 60px 0 0;
}

.home-serve__head {
  margin-bottom: 30px;
  padding: 40px 0 0 0;
}

.home-serve__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.home-serve__line {
  flex: 1 1 auto;
  max-width: 220px;
  height: 2px;
  background: #2caadf;
  border-radius: 2px;
}

.home-serve__title {
  color: #000;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.home-serve__title-accent {
  color: #2caadf;
}

.home-serve__map-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home-serve__map {
  width: 100%;
  height: 350px;
  z-index: 1;
  background: #eef6ea;
}

.home-serve__map .leaflet-container {
  background: #eef6ea;
  font-family: "Poppins", sans-serif;
}

.home-serve__map .leaflet-marker-pane {
  pointer-events: none;
}

.home-serve__map .home-serve__pin-link {
  pointer-events: auto;
}

.home-serve__map .leaflet-control-zoom {
  border: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.home-serve__map .leaflet-control-zoom a {
  color: #2caadf;
  font-weight: 700;
}

.home-serve__pin {
  background: transparent;
  border: 0;
}

.home-serve__pin-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.home-serve__pin-link:hover {
  transform: translateY(-2px);
}

.home-serve__pin-link:hover .home-serve__pin-label {
  color: #2caadf;
}

.home-serve__pin-icon {
  position: relative;
  width: 18px;
  height: 22px;
  flex: 0 0 auto;
  background: #9abe2c;
  border: 2px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transform: rotate(-45deg);
}

.home-serve__pin-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.home-serve__pin-label {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  text-shadow:
    -1px -1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff;
  transition: color 0.2s ease;
}

.home-serve__map-inner {
  position: absolute;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  padding: 28px 40px;
  pointer-events: none;
}

.home-serve__card {
  width: min(100%, 340px);
  padding: 22px 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
  display:none;
}

.home-serve__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.home-serve__card-head i {
  color: #9abe2c;
  font-size: 18px;
}

.home-serve__card-head h3 {
  color: #9abe2c;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-serve__card p {
  color: #000;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

/* =========================================
   Footer
   ========================================= */
.home-footer {
  background: #081620;
  color: #ffffff;
  width: 100%;
  padding:0 40px;
}

.home-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr) minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: 36px 28px;
  padding: 56px 0px 42px;
}

.home-footer__brand,
.home-footer__col {
  min-width: 0;
}

.home-footer__contact span,
.home-footer__contact a {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-footer__logo-link {
  display: inline-block;
  margin-bottom: 22px;
}

.home-footer__logo {
  width: auto;
  max-width: 100%;
  height: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 12px;
}

.home-footer__contact i {
  color: #2caadf;
  font-size: 32px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.home-footer__contact a:hover {
  color: #2caadf;
}

.home-footer__social-label {
  margin: 22px 0 20px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.88);
}

.home-footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.home-footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  font-size: 15px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.home-footer__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.home-footer__social-link--instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.home-footer__social-link--facebook {
  background: #1877f2;
}

.home-footer__social-link--youtube {
  background: #ff0000;
}

.home-footer__social-link--linkedin {
  background: #0a66c2;
}

.home-footer__social-link--google {
  background: #ffffff;
  color: #ea4335 !important;
}

.home-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: #2caadf;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-footer__cta:hover {
  background: #2399c8;
  transform: translateY(-1px);
}

.home-footer__cta i {
  font-size: 15px;
}

.home-footer__heading {
  color: #2caadf;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-footer__nav-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px 10px;
  align-items: start;
}

.home-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.home-footer__nav-block h4 {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 5px;
  padding-top: 20px;
}

.home-footer__nav-block ul {
  list-style: none;
}

.home-footer__nav-block li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
  line-height: 12px;
}

.home-footer__nav-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
}

.home-footer__nav-block a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  transition: color 0.2s ease;
}

.home-footer__nav-block a:hover {
  color: #2caadf;
}

.home-footer__conditions {
  list-style: none;
  display: grid;
  gap: 0px;
}

.home-footer__conditions li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}

.home-footer__condition-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #2caadf;
  font-size: 28px;
}

.home-footer__locations {
  list-style: none;
  display: grid;
  gap: 8px;
}

.home-footer__locations a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  transition: color 0.2s ease;
}

.home-footer__locations a i {
  color: #2caadf;
  font-size: 12px;
  flex: 0 0 auto;
}

.home-footer__locations a:hover {
  color: #2caadf;
}

.home-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 40px 24px;
}

.home-footer__bar-inner {
  display: flex;
      justify-content: space-between;
  align-items: start;
}

.home-footer__copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.home-footer__utility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.home-footer__utility a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  transition: color 0.2s ease;
}

.home-footer__utility a i {
  color: #2caadf;
  font-size: 12px;
}

.home-footer__utility a:hover {
  color: #2caadf;
}

.home-footer__hours h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2caadf;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.home-footer__hours h4 i {
  font-size: 13px;
}

.home-footer__hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
}

.home-footer__hours-col p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 2px;
}

.home-footer__hours-col span {
  display: inline-block;
  min-width: 28px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* =========================================
   Tablet
   ========================================= */
@media (min-width: 768px) and (max-width: 1024px) {
  .home-header {
    padding: 0 32px;
  }

  .home-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .home-header__toggle {
    display: inline-flex;
  }

  .home-header__menu {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(44, 170, 223, 0.15);
  }

  .home-header.is-open .home-header__menu {
    display: flex;
  }

  .home-logo__img {
    height: 64px;
    max-width: 200px;
  }

  .home-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .home-nav > a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
    white-space: normal;
  }

  .home-nav__dropdown {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .home-nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 13px;
    white-space: normal;
  }

  .home-nav__submenu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0 0 10px 14px;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .home-nav__submenu::after {
    display: none;
  }

  .home-nav__dropdown.is-open .home-nav__submenu {
    display: block;
  }

  .home-nav__dropdown:hover .home-nav__submenu {
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .home-nav__dropdown.is-open:hover .home-nav__submenu {
    display: block;
  }

  .home-nav__submenu a {
    padding: 10px 0;
    font-size: 13px;
    white-space: normal;
  }

  .home-nav__submenu a:hover {
    background: transparent;
  }

  .home-nav > a:last-child {
    border-bottom: 0;
  }

  .home-header__cta {
    width: 100%;
    margin-top: 12px;
    font-size: 11px;
    padding: 12px 18px;
    white-space: normal;
  }

  .home-hero__stage {
    min-height: auto;
    padding: 50px 32px;
    background-position: center top;
  }

  .home-hero__stage::before,
  .home-hero__stage::after {
    background: linear-gradient(
      to top,
      #ffffff 0%,
      rgba(255, 255, 255, 0.92) 35%,
      rgba(255, 255, 255, 0.55) 55%,
      rgba(255, 255, 255, 0) 75%
    );
    filter: none;
    width: 100%;
  }

  .home-hero__inner {
    min-height: auto;
    flex-direction: column;
  }

  .home-hero__content {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0 0 40px;
  }

  .home-hero__title {
    font-size: 40px;
    max-width: 100%;
  }

  .home-hero__copy {
    max-width: 100%;
  }

  .home-trust-wrap {
    margin-top: -40px;
    padding: 0 32px 40px;
  }

  .home-trust-bar {
    grid-template-columns: 1fr;
  }

  .home-trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(26, 58, 92, 0.09);
    align-items: center;
  }

  .home-trust-item:last-child {
    border-bottom: 0;
  }

  .home-services {
    padding: 60px 32px;
  }

  .home-services__hero {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .home-services__intro {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0;
  }

  .home-services__title {
    font-size: 38px;
  }

  .home-services__hero-media,
  .home-conditions__hero-media {
    flex: 0 0 auto;
    max-width: 100%;
    min-height: 280px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .home-services__hero-media::after,
  .home-conditions__hero-media::after {
    border-radius: 14px;
  }

  .home-services__hero-media img,
  .home-conditions__hero-media img {
    min-height: 280px;
    border-radius: 14px;
  }

 

  .home-svc-card {
    grid-template-columns: 34px minmax(0, 1fr) 40%;
    column-gap: 8px;
    height: 148px;
    padding: 0 0 0 12px;
  }

  .home-svc-card__icon {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .home-svc-card--cta {
    grid-template-columns: 34px minmax(0, 1fr);
    padding-right: 36%;
  }

  .home-services__bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
    margin-top: 14px;
    padding: 28px 24px;
  }

  .home-services-bar__item {
    padding: 0 16px;
  }

  .home-services-bar__item:nth-child(2) {
    border-right: 0;
  }

  .home-services-bar__item:nth-child(1),
  .home-services-bar__item:nth-child(2) {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .home-services-bar__item:nth-child(3) {
    padding-left: 0;
  }

  .home-welcome {
    padding: 60px 32px;
  }

  .home-welcome__title {
    font-size: 36px;
  }

  .home-welcome__subtitle {
    font-size: 16px;
  }

  .home-welcome__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-welcome__video {
    min-height: 280px;
  }

  .home-welcome__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
    padding: 24px 26px;
  }

  .home-welcome__feature {
    padding: 0 18px;
  }

  .home-welcome__feature:nth-child(2) {
    border-right: 0;
  }

  .home-welcome__feature:nth-child(1),
  .home-welcome__feature:nth-child(2) {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(44, 170, 223, 0.18);
  }

  .home-welcome__feature:nth-child(3) {
    padding-left: 0;
  }

  .home-conditions {
    padding: 60px 32px;
  }

  .home-conditions__hero {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .home-conditions__intro {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .home-conditions__title {
    font-size: 38px;
  }

 

  .home-conditions__banner-text {
    padding-right: 28%;
    font-size: 13px;
  }

    
 .home-header.is-open .home-header__inner {
    max-height: 100dvh;
    overflow: hidden;
  }
  .home-header.is-open .home-header__menu {
    min-height: 0;
    max-height: calc(100dvh - 130px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
  }

  .home-header.is-open .home-header__cta {
    width: 100%;
    align-self: stretch;
  }
    a.home-conditons {
    width: 50%;
    padding: 10px;
}
  .home-locations {
    padding: 52px 40px;
  }

  .home-advanced {
    padding: 52px 40px;
  }

  .home-advanced__title {
    font-size: 38px;
  }

  .home-advanced__copy {
    font-size: 14px;
  }

  .home-advanced__media,
  .home-advanced__media img {
    height: 480px;
    max-height: 480px;
  }

  .home-start {
    padding: 52px 40px;
  }

  .home-start__inner {
    min-height: 420px;
  }

  .home-start__title-dark,
  .home-start__title-blue {
    font-size: 36px;
  }

  .home-start__title-blue {
    width: 175%;
  }

  .home-start__copy {
    font-size: 14px;
  }
/* FAQ slow open/close */
.home-faq__chevron {
  display: inline-flex;
}
.home-faq__item[open] .home-faq__chevron {
  transform: rotate(180deg);
}
.home-faq__answer {
  will-change: height, opacity;
  overflow: hidden;
}

  .home-faq {
    padding: 56px 40px 48px;
  }

  .home-faq__title {
    font-size: 30px;
  }

  .home-faq__question {
    font-size: 15px;
  }

  .home-book {
    padding: 52px 40px;
  }

  .home-book__title {
    font-size: 26px;
  }

  .home-book__form-title {
    font-size: 24px;
  }

  .home-doctor {
    padding: 52px 40px;
  }

  .home-doctor__title {
    font-size: 38px;
  }

  .home-doctor__role {
    font-size: 17px;
  }

  .home-doctor__name {
    font-size: 21px;
  }

  .home-doctor__copy {
    font-size: 14px;
  }

  .home-journey {
    padding: 56px 40px 64px;
  }

  .home-journey__title {
    font-size: 36px;
  }

  .home-journey__subtitle {
    font-size: 15px;
  }

  .home-journey__main {
    gap: 28px;
  }

  .home-journey__media img {
    min-height: 420px;
    max-height: 560px;
  }

  .home-reviews {
    padding: 56px 40px;
  }

  .home-reviews__title,
  .home-accolades__title {
    font-size: 36px;
  }

  .home-accolades {
    padding: 56px 40px 64px;
  }

  .home-accolades__badges img {
    height: 100px;
    max-width: 100px;
  }

  .home-locations__title {
    font-size: 38px;
  }

  .home-locations__copy {
    font-size: 14px;
  }

  .home-locations__map {
    width: 150px;
  }

  .home-why {
    padding: 56px 40px 64px;
  }
a.home.services {
    width: 50%;
    padding: 15px;
}
  .home-why__top {
    min-height: 360px;
    padding: 40px 32px;
    border-radius: 12px 12px 0 0;
  }

  .home-why__intro {
    width: min(100%, 58%);
  }

  .home-why__title {
    font-size: 36px;
  }

  .home-why__ribbon span {
    font-size: 18px;
  }

  .home-why__lead {
    max-width: none;
  }

  .home-why__row {
    grid-template-columns: 60px minmax(0, 1fr) minmax(0, 42%);
    gap: 16px;
  }

  .home-why__icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .home-why__copy h3 {
    font-size: 16px;
  }

  .home-why__copy p {
    font-size: 13px;
  }

  .home-why__visual--awards img {
    height: 60px;
    max-width: 60px;
  }

  .home-why__visual--grid img {
    height: 110px;
  }

  .home-start {
    padding: 52px 32px;
  }

  .home-start__inner {
    min-height: 420px;
  }

  .home-start__content {
    width: min(100%, 48%);
    padding: 40px 0 36px;
    padding-right: 16px;
  }

  .home-start__title-dark {
    font-size: 30px;
  }

  .home-start__title-blue {
    font-size: 34px;
    width: 160%;
    max-width: calc(100vw - 64px);
  }

  .home-start__copy {
    font-size: 14px;
  }

  .home-faq {
    padding: 56px 32px 48px;
  }

  .home-faq__title {
    font-size: 30px;
  }

  .home-faq__question {
    font-size: 15px;
  }

  .home-book {
    padding: 52px 32px;
  }

  .home-book__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-book__info {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }
  
  .home-why__ribbon {
		margin-top: 0px;
  }

  .home-book__form-wrap {
    padding-left: 0;
  }

  .home-book__title {
    font-size: 26px;
  }

  .home-book__form-title {
    font-size: 24px;
  }

  .home-why__copy p {
    padding-right: 0;
    font-size: 16px;
  }

  .home-why__copy h3 {
    font-size: 20px;
  }

  .home-serve {
    padding: 52px 0 0;
  }

  .home-serve__head {
    padding: 0 32px;
    margin-bottom: 28px;
  }

  .home-serve__title {
    font-size: 26px;
  }

  .home-serve__map {
    height: 460px;
  }

  .home-serve__map-inner {
    padding: 24px 32px;
  }

  .home-serve__card {
    width: min(100%, 300px);
  }

  .home-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
    padding: 48px 0px 36px;
  }

  .home-footer__brand {
    grid-column: 1 / -1;
  }

  .home-footer__contact {
    font-size: 17px;
  }

  .home-footer__contact i {
    font-size: 26px;
  }

  .home-footer__bar {
    padding: 18px 32px 24px;
  }
}

/* =========================================
   Mobile
   ========================================= */
@media (max-width: 767px) {
	.home-trust-bar {
    margin-top: 0px;
}
  .home-header {
    padding: 0 20px;
  }
a.home-conditons {
    width: 100%;
    padding: 10px;
}
  .home-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
            padding-left: 0;
        padding-right: 0;
  }

  .home-logo__img {
    height: 58px;
    max-width: 180px;
  }

  .home-header__toggle {
    display: inline-flex;
  }

  .home-header__menu {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(44, 170, 223, 0.15);
  }

  .home-header.is-open .home-header__menu {
    display: flex;
  }

  .home-header.is-open .home-header__inner {
    max-height: 100dvh;
    overflow: hidden;
  }

  .home-header.is-open .home-header__menu {
    min-height: 0;
    max-height: calc(100dvh - 130px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
  }

  .home-header.is-open .home-header__cta {
    width: 100%;
    align-self: stretch;
  }

  .home-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .home-nav > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    white-space: normal;
    font-size: 14px;
  }

  .home-nav__dropdown {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .home-nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 14px;
    white-space: normal;
  }

  .home-nav__submenu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0 0 12px 14px;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .home-nav__submenu::after {
    display: none;
  }

  .home-nav__dropdown.is-open .home-nav__submenu {
    display: block;
  }

  .home-nav__dropdown:hover .home-nav__submenu {
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .home-nav__dropdown.is-open:hover .home-nav__submenu {
    display: block;
  }

  .home-nav__submenu a {
    padding: 10px 0;
    font-size: 13px;
    white-space: normal;
  }

  .home-nav__submenu a:hover {
    background: transparent;
  }

  .home-nav > a:last-child {
    border-bottom: 0;
  }

  .home-header__cta {
    width: 100%;
    margin-top: 14px;
    padding: 12px 16px;
    font-size: 12px;
    white-space: normal;
  }

  .home-hero__stage {
    min-height: auto;
    padding: 40px 20px;
    background-position: center center !important;
  }

  .home-hero__stage::before,
  .home-hero__stage::after {
    background: linear-gradient(
      to top,
      #ffffff 0%,
      rgba(255, 255, 255, 0.92) 38%,
      rgba(255, 255, 255, 0.55) 75%,
      rgba(255, 255, 255, 0) 90%
    );
    filter: none;
    width: 100%;
  }

  .home-hero__inner {
    min-height: auto;
    flex-direction: column;
  }

  .home-hero__content {
    flex: 0 0 auto;
    max-width: 100%;
    padding:0px;
  }

  .home-hero__kicker p {
    font-size: 13px;
    white-space: normal;
  }

  .home-hero__kicker span {
    flex: 0 0 32px;
    background-color: #ffffff;
  }

  .home-hero__title {
    font-size: 32px;
    max-width: 100%;
  }

  .home-hero__copy {
    font-size: 14px;
    max-width: 100%;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__btn {
    justify-content: center;
  }

  .home-trust-wrap {
    margin-top: 0px;
    padding: 0 20px 32px;
  }

  .home-trust-bar {
    grid-template-columns: 1fr;
	  padding:15px;
  }

	.home-trust-item {
		padding: 15px 15px;
		align-items: flex-start;
		border-right: 0;
		border-bottom: 2px solid rgba(26, 58, 92, 0.09);
		flex-direction: column;
	}

  .home-trust-item:last-child {
    border-bottom: 0;
  }

  .home-trust-item__body strong {
    font-size: 16px;
  }

  .home-services {
    padding: 40px 20px;
  }
	.home-journey__kicker {
		gap: 3px !important;
		flex-wrap: wrap;
	}
  .home-services__hero {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .home-services__intro {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0;
  }

  .home-services__title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .home-services__copy {
    font-size: 14px;
  }

  .home-services__hero-media,
  .home-conditions__hero-media {
    flex: 0 0 auto;
    max-width: 100%;
    min-height: 240px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .home-services__hero-media::after,
  .home-conditions__hero-media::after {
    border-radius: 12px;
  }

  .home-services__hero-media img,
  .home-conditions__hero-media img {
    min-height: 240px;
    border-radius: 12px;
  }


  .home-svc-card {
    grid-template-columns: 32px minmax(0, 1fr) 38%;
    column-gap: 8px;
    height: auto;
    min-height: 140px;
    max-height: none;
    padding: 0 0 0 12px;
  }

  .home-svc-card__icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .home-cond-card__list li {
    font-size: 14px;
}
.home-cond-card__head h3 {
    font-size: 16px;
}
  .home-svc-card__body h3 {
    font-size: 16px;
  }

  .home-svc-card__body p {
    font-size: 14px;
    -webkit-line-clamp: 5;
  }

  .home-svc-card--cta {
    grid-template-columns: 32px minmax(0, 1fr);
    padding-right: 34%;
  }

  .home-services__bar {
    grid-template-columns: 1fr;
    margin-top: 12px;
    padding: 24px 20px;
  }

  .home-services-bar__item {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .home-services-bar__item:first-child {
    padding-top: 0;
  }

  .home-services-bar__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .home-services-bar__icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .home-services-bar__text strong {
    font-size: 13px;
  }

  .home-welcome {
    padding: 40px 20px;
  }

  .home-welcome__kicker span {
    flex: 0 0 32px;
  }

  .home-welcome__kicker p {
    font-size: 11px;
  }

  .home-welcome__title {
    font-size: 28px;
  }

  .home-welcome__subtitle {
    font-size: 15px;
  }

  .home-welcome__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-welcome__video {
    min-height: 220px;
  }

  .home-welcome__timeline {
    gap: 22px;
  }

  .home-welcome__timeline::before {
    left: 23px;
    top: 46px;
    bottom: 46px;
  }

  .home-welcome__step-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .home-welcome__step p {
    font-size: 13px;
    line-height: 1.65;
  }

  .home-welcome__features {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
    padding: 22px 20px;
    border-radius: 16px;
  }

  .home-welcome__feature {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(44, 170, 223, 0.18);
  }

  .home-welcome__feature:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .home-welcome__feature-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .home-welcome__feature-body h3 {
    font-size: 15px;
  }

  .home-welcome__feature-body p {
    font-size: 12px;
  }

  .home-conditions {
    padding: 40px 20px;
  }

  .home-conditions__hero {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .home-conditions__intro {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .home-conditions__title {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .home-conditions__copy {
    font-size: 14px;
  }

  

  .home-cond-card__media {
    height: 120px;
  }

  .home-cond-card__media--grid {
    height: 120px;
  }

  .home-conditions__banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
  }

  .home-conditions__banner-text {
    padding-right: 0;
    font-size: 13px;
  }

  .home-conditions__banner-spine {
    right: 4px;
    height: 88%;
    max-width: 42%;
    min-width: 64px;
    opacity: 0.38;
  }

    .home-footer__bar-inner {
    flex-wrap: wrap;
}
    a.home.services {
    width: 100%;
}
  .home-locations {
    padding: 40px 20px;
  }

  .home-locations__inner {
    flex-direction: column;
    gap: 20px;
  }

  .home-locations__content {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0;
  }

  .home-locations__title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .home-locations__copy {
    font-size: 14px;
  }

  .home-locations__panel {
    gap: 14px;
    margin: 12px 0 10px;
  }

  .home-locations__map {
    width: 128px;
  }

  .home-locations__media {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    min-height: 300px;
    max-height: 360px;
  }

  .home-locations__media::after {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 8%, rgba(255, 255, 255, 0) 18%);
  }

  .home-locations__media img {
    object-position: center;
  }

  .home-advanced {
    padding: 40px 20px;
  }

  .home-advanced__inner {
    flex-direction: column;
    gap: 20px;
  }

  .home-advanced__content {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0;
  }

  .home-advanced__title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .home-advanced__copy {
    font-size: 14px;
  }

  .home-advanced__media {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: 300px;
    max-height: 360px;
  }

  .home-advanced__media::after {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 8%, rgba(255, 255, 255, 0) 18%);
  }

  .home-advanced__media img {
    height: 300px;
    max-height: 360px;
    object-position: center;
  }

  .home-start {
    padding: 48px 20px;
  }

  .home-start__inner {
    padding: 32px 20px 240px;
  }

  .home-start__fade {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.95) 38%,
      rgba(255, 255, 255, 0.55) 58%,
      transparent 78%
    );
  }

  .home-start__fade::before {
    width: 100%;
    height: 58%;
    mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
  }

  .home-start__content {
    width: 100%;
    padding: 0;
  }

  .home-start__title-dark,
  .home-start__title-blue {
    font-size: 28px;
  }

  .home-start__title-blue {
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
  }

  .home-start__body {
    margin-top: 10px;
  }

  .home-start__line {
    width: 56px;
    margin-bottom: 12px;
  }

  .home-start__copy {
    font-size: 14px;
  }

  .home-faq {
    padding: 48px 20px 40px;
  }

  .home-faq__head {
    margin-bottom: 28px;
  }

  .home-faq__title {
    font-size: 26px;
  }

  .home-faq__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-faq__item summary {
    padding: 16px 14px;
  }

  .home-faq__question {
    font-size: 14px;
  }

  .home-faq__answer {
    padding: 0 14px 14px 50px;
  }

  .home-book {
    padding: 48px 20px;
  }

  .home-book__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-book__info {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .home-book__form-wrap {
    padding-left: 0;
  }

  .home-book__form-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .home-book__title {
    font-size: 24px;
  }

  .home-book__form-title {
    font-size: 22px;
  }

  .home-book__widget {
    min-height: 240px;
  }

  .home-doctor {
    padding: 40px 20px;
  }

  .home-doctor__inner {
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }

  .home-doctor__media {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .home-doctor__media img {
    max-height: 420px;
  }

  .home-doctor__content {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0;
  }

  .home-doctor__title {
    font-size: 30px;
  }

  .home-doctor__role {
    font-size: 16px;
  }

  .home-doctor__name {
    font-size: 20px;
  }

  .home-doctor__copy {
    font-size: 14px;
  }

  .home-doctor__badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .home-journey {
    padding: 40px 20px;
  }

  .home-journey__kicker span {
    flex-basis: 36px;
  }

  .home-journey__kicker p {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .home-journey__title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .home-journey__subtitle {
    font-size: 14px;
  }

  .home-journey__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-journey__media {
    border-radius: 28px;
  }

  .home-journey__media img {
    min-height: 320px;
    max-height: 420px;
  }

	.home-journey__overlay {
		left: 50%;
		right: auto;
		bottom: 18px;
		transform: translateX(-50%);
		width: calc(100% - 32px);
		padding: 14px 16px;
		border-radius: 20px;
		flex-direction: column;
		align-items: self-start;
	}

  .home-journey__overlay-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .home-journey__overlay-body strong {
    font-size: 14px;
  }

  .home-journey__timeline::before {
    left: 23px;
    top: 24px;
    bottom: 24px;
  }

  .home-journey__step-marker {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .home-journey__step-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .home-journey__step-marker-num {
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .home-journey__step-body {
    padding: 12px 14px;
    min-height: 64px;
  }

  .home-journey__step::before,
  .home-journey__step::after {
    border-radius: 16px;
  }

  .home-journey__step::after {
    border-radius: 0 16px 16px 0;
  }

  .home-journey__step-num {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .home-journey__step-copy h3 {
    font-size: 14px;
  }

  .home-journey__step-copy p {
    font-size: 12px;
  }

  .home-reviews {
    padding: 40px 20px;
  }

  .home-reviews__title,
  .home-accolades__title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .home-reviews__intro,
  .home-accolades__intro {
    font-size: 14px;
  }

  .home-reviews__widget {
    min-height: 220px;
  }

  .home-accolades {
    padding: 40px 20px;
  }

  .home-accolades__head {
    margin-bottom: 28px;
  }

  .home-accolades__badges {
    gap: 16px 18px;
  }

  .home-accolades__badges img {
    height: 88px;
    max-width: 88px;
  }

  .home-why {
    padding: 40px 20px;
  }
  .home-why__top {
    min-height: auto;
	  padding:0px;
	  flex-direction:column;
	  row-gap:10px;
  }
	.home-why__top-bg {
        position: relative;
        border-radius: 10px;
        width: 100%;
    }
  .home-why__top-fade {
	  display:none;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.95) 38%,
      rgba(255, 255, 255, 0.55) 58%,
      transparent 78%
    );
  }

  .home-why__top-fade::before {
    width: 100%;
    height: 58%;
    mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
  }

  .home-why__intro {
    width: 100%;
  }

  .home-why__title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .home-why__title-line {
    width: 56px;
    margin-bottom: 12px;
  }

  .home-why__lead {
    font-size: 14px;
    max-width: none;
  }

  .home-why__ribbon {
    min-height: 50px;
    margin-bottom: 24px;
    padding: 0 20px;
    border-radius: 0 20px 0 0;
  }

  .home-why__ribbon span {
    font-size: 16px;
  }

  .home-why__rows {
    gap: 24px;
	  padding-top:0px;
  }

  .home-why__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-why__row:hover {
    transform: none;
  }

  .home-why__icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .home-why__copy h3 {
    font-size: 16px;
  }

  .home-why__copy p {
    font-size: 13px;
  }

  .home-why__visual--awards {
    min-height: auto;
    padding: 0;
  }

  .home-why__visual--awards img {
    height: 56px;
    max-width: 56px;
  }

  .home-why__visual--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-why__visual--grid img {
    height: 100px;
  }

  .home-why__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
  }

  .home-why__footer p {
    font-size: 13px;
  }

  .home-why__visual,
  .home-why__visual--grid,
  .home-journey__media,
  .home-journey__step-body {
    max-width: 100%;
  }

  .home-why__ribbon span {
    white-space: normal;
  }

	.home-hero__kicker{
		color:#ffffff;
	}
  .home-start {
    padding: 40px 20px;
  }

	.home-start__inner {
		padding: 0;
		flex-direction: column;
		row-gap: 20px;
	}

  .home-start__fade {
	  display:none;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.95) 38%,
      rgba(255, 255, 255, 0.55) 58%,
      transparent 78%
    );
  }
	.home-start__bg {
		max-height: 400px;
		width: 100%;
        object-fit: cover;
        border-radius: 20px;
	}
  .home-start__fade::before {
    width: 100%;
    height: 58%;
    mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 100%);
  }

  .home-start__content {
    width: 100%;
    padding: 0;
  }
	.home-start__media{
		position:relative;
		width: 100%;
	}
  .home-start__title-dark,
  .home-start__title-blue {
    font-size: 26px;
  }

  .home-start__title-blue {
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
  }

  .home-start__body {
    margin-top: 10px;
  }

  .home-start__line {
    width: 56px;
    margin-bottom: 12px;
  }

  .home-start__copy {
    font-size: 14px;
  }

  .home-faq {
    padding: 40px 10px;
  }

  .home-faq__head {
    margin-bottom: 28px;
  }

  .home-faq__title {
    font-size: 26px;
  }

  .home-faq__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-faq__item summary {
    padding: 16px 14px;
  }

  .home-faq__question {
    font-size: 14px;
  }

  .home-faq__answer {
    padding: 0 14px 14px 50px;
  }

  .home-book {
    padding: 48px 20px;
  }

  .home-book__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-book__info {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .home-book__form-wrap {
    padding-left: 0;
  }

  .home-book__form-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .home-book__head {
    flex-wrap: wrap;
  }

  .home-book__title {
    font-size: 24px;
  }

  .home-book__form-title {
    font-size: 22px;
  }

  .home-book__widget {
    min-height: 240px;
  }

  .home-svc-card {
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-rows: auto auto;
    height: auto;
    min-height: auto;
    padding: 14px 12px 14px 12px;
    row-gap: 10px;
  }

  .home-svc-card__media {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 120px;
    border-radius: 0 0 8px 8px;
  }

  .home-svc-card__media img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }

  .home-svc-card--cta {
    grid-template-columns: 32px minmax(0, 1fr);
    padding-right: 12px;
  }

  .home-svc-card--cta .home-svc-card__media {
    display: none;
  }

  .home-why__copy p {
    padding-right: 0;
    font-size: 15px;
  }

  .home-why__copy h3 {
    font-size: 18px;
  }

  .home-why__ribbon {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
	  margin-top:20px;
	  border-radius:10px;
  }

	.home-why__visual img {
		height: auto;
		min-height: 56px;
	}

  .home-why__visual--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-why__visual--grid img {
    height: 100px;
  }

  .home-serve {
    padding: 40px 20px;
  }

  .home-serve__head {
    margin-bottom: 24px;
    padding: 0 20px;
  }

  .home-serve__title-wrap {
    flex-direction: column;
    gap: 12px;
  }

  .home-serve__line {
    display: none;
  }

  .home-serve__title {
    font-size: 22px;
  }

  .home-serve__map-wrap {
    display: flex;
    flex-direction: column;
  }

  .home-serve__map-inner {
    position: relative;
    inset: auto;
    order: 1;
    align-items: stretch;
    padding: 0 20px 16px;
    pointer-events: auto;
  }

  .home-serve__map {
    order: 2;
    height: 320px;
    overflow: hidden;
  }

  .home-serve__map .leaflet-container {
    overflow: hidden;
  }

  .home-serve__pin-label {
    display: none;
  }

  .home-serve__card {
    width: 100%;
    max-width: none;
  }

  .home-serve__card-head h3 {
    font-size: 16px;
  }

  .home-serve__card p {
    font-size: 13px;
  }

  .home-footer {
    width: 100%;
    overflow-x: clip;
    padding:0 20px;
  }

  .home-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 40px 0px 32px;
  }

  .home-footer__brand,
  .home-footer__col {
    width: 100%;
    min-width: 0;
  }

  .home-footer__logo {
    height: 72px;
    max-width: 220px;
  }

  .home-footer__contact {
    font-size: 15px;
    line-height: 1.5;
  }

  .home-footer__contact i {
    font-size: 22px;
  }

  .home-footer__social-label {
    font-size: 14px;
    margin: 18px 0 14px;
  }

  .home-footer__cta {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    font-size: 11px;
    text-align: center;
    box-sizing: border-box;
  }

  .home-footer__heading {
    font-size: 13px;
  }

  .home-footer__nav-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-footer__nav-block li {
    line-height: 1.45;
    margin-bottom: 4px;
  }

  .home-footer__nav-block a {
    font-size: 13px;
  }

  .home-footer__conditions li {
    font-size: 14px;
  }

  .home-footer__condition-icon {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .home-footer__locations a {
    font-size: 13px;
    padding: 4px 0;
  }

  .home-footer__bar {
    padding: 16px 20px 22px;
  }


  .home-footer__copy {
    font-size: 13px;
  }

  .home-footer__utility {
            align-items: flex-start;
        padding-top: 20px;
        gap: 10px;
  }

  .home-footer__utility a {
    font-size: 13px;
  }

  .home-footer__hours h4 {
    font-size: 14px;
  }

  .home-footer__hours-col p {
    font-size: 11px;
  }

  .home-footer__hours-grid {
    grid-template-columns: 1fr;
  }
}
