@import url(bootstrap-5.3.8.min.css);

/* Intel Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* DM Serif Display Font Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

/* CSS Variables */
:root {
  /* Font Families */
  --font-intel: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-dm-serif: 'DM Serif Display', Georgia, 'Times New Roman', Times, serif;

  /* Colors */
  --color-white: #ffffff;
  --color-heading: #101219;
  --color-text: #4d5874;
  --color-dark-green: #10393e;
  --colors-text-text-tertiary-600: #475467;
  --accent-brand-primary-50: #668364;
  /* Button Colors */
  --button-primary-bg: rgba(102, 131, 100, 1);
  --button-primary-bg-hover: #5a7458;
  --button-primary-text: #ffffff;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 100px;

  /* background color */
  --accent-brand-primary-5: #f5f8f5;
  --Colors-Brand-20: #d4dfd3;
  --bg-base-green: #10393e;

  /* padding */
  --padding-96: 96px 14px;
  --padding-135: 135px 14px;
  --padding-60: 60px 14px;
}

.fade {
  opacity: inherit !important;
}

/* Intel Font Utility Classes */
.font-intel {
  font-family: var(--font-intel) !important;
}

/* DM Serif Display Font Utility Classes */
.font-dm-serif {
  font-family: var(--font-dm-serif) !important;
}

.font-dm-serif-normal {
  font-style: normal !important;
}

.font-dm-serif-italic {
  font-style: italic !important;
}

.dm-style-text {
  font-family: var(--font-dm-serif) !important;
  font-style: italic !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F5F8F5 !important;
  overflow: auto;
}

body .container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.padding-135 {
  padding: var(--padding-135);
}

body .padding-bottom-64 {
  padding-bottom: 64px;
}

.padding-top-64 {
  padding-top: 64px;
}

.margin-top-64 {
  margin-top: 64px;
}

body .margin-bottom-96 {
  margin-bottom: 96px;
}

.padding-left-14 {
  padding-left: 40px;
}

.padding-right-14 {
  padding-right: 40px;
}

.margin-left-24 {
  margin-left: 40px;
}

.margin-right-24 {
  margin-right: 40px;
}

.heading-h1 {
  font-family: var(--font-intel) !important;
  font-weight: 500;
  font-size: 62px;
  line-height: 76px;
  letter-spacing: -0.8px;
  color: var(--color-white) !important;
}

.heading-h2 {
  font-family: var(--font-intel) !important;
  color: var(--color-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
}

.heading-h3 {
  font-family: var(--font-intel) !important;
  color: var(--color-heading);
  font-weight: 600;
  font-size: 32px;
  line-height: 35px;
  letter-spacing: -0.64px;
}

.heading-h4 {
  font-family: var(--font-intel) !important;
  color: var(--color-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}

.heading-h6 {
  font-family: var(--font-intel) !important;
  color: var(--Base-Text, #4d5874);

  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.heading-h6-bold {
  font-family: var(--font-intel) !important;
  color: var(--Base-Text, #4d5874);
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}

.text-sm-medium {
  color: var(--color-dark-green);
  font-family: var(--font-intel) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.text-xl-Semibold {
  color: var(--Base-Heading, #101219);
  font-family: var(--font-intel);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.text-subtitle-regular {
  color: var(--Base-Text, #4d5874);
  font-family: var(--font-intel);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.14px;
  text-align: start;
}

.text-base-regular {
  color: var(--Base-Text, #4d5874);
  font-family: var(--font-intel);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.text-base-regular-bold {
  color: var(--Base-Text, #4d5874);
  font-family: var(--font-intel);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.contact-network-form {
  background: white;
  padding: 24px;
  border-radius: 20px;
  background: #FFF;
}

.contact-network-modal-footer {
  /* background-color: #EAEFE9;
   */
}

html body .black-color {
  color: var(--Base-text, #101219) !important;
}

html body .white-color {
  color: var(--color-white);
}

html body .white-dim {
  color: rgba(255, 255, 255, 0.8);
}

hmtl body ui-color {
  color: #454546;
}

.primary-button {
  color: var(--button-primary-text);
  background-color: var(--button-primary-bg);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.1px;
  font-family: var(--font-intel);
  border-radius: var(--radius-full);
  padding: 15px 30px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

.primary-button:hover {
  background-color: var(--button-primary-bg-hover);
  color: var(--button-primary-text);
}

.primary-button-invert,
button.primary-button-invert {
  color: var(--button-primary-text);
  background-color: var(--button-primary-bg);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.1px;
  font-family: var(--font-intel);
  border-radius: var(--radius-full);
  padding: 15px 30px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.primary-button-invert:hover,
button.primary-button-invert:hover {
  background-color: var(--button-primary-text);
  color: var(--button-primary-bg-hover);
}

.primary-button-outline {
  color: var(--button-primary-text);
  background-color: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.1px;
  font-family: var(--font-intel);
  border-radius: var(--radius-full);
  padding: 15px 30px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

.secondary-button {
  color: var(--color-white);
  background-color: var(--color-dark-green);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.1px;
  font-family: var(--font-intel);
  border-radius: var(--radius-full);
  padding: 15px 30px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

.secondary-button:hover {
  background-color: var(--color-white);
  color: var(--color-dark-green);
}

.secondary-button-invert {
  color: var(--accent-brand-primary-50);
  background-color: var(--button-primary-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.1px;
  font-family: var(--font-intel);
  border-radius: var(--radius-full);
  padding: 15px 30px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

.secondary-button-invert:hover {
  background-color: var(--color-heading);
  color: var(--button-primary-text);
}

.green-button,
a.green-button {
  color: var(--color-white) !important;
  background-color: var(--bg-base-green) !important;
  border: 1px solid var(--bg-base-green) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.12px;
  font-family: var(--font-intel);
  border-radius: var(--radius-full);
  padding: 10px 30px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-button:hover,
a.green-button:hover {
  border: 1px solid #4b5b67;
  background-color: transparent;
  color: #4b5b67;
}

.green-button-invert {
  border: 1px solid #4b5b67;
  background-color: transparent;
  color: #4b5b67;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.12px;
  font-family: var(--font-intel);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

.green-button-invert:hover {
  color: var(--color-white);
  background-color: var(--bg-base-green);
  border: 1px solid var(--bg-base-green);
}

h3,
h2 {
  margin: 0;
}

/* Home Page */
section {
  margin: 0px;
}

.partners-grid {
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 0 0 24px 24px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;

  @media screen and (max-width: 768px) {
    padding: 24px 16px;
  }

  .partner-logo {
    width: 100%;
    max-width: 162px;

    @media screen and (max-width: 768px) {
      img {

        width: 100px;
      }
    }
  }
}

.primary-button-outline:hover {
  background-color: transparent;
  color: var(--color-white);
}

section.insurance-partners {
  padding: 0px 40px 12px 40px;
  max-width: 1440px;
  margin-inline: auto;

  @media screen and (max-width: 768px) {
    padding: 0px 16px 12px 16px;
  }
}

.partners-logos-desktop {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 48px;
  align-items: center;

  @media screen and (max-width: 992px) {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  @media screen and (min-width: 993px) and (max-width: 1024px) {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.see-all-link {
  color: var(--Base-Heading, #101219);
  font-family: var(--font-intel);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
}

.approch-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach-card {
  border-radius: 24px;
  border: 1px solid var(--Neutral-Grey-70, #d1d1d1);
  padding: 21px;
}

p.text-base-regular {
  margin-bottom: 0px;
  margin-top: 8px;
}

.approach-icon {
  margin-bottom: 40px !important;
}

.padding96 {
  padding: var(--padding-96);
}

.our-services {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;

  @media screen and (max-width: 768px) {
    padding: 0 16px;
  }
}

/* services */
.services {
  padding: 96px 40px;
  border-radius: 24px;
  color: var(--color-white);

}

.services h2,
.services h3 {
  color: var(--color-white);
}

.services p {
  color: var(--color-white);
  opacity: 0.8;
}

.green-bg {
  background-color: var(--bg-base-green);
}

.service-content {
  margin: 20px 0px;
}

.services-header h2 {
  margin-top: 12px;
  margin-bottom: 20px;
}

.align-middle-header {
  display: flex;
  align-items: center;
}

a.service-link {
  color: white;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 600;
}

.badge-text {
  display: inline-block;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.00);
  color: white;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: var(--font-intel) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.badge-text-green {
  display: inline-block;
  background: rgb(15 57 62 / 7%);
  color: var(--color-dark-green);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: var(--font-intel) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0px;
  max-width: fit-content;
  margin: 0 auto;
}

.provider-name {
  color: var(--Base-Heading, #101219);
  font-family: var(--font-intel);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  /* 114.286% */
  letter-spacing: -0.2px;
}

.provider-title {
  color: var(--Base-Heading, #101219);
  font-family: var(--font-intel);
  font-size: 18px;
  margin-bottom: 1px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.provider-background {
  color: var(--Base-text, #4d5874);
  font-family: var(--font-intel);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0px;
  line-height: 24px;
}

.head-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.provider-image img {
  display: block;
  width: 100%;
}

.provider-card {
  /* background-color: #fff; */
  border-radius: 0px 0px 24px 24px;
  position: relative;
}

.provider-image {
  height: 540px;
  width: 100%;
  border-radius: 24px 24px 0px 0px;
  display: block;
}

.provider-image {
  background-color: #D8D1CB;
  overflow: hidden;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  border-radius: 24px;

}


.provider-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  display: block;
}

.provider-content {
  padding: 32px 24px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 36.54%);
  backdrop-filter: blur(4px);
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 100%;
}

.providers-grod .row {
  row-gap: 32px;
  display: flex;
  flex-wrap: wrap;
}

.homeproviders {
  .provider-card-item {
    display: grid;
    margin-bottom: 32px;
  }
}

.home-cta {
  margin: 100px;
  border-radius: 24px;
}

@media (max-width: 768px) {
  .home-cta {
    margin: 0px 16px 16px 16px !important;
  }
}

.greenGradient {
  background: linear-gradient(85deg, #668364 0%, #10393e 100%);
}

.greenGradient h2,
.greenGradient p {
  color: var(--color-white);
}

.cta-content-right p {
  margin-bottom: 20px;
}

.cta-card {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.customfaq-button .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  padding: 24px;
}

.customfaq-button button.accordion-button.collapsed {
  padding: 24px;
}

.customfaq-button button.accordion-button {
  color: var(--Base-Heading);
  font-family: var(--font-intel);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
}

.accordion-button:not(.collapsed)::after {
  background-image: url('/static/web/images/minus-icon.svg');

}

.accordion-button::after {
  background-image: url('/static/web/images/plus-icon.svg');
}

.customfaq-button .accordion-body {
  padding: 0px 24px 24px 24px;
  color: var(--colors-text-text-tertiary-600);
  font-family: var(--font-intel);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.customfaq-button button.accordion-button.collapsed {
  border-radius: 16px !important;
}

.customfaq-button .accordion-item {
  border: 0px;
  border-radius: 16px;
}

.reviews {
  border-radius: 24px;
  margin-left: 24px;
  margin-right: 24px;
}

/* home page banner */
.home-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;

  @media screen and (max-width: 768px) {
    height: 60vh;
  }
}

.home-hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: 40px;
  padding-block: 8px;

  @media (max-width: 768px) {
    padding-inline: 16px;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  background:
    linear-gradient(0deg, rgba(16, 57, 62, 0.4) 0%, rgba(16, 57, 62, 0.4) 100%),
    url('../images/assets/herobanner.jpg') lightgray -30px -224.922px / 109.559% 133.889% no-repeat;

  mix-blend-mode: multiply;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/index-bg.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%); */
  display: flex;
  align-items: center;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);

  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 80px;

  @media (max-width: 768px) {
    padding: 20px 40px;
  }

}

.insurance-badge {
  margin-bottom: 20px;
}

.hero-title {
  margin-top: 20px;
  margin-bottom: 25px;
}

.hero-title .font-dm-serif {
  font-style: italic;
  font-weight: 400;
  color: while;
  font-family: var(--font-dm-serif) !important;
}

.hero-description {
  font-size: 20px;
  color: white;
  line-height: 32px;
  margin-bottom: 48px;
  font-family: var(--font-intel) !important;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.hero-btn-primary {
  background-color: #bacbb9;
  border-color: #bacbb9;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.hero-btn-primary:hover {
  background-color: #8fa8b5;
  border-color: #8fa8b5;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-secondary:hover {
  background-color: white;
  color: #454545;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary i {
  font-size: 14px;
  transform: rotate(45deg);
}

.services-header p.text-subtitle-regular {
  margin-bottom: 0px;
}

.cta {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.border-radius-24 {
  border-radius: 24px;
}

.sBox {
  display: flex;
  /* width: 177px; */
  height: 170px;
  padding: var(--spacing-3xl, 24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: rgba(16, 57, 62, 0.50);
  text-align: center;
}

.sBox-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.services-hero-card {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.services-hero-card p.text-subtitle-regular.tt {
  margin-top: 40px;
  margin-bottom: 24px;
}

.innerBannerSection p.text-subtitle-regular.tt {
  margin-bottom: 0;
}

.innerBannerSection h1.heading-h1 {
  margin-top: 14px;
}

a.boxTag {
  padding: 0;
  text-decoration: none;
}

.customfaq-button {
  margin-bottom: 20px;
}

.padding-top-zero {
  padding-top: 0px;
}

.partner-hero-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* .hero-content-partner
{
  padding: 80px;
} */
.arrowButton {
  display: flex;
  gap: 8px;
}

.logos-grid img {
  display: block;
  width: 100%;
}

.approach-card-partner {
  border-radius: 24px;
  border: 1px solid var(--Neutral-Grey-70, #d1d1d1);
  padding: 24px;
  height: 100%;
  background-color: #ffffff;
}

section.approch {
  background-color: #F5F8F5;
}

.bg-white-box {
  background-color: var(--color-white);
  color: var(--color-heading);
  border-radius: 16px;
  padding: 24px;
}

.bg-white-box p {
  color: var(--color-text);
}

.ctacall {
  padding: 24px 12px;
  background-color: var(--Colors-Brand-20);
  border-radius: 16px;
  max-width: 1230px;
  margin: 0 auto;
  margin-top: 32px;
}

.support .badge-text {
  background-color: #10393E;
  color: white;
  border: none;
}

.partner-metrics-grid {
  background-color: var(--Colors-Brand-20);
  padding: 24px;
  border-radius: 16px;
}

.metric-card {
  background-color: var(--accent-brand-primary-5);
  padding: 24px;
  border-radius: 16px;
}

.metric-card .heading-h3 {
  color: var(--accent-brand-primary-50);
}

.metric-card .text-sm-medium {
  color: var(--colors-text-text-tertiary-600);
}

.bg-soft-green {
  border-radius: var(--radius-full, 9999px);
  border: 1px solid var(--Component-colors-Utility-Success-utility-success-200, #abefc6);
  background: var(--Component-colors-Utility-Success-utility-success-50, #ecfdf3);
}

.bg-soft-blue {
  border-radius: var(--radius-full, 9999px);
  border: 1px solid var(--Component-colors-Utility-Blue-utility-blue-200, #b2ddff);
  background: var(--Component-colors-Utility-Blue-utility-blue-50, #eff8ff);
}

.bg-soft-purple {
  border-radius: var(--radius-full, 9999px);
  border: 1px solid var(--Component-colors-Utility-Purple-utility-purple-200, #d9d6fe);
  background: var(--Component-colors-Utility-Purple-utility-purple-50, #f4f3ff);
}

.metric-card span.badge {
  font-size: 12px;
  line-height: 16px;
}

.partner-metrics-grid .text-xl-Semibold {
  color: var(--Colors-Base-Dark-Green2, #13474d);
  font-weight: 500;
}

span.icon-size {
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-text p.hero-description.white-dim {
  margin-bottom: 24px;
}

.pilinner {
  border-radius: 100px;
  border: 1px solid var(--Component-Button-button-tertiary-border, #728e9e);
  padding: 10px 17px;
}

.pills-icons {
  margin-bottom: 32px;
}

.supportPractice .approach-icon {
  margin-bottom: 64px;
}

.testimonial-card {
  background-color: var(--Colors-Brand-20);
  border-radius: 24px;
  padding: 24px;
}

.reviewProviders .owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.reviewProviders .owl-carousel .owl-item {
  display: flex;
  height: auto;
}

.reviewProviders .testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.reviewProviders .testimonial-card .row {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.reviewProviders .testimonial-card .row.align-items-center {
  align-items: flex-start !important;
}

.reviewProviders .testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.reviewProviders .testimonial-body {
  flex: 1;
}

img.revimg {
  height: 552px;
  object-fit: cover;
  object-position: top;
}

/* Responsive Design */
/* ============================================================== */
/* ============================================================================================================================ */

@media (max-width: 1024px) {
  .sBox-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hide filter bar row on mobile */
  /* .row.g-2.flex-nowrap {
    display: none !important;
  } */

  .sBox-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    text-align: center;
  }

  body .margin-bottom-96 {
    margin-bottom: 60px;
  }

  .cta-content-right p {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .padding96 {
    padding: var(--padding-60);
  }

  .services-header {
    text-align: center;
  }

  body .text-end {
    text-align: center !important;
  }

  .services-header h2 {
    margin-bottom: 16px;
  }

  .padding-bottom-64 {
    padding-bottom: 60px !important;
  }

  .heading-h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .heading-h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .provider-name {
    font-size: 24px;
    line-height: 32px;
  }

  .provider-background {
    font-size: 14px;
    line-height: 22px;
  }

  .providers-grod .row {
    row-gap: 24px;
  }

  .text-subtitle-regular {
    font-size: 16px;
    line-height: 22px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .margin-left-24 {
    margin-left: 16px;
  }

  .margin-right-24 {
    margin-right: 16px;
  }

  .padding-left-14 {
    padding-left: 16px;
  }

  .padding-right-14 {
    padding-right: 16px;
  }

  .sBox {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    padding: 8px 16px;
    justify-content: start;
    gap: 16px;
    align-self: stretch;
    border-radius: 12px;
    background: rgba(16, 57, 62, 0.50);
  }

  .sBox .iconBox {
    width: 24px;
    height: 24px;
  }

  .sBox .iconBox svg {
    width: 24px;
    height: 24px;
  }

  /* Made for You Section Mobile */
  .made-for-you-section {
    padding: 24px 16px;
    margin-bottom: 24px;
  }

  .made-for-you-section .container {
    padding: 0;
  }

  .made-for-you-content {
    gap: 12px;
  }

  .made-for-you-tag {
    font-size: 12px;
    padding: 4px 10px;
  }

  .made-for-you-headline {
    font-size: 24px;
    line-height: 32px;
  }

  .made-for-you-description {
    font-size: 14px;
    line-height: 20px;
  }

  .view-full-directory-link {
    font-size: 14px;
    margin-top: 4px;
  }

  /* Provider Cards Mobile Responsive */
  .provider-page-container {
    padding: 16px !important;
    background: #F5F8F5;

  }

  body:has(.provider-page-container) .modern-footer {
    padding: 16px !important;
  }

  body:has(.provider-page-container) .modern-footer-container {
    padding: 24px 16px;
  }

  .provider-card-wrapper {
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .availability-header {
    border-radius: 12px 12px 0 0;
    padding: 12px 16px;
    background: #eaefe9;
  }

  .provider-card {
    position: relative;
  }

  .match-badge-mobile {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
  }

  .match-badge-mobile .heading-h6 {
    color: #101219;
    font-weight: 500;
    font-size: 13px;
  }

  .provider-card-body {
    padding: 16px !important;
  }

  .provider-avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px !important;
    object-fit: cover;
  }

  .profilepro {
    flex: 0 0 80px;
  }

  .provider-cards-section {
    padding-left: 0;
  }

  .provider-cards-section .row {
    margin: 0;
  }

  .provider-cards-section .col-12 {
    padding: 0;
  }

  .provider-name-section {
    padding-left: 12px;
    display: flex;
    flex-direction: column;
  }

  /* Mobile styles are handled in the main media query below */

  .provider-name-section h3.heading-h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 4px;
  }

  .provider-name-section p {
    font-size: 14px;
    margin-bottom: 8px !important;
    display: none;
  }

  .provider-name-section .badge {
    font-size: 12px;
    padding: 2px 8px;
    margin-bottom: 0;
  }

  .provider-info-row {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px !important;
  }

  .provider-info-row svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .provider-info-row .heading-h6 {
    font-size: 13px;
    line-height: 1.5;
  }

  .provider-info-row .card-text-wrapper {
    display: inline;
  }

  .provider-info-row .card-text {
    color: #101219;
  }

  .provider-availability {
    margin-top: 8px;
    margin-bottom: 16px !important;
  }

  .provider-availability .heading-h6 {
    font-size: 13px;
    color: #101219;
  }

  .provider-availability .heading-h6-bold {
    font-weight: 600;
    color: #101219;
  }

  .cards-footer {
    padding: 16px !important;
    border-top: 1px solid #e5e7eb;
  }

  .footer-btn {
    flex-direction: column;
    gap: 12px;
  }

  .footer-btn button,
  .footer-btn a {
    width: 100%;
    flex-basis: auto;
    padding: 12px 20px;
    font-size: 14px;
  }

  .green-button {
    order: 1;
  }

  .green-button-invert {
    order: 2;
  }

  /* Ensure proper spacing for provider cards on mobile */
  .provider-card-body .row {
    margin: 0;
    gap: 12px;
  }

  .provider-card-body .row>* {
    padding-left: 0;
    padding-right: 0;
  }

  /* Provider Search Section Mobile */
  .provider-search-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .pleftRight40 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Mobile Filter Button */
  .filter-mobile-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 16px !important;
    border: 1px solid #e5e7eb !important;
    background: white;
    border-radius: 8px !important;
    color: #101219;
    font-family: var(--font-intel);
    font-size: 16px;
    font-weight: 400;
    gap: 8px;
  }

  .filter-mobile-button:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #101219;
  }

  .filter-mobile-button .filter-icon {
    flex-shrink: 0;
  }

  .filter-mobile-button .filter-text {
    flex: 1;
    text-align: left;
  }

  .filter-mobile-button .filter-count-mobile {
    flex-shrink: 0;
  }

  .filter-mobile-button .filter-count-mobile:empty,
  .filter-mobile-button .filter-count-mobile[style*="display: none"] {
    display: none !important;
  }

  /* Mobile Filters Modal */
  .filter-sort-btn {
    position: relative;
  }

  .filters-modal-content {
    border: none;
    border-radius: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .filters-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
  }

  .filters-back-btn {
    display: flex;
    align-items: center;
    padding: 0;
    color: #101219;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border: none;
    background: transparent;
  }

  .filters-back-btn:hover {
    color: #101219;
  }

  .filters-modal-title {
    font-family: var(--font-intel);
    font-size: 18px;
    font-weight: 600;
    color: #101219;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .filter-badge-count {
    background: #668364 !important;
    color: white;
    font-size: 12px;
    font-weight: 500;
  }

  .filters-close-btn {
    padding: 0;
    border: none;
    background: transparent;
    color: #101219;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filters-close-btn:hover {
    color: #101219;
  }

  .filters-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
  }

  .filter-section {
    padding: 20px 16px;
    border-bottom: 1px solid #e5e7eb;
  }

  .filter-section:last-child {
    border-bottom: none;
  }

  .filter-section-title {
    font-family: var(--font-intel);
    font-size: 14px;
    font-weight: 600;
    color: #101219;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
  }

  .filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-intel);
    font-size: 16px;
    font-weight: 400;
    color: #101219;
    padding: 0;
    margin: 0;
  }

  .filter-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.25rem;
    border-radius: 6px;
    border: 1px solid #d0d5dd;
    box-shadow: none !important;
  }

  .filter-option input[type="checkbox"]:checked {
    background-color: #668364 !important;
    border-color: #668364 !important;
    box-shadow: none !important;
  }

  .filter-option span {
    flex: 1;
    color: var(--Base-Heading, #101219);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
  }



  .show-more-link {
    display: inline-block;
    margin-top: 12px;
    color: #668364;
    font-family: var(--font-intel);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
  }

  .show-more-link:hover {
    color: #10393e;
  }

  .filters-modal-footer {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    position: sticky;
    bottom: 0;
    background: white;
    z-index: 10;
  }

  .filters-cancel-btn {
    flex: 1;
    padding: 12px 24px;
    border: 1px solid #668364;
    background: white;
    color: #668364;
    font-family: var(--font-intel);
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
  }

  .filters-cancel-btn:hover {
    background: #f5f8f5;
    color: #668364;
    border-color: #668364;
  }

  .filters-save-btn {
    flex: 1;
    padding: 12px 24px;
    border: 1px solid #10393e;
    background: #10393e;
    color: white;
    font-family: var(--font-intel);
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
  }

  .filters-save-btn:hover {
    background: #0d2f32;
    border-color: #0d2f32;
    color: white;
  }
}

/* Hide filters modal on desktop */
@media (min-width: 768px) {
  #filtersModal {
    display: none !important;
  }
}

@media (max-width: 641px) {
  .sBox-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-content {
    padding: 20px 0;
    text-align: center;
  }
}

/* Custom Owl Carousel Navigation */
.custom-owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.owl-prev-custom,
.owl-next-custom {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.owl-prev-custom:hover,
.owl-next-custom:hover {
  opacity: 0.7;
}

.owl-prev-custom:focus,
.owl-next-custom:focus {
  outline: none;
}

.owl-prev-custom svg,
.owl-next-custom svg {
  display: block;
  width: 52px;
  height: 52px;
}

/* Find Provider Page Styles */

.find-provider-hero h1 {
  color: var(--Base-Heading, #10393e);
}

/* Provider Search Section */

.provider-search-section .form-control-lg {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 12px 20px 12px 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--Base-text, #101219);
}

.provider-search-section .form-control-lg:focus {
  border-color: #668364;
  box-shadow: 0 0 0 0.2rem rgba(102, 131, 100, 0.25);
}

/* Filter Bar Layout */
.provider-search-section .row.g-2.flex-nowrap {
  flex-wrap: nowrap !important;
}

.provider-search-section .row.g-2 .col-auto {
  display: flex;
  min-width: 0;
}

.provider-search-section .row.g-2 .col-auto.flex-grow-1 {
  flex: 1 1 0;
}

.provider-search-section .row.g-2 .col-auto[style*='flex-shrink'] {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .provider-search-section .row.g-2.flex-nowrap {
    flex-wrap: wrap !important;
  }

  .provider-search-section .row.g-2 .col-auto {
    flex: 0 0 100% !important;
    width: 100%;
    margin-bottom: 8px;
    min-width: 100%;
  }
}

/* Filter Buttons */
.provider-search-section .dropdown {
  position: relative;
}

.filter-btn {
  position: relative;
  border-radius: 8px;
  border: 1px solid #D0D5DD !important;
  background: #FFFFFF !important;
  box-shadow: 0px 1px 2px 0px #1018280D !important;
  overflow: hidden;
  color: var(--Base-Heading, #101219);
  text-overflow: ellipsis;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  padding: 8px 16px;
  text-align: left;
  justify-content: space-between;
  display: flex !important;
  align-items: center;
  white-space: nowrap;
  height: 44px;
}

.filter-btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: auto;
  flex-shrink: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 7.5L10 12.5L15 7.5" stroke="%234D5874" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  border: unset !important;
}

.filter-btn:hover,
.filter-btn:focus {
  border-color: #668364;
  background: white;
  color: #333;
}

.filter-count.badge {
  margin-left: 8px;
  background: #668364 !important;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  padding: 0;
  min-width: 20px;
  flex-shrink: 0;
}

/* .filter-btn .filter-count {
  margin-left: auto;
} */

.filter-sort-btn {
  border-radius: 12px;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
}

/* Filter Dropdown - Bootstrap handles show/hide with .show class */
.filter-dropdown {
  border-radius: 8px;
  border: 1px solid var(--Colors-Border-border-primary, #d0d5dd);
  background: var(--Colors-Background-bg-primary, #fff);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  overflow: hidden;
  color: var(--Base-Heading, #101219);
  text-overflow: ellipsis;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  padding: 8px 0;
  min-width: 250px;
  max-height: 300px;
  overflow-y: auto;
  /* Bootstrap .dropdown-menu already provides: display, position, top, left, z-index */
  /* We only add custom styling on top of Bootstrap's defaults */
}

.filter-dropdown .dropdown-item {
  color: var(--Base-Heading, #101219);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  padding: 8px 16px;
  cursor: pointer;
}

.filter-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
}

.filter-dropdown .form-check-input {
  margin-top: 0.25rem;
}

.filter-dropdown .form-check-input:checked,
.form-check-input:checked {
  background-color: #668364 !important;
  border-color: #668364 !important;
}

.filter-dropdown .clear-filter {
  border-radius: 100px;
  border: 1px solid var(--Base-Green, #10393e);
  background: var(--Base-Green, #10393e);
  box-shadow: none;
  opacity: 1;
  color: white;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 7px 12px;
  width: fit-content !important;
  margin-right: 12px;
}

.filter-dropdown .clear-filter:hover {
  background: var(--Base-Green, #0d2f32);
  border-color: var(--Base-Green, #0d2f32);
  color: white;
  opacity: 0.9;
}

/* Provider Card */
.provider-card-wrapper {
  margin-bottom: 0;
  display: flex !important;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: white;
  border-radius: 24px;
  position: relative;
}

.provider-card-wrapper .card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.provider-card-wrapper .card-body {
  flex: 1;
}

.provider-card {
  display: grid;
  place-items: end;
  height: 100%;
}

.provider-card-body {
  flex: 1 1 auto;
}

.cards-footer {
  flex: 0 0 auto;
  margin-top: auto;
}

/* .provider-cards-section padding removed - using mobile-specific styles */

.availability-header {
  border-radius: 12px 12px 0 0;
}

.provider-avatar {
  width: 102px;
  height: 99px;
  object-fit: cover;
  border-radius: 18px;
  object-position: top;
}

.provider-info-row {
  font-size: 14px;
  line-height: 1.6;
}

.provider-info-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pagination */
.pagination-info {
  font-size: 16px;
  color: #333;
}

.pagination-controls .btn {
  border-radius: 8px;
  padding: 8px 16px;
}

.pagination-controls .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.availability-header {
  border-radius: 24px 24px 0 0;
  background: var(--accent-brand-primary-10, #eaefe9);
  padding: 12px 24px;
}

.provider-page-container {
  padding: 40px 40px;
  background: #F5F8F5;
  min-height: calc(100vh - 80px);
  max-width: 1440px;
  margin-inline: auto;
}

/* Background for find provider page including footer area */
body:has(.provider-page-container) {
  background: #F5F8F5;
}

body:has(.provider-page-container) .modern-footer {
  background-color: #F5F8F5;
  margin: 0;
  border-radius: 0;
  padding: 40px 40px 32px;
}

body:has(.provider-page-container) .modern-footer-container {
  background-color: #1A363A;
  border-radius: 10px;
  padding: 40px;
}

/* Made for You Section */
.made-for-you-section {
  background: #10393e;
  padding: 40px 0;
  margin-bottom: 40px;
}

.made-for-you-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.made-for-you-tag {
  display: inline-block;
  background: #f9fafb;
  color: #344054;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 6px 12px;
  border-radius: 9999px;
  width: fit-content;
}

.made-for-you-headline {
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin: 0;
}

.made-for-you-description {
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  opacity: 0.9;
}

.view-full-directory-link {
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: opacity 0.3s ease;
}

.view-full-directory-link:hover {
  opacity: 0.8;
  color: #ffffff;
}

.view-full-directory-link svg {
  transform: rotate(-45deg);
}

.virtual-in-person {
  color: #344054;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  padding: 2px 10px;
  border-radius: 9999px;
  border: 1px solid #eaecf0;
  background: #f9fafb;
}

.name-badge {
  color: #175cd3;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  padding: 2px 10px;
  border-radius: 9999px;
  border: 1px solid #b2ddff;
  background: #eff8ff;
}

.green-badge {
  color: #10393e;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  padding: 2px 10px;
  border-radius: 9999px;
  border: 1px solid #eaefe9;
  background: #eaefe9;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cards-footer {
  border-top: 1px solid #d1d1d1;
}

.footer-btn button {
  flex-basis: 50%;
}

.footer-btn {
  display: flex;
  gap: 13px;
}

.p60 {
  padding: 40px 0px;
}

/* Provider Cards Slider */
.provider-cards-slider {
  margin-bottom: 40px;
}

.provider-cards-slider .owl-item {
  padding: 0 8px;
  display: flex !important;
  height: auto;
  margin-right: 0 !important;
}

.provider-cards-slider .item {
  display: flex !important;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

/* Mobile: Disable carousel and show cards in column */
@media (max-width: 768px) {
  .provider-cards-slider {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
  }

  .provider-cards-slider.owl-carousel,
  .provider-cards-slider.owl-loaded {
    display: flex !important;
    flex-direction: column !important;
  }

  .provider-cards-slider .owl-stage-outer {
    overflow: visible !important;
    width: 100% !important;
    position: relative !important;
  }

  .provider-cards-slider .owl-stage {
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    width: 100% !important;
    left: 0 !important;

  }

  .provider-cards-slider .owl-item {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    float: none !important;
    display: flex !important;
  }

  .provider-cards-slider .item {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column;
  }

  .provider-cards-slider .owl-nav {
    display: none !important;
  }

  .provider-cards-slider .owl-dots {
    display: none !important;
  }

  /* Ensure cards are visible and properly stacked */
  .provider-cards-slider>.item,
  .provider-cards-slider .owl-item>.item {
    display: flex !important;
    width: 100% !important;
    padding: 16px;
  }

  .provider-card-wrapper {
    height: auto !important;
    min-height: auto !important;
  }

  /* Show only first 4 cards on mobile (uncomment if you want to limit to 4 cards) */
  /* .provider-cards-slider .item:nth-child(n+5) {
    display: none !important;
  } */
}

/* Desktop: Ensure carousel is active */
@media (min-width: 769px) {
  .provider-cards-slider {
    display: block !important;
  }

  .provider-cards-slider .owl-stage-outer {
    overflow: hidden;
  }

  .provider-cards-slider .owl-stage {
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
  }

  .provider-cards-slider .owl-item {
    float: left;
    display: flex !important;
    flex-direction: column;
  }

  .provider-cards-slider .item {
    display: flex !important;
    flex-direction: column;
    height: 100%;
  }
}

/* .provider-cards-slider .owl-nav {
  display: none !important;
}

.provider-cards-slider .owl-nav button {
  display: none !important;
} */
.provider-cards-slider .owl-nav {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  height: fit-content;

  button {
    position: static;
    transform: none !important;
  }
}

.provider-cards-slider .owl-nav button {

  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid #668364 !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #668364 !important;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.provider-cards-slider {
  margin-bottom: 0px;
}

.provider-cards-slider .owl-nav button:hover {
  background: #668364 !important;
  color: white !important;
}



@media (max-width: 768px) {
  .provider-cards-slider .owl-nav {
    display: none !important;
  }
}

.pleftRight40 {
  padding-left: 40px;
  padding-right: 40px;
}

.profilepro {
  flex: 0 0 116px;
}

.emptycard {
  height: 100% !important;
}

.emptycard .provider-card {
  background-color: #eaefe9;
  border-radius: 24px;
}

.emptycard p.text-base-regular.mt-0.mb-3.black-color {
  color: #4d5874 !important;
  max-width: 80%;
  margin: 0 auto;
}

.emptycard .provider-card .provider-card-body {
  border-radius: 24px;
}

/* Booking Modal Styles */
#bookingModal {
  z-index: 10000 !important;
}

.modal-backdrop {
  z-index: 9999 !important;
  transition: opacity 0.15s linear;
}

.modal-backdrop.show {
  z-index: 9999 !important;
  opacity: 0.5 !important;
}

.modal-backdrop.fade:not(.show) {
  opacity: 0;
}

#bookingModal.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#bookingModal .modal-dialog {
  z-index: 10001 !important;
  position: relative;
}

.modal.show .modal-dialog {
  transform: none !important;
}

.booking-modal-content {
  border-radius: 24px;
  background: #eef2ed;
  border: none;
  position: relative;
  z-index: 10002;
}

/* Ensure backdrop is removed when modal is hidden */
body:not(.modal-open) .modal-backdrop {
  display: none !important;
}

/* Missed Session Policy Modal */
#modalMissed,
#modalTreatment,
#modalCC,
#modalTelehealth,
#modalInsurance {
  z-index: 10000 !important;
}

#modalMissed .modal-dialog,
#modalTreatment .modal-dialog,
#modalCC .modal-dialog,
#modalInsurance .modal-dialog,
#modalTelehealth .modal-dialog {
  position: relative;
  z-index: 10001 !important;
}

#modalMissed .modal-content,
#modalTreatment .modal-content,
#modalCC .modal-content,
#modalInsurance .modal-content,
#modalTelehealth .modal-content {
  position: relative;
  z-index: 10002 !important;
}

.booking-modal-header {
  border-bottom: none;
  padding: 32px 40px 24px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.booking-modal-title-wrapper {
  flex: 1;
  min-width: 0;
}

.booking-modal-divider {
  width: 1px;
  height: 60px;
  background: #d0d5dd;
  flex-shrink: 0;
}

.booking-header-right {
  display: flex;

  gap: 16px;
  flex-shrink: 0;
}

.booking-modal-title {
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #101219;
  margin-bottom: 8px;
}

.booking-modal-title .step-number {
  color: #101219;
}

.booking-modal-subtitle {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4d5874;
  margin: 0;
}

.booking-progress-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}

.booking-progress-bar {
  width: 200px;
  height: 8px;
  background: #d4dfd3;
  border-radius: 100px;
  overflow: hidden;
}

.booking-progress-fill {
  height: 100%;
  background: #668364;
  border-radius: 100px;
  transition: width 0.3s ease;
}

.booking-progress-text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #4d5874;
  margin: 0;
}

.booking-modal-header .btn-close-custom {
  position: relative;
  top: 0;
  right: 0;
  opacity: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.input-bm {
  margin-bottom: 14px;
  width: 49.2%;
}

.booking-modal-header .btn-close-custom:hover {
  opacity: 0.7;
}

.booking-modal-header .btn-close-custom svg {
  width: 14px;
  height: 14px;
}

.booking-modal-body {
  padding: 0px 32px 0px 32px;
}

.booking-step {
  min-height: 300px;
  background-color: white;
  border-radius: 12px;
  padding: 24px;
}

.booking-step.active {
  max-height: 408px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}

.booking-option-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.booking-option-card:hover {
  border-color: #d4dfd3;
}

.booking-option-card.selected {
  background: #f5f8f5;
  border-color: #668364;
}

.booking-option-card .form-check-input {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  border-color: #d0d5dd;
  flex-shrink: 0;
}

.booking-option-card .form-check-input[type='checkbox']:checked,
.booking-option-card .form-check-input[type='radio']:checked {
  background-color: #668364;
  border-color: #668364;
}

.booking-option-card .form-check-input[type='radio'] {
  border-radius: 50%;
}

.booking-option-card .form-check-input[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.booking-option-card .form-check-label {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #101219;
  cursor: pointer;
  margin: 0;
  flex: 1;
}

.booking-error-message {
  background: #fef5f5;
  border: 1px solid #fef5f5;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #9b0808;
}

/* Focus Areas Step 3 Styles */
.focus-category {
  margin-bottom: 32px;
}

.focus-category:last-child {
  margin-bottom: 0;
}

.focus-category-title {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #101219;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.focus-options-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.focus-option-btn {
  border-radius: 100px;
  border: 1px solid #668364;
  background: #f5f8f5;
  color: #101219;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;

  &.specialty-btn {
    background-color: #F5F8F5;
    border: 1px solid #D4DFD3;
    color: #668364
  }

  &.modalities-btn {
    background-color: #ffffff;
    border: 1px solid #D4DFD3;
    color: #668364
  }
}

.focus-option-btn:hover {
  border-color: #668364;
  background: #f5f8f5;
}

.focus-option-btn.selected {
  background: #668364;
  border-color: #668364;
  color: #ffffff;
}

.booking-btn-skip {
  display: flex;
  height: var(--Button-Default, 44px);
  padding: 0 var(--Spacing-space-10, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-space-6, 8px);
  border-radius: 100px;
  border: 1px solid var(--accent-brand-secondary-40, #728E9E);
  background: #ffffff;
  color: #101219;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  min-width: 120px;
}

.booking-btn-skip:hover {
  background: #f5f8f5;
  border-color: #668364;
  color: #101219;
}

/* Insurance Selection Step 4 Styles */
.insurance-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.insurance-option-card {
  display: flex;
  height: 100px;
  padding: 16px;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: var(--Neutral-Grey-10, #FAFAFA);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.insurance-option-card:hover {
  border-color: #d4dfd3;
}

.insurance-option-card.selected {
  background: #f5f8f5;
  border-color: #668364;
}

.insurance-option-card .form-check-input {
  /* position: absolute; */
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  border-color: #d0d5dd;
  flex-shrink: 0;
}

.insurance-option-card .form-check-input[type='checkbox']:checked {
  background-color: #668364;
  border-color: #668364;
}

.insurance-option-card .form-check-input[type='radio'] {
  border-radius: 50%;
}

.insurance-option-card .form-check-input[type='radio']:checked {
  background-color: #668364;
  border-color: #668364;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.insurance-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: fit-content;
  margin: 0;
}

.insurance-logo {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f8f5;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #668364;
  text-align: center;
  padding: 8px;
  word-break: break-word;
}

.insurance-logo-img {
  width: 100px;
  /* height: 100px; */
  object-fit: contain;
}

.insurance-name {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #101219;
  text-align: center;
  word-break: break-word;
}

/* Thank You Modal Styles */
.thank-you-modal-content {
  border-radius: 24px;
  background: #eef2ed;
  border: none;
}

.thank-you-modal-body {
  padding: 48px 40px;
  position: relative;
}

.btn-close-custom-thankyou {
  position: absolute;
  top: 24px;
  right: 24px;
  opacity: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.btn-close-custom-thankyou:hover {
  opacity: 0.7;
}

.thank-you-illustration {
  max-width: 300px;
  margin: 0 auto;
}

.thank-you-illustration img {
  max-width: 100%;
  height: auto;
}

.thank-you-title {
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #101219;
}

.thank-you-text {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4d5874;
}

.thank-you-text strong {
  color: #101219;
  font-weight: 600;
}

.thank-you-buttons {
  margin-top: 32px;
}

.thank-you-btn-cancel {
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  background: #ffffff;
  color: #101219;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 20px;
  min-width: 120px;
}

.thank-you-btn-cancel:hover {
  background: #f5f8f5;
  border-color: #668364;
  color: #101219;
}

.thank-you-btn-home {
  border-radius: 8px;
  border: none;
  background: #668364;
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 20px;
  min-width: 120px;
  text-decoration: none;
  display: inline-block;
}

.thank-you-btn-home:hover {
  background: #10393e;
  color: #ffffff;
}

.booking-modal-footer {
  border-top: none;
  padding: 24px 32px 32px;
  justify-content: space-between;
  gap: 12px;
}

.booking-footer-right {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.booking-btn-back {
  display: flex;
  border-radius: 100px !important;
  height: var(--Button-Default, 44px) !important;
  padding: 0 var(--Spacing-space-10, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-space-6, 8px);
  border-radius: 100px;
  border: 1px solid var(--accent-brand-secondary-40, #728E9E) !important;
  background: #ffffff00;
  color: #4d5874;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  min-width: 120px;
}

.booking-btn-back:hover {
  background: #f5f8f5;
  border-color: #668364;
  color: #101219;
}

.booking-btn-next {
  border-radius: 200px !important;
  border: none;
  background: #10393e;
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 20px !important;
  min-width: 120px;
}

.booking-btn-next:hover {
  background: #668364;
  color: #ffffff;
}

.booking-btn-submit {
  display: flex;
  height: var(--Button-Default, 44px);
  padding: 0 var(--Spacing-space-10, 16px) !important;
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-space-6, 8px);
  border-radius: 100px !important;
  border: 1px solid var(--accent-brand-secondary-40, #728E9E);
  background: #10393E;
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  min-width: 120px;

  &:hover {
    background: #668364;
    color: #ffffff;
    border-color: #668364;
  }
}

/* Mobile Responsive Styles for Booking Modal */
@media (max-width: 768px) {

  /* Modal Dialog - Full width on mobile */
  #bookingModal .modal-dialog {
    margin: 0;
    max-width: 100%;

    display: flex;
    align-items: stretch;
  }

  #bookingModal .modal-dialog-centered {
    align-items: stretch;
  }

  #bookingModal .modal-content {
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  /* Modal Header - Stacked layout on mobile */
  .booking-modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 16px 16px;
  }

  .booking-modal-title-wrapper {
    width: 100%;
    order: 1;
  }

  .booking-header-right {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    order: 2;
    gap: 12px;
  }

  .booking-progress-wrapper {
    align-items: flex-start;
    width: auto;
    flex: 1;
  }

  .booking-progress-bar {
    width: 100%;
    max-width: 200px;
  }

  .booking-modal-divider {
    display: none;
  }

  /* Title and Subtitle - Mobile sizing */
  .booking-modal-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 6px;
  }

  .booking-modal-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  /* Modal Body - Reduced padding on mobile */
  .booking-modal-body {
    padding: 0 16px;
    flex: 1;
    overflow-y: auto;
  }

  /* Booking Step - Mobile adjustments */
  .booking-step {
    padding: 16px;
    min-height: auto;
  }

  .booking-step.active {
    max-height: calc(100vh - 350px);
  }

  /* Option Cards - Full width on mobile */
  .booking-step .row {
    margin: 0;
  }

  /* .booking-step .col-12.col-md-6 {
    padding: 0;
    margin-bottom: 12px;
  } */

  .booking-step .col-12.col-md-6:last-child {
    margin-bottom: 0;
  }

  .booking-option-card {
    padding: 16px;
    min-height: 56px;
  }

  .booking-option-card .form-check-label {
    font-size: 14px;
    line-height: 20px;
  }

  /* Modal Footer - Mobile button layout */
  .booking-modal-footer {
    padding: 16px;
    flex-direction: row;
    gap: 12px;
  }

  .booking-footer-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    gap: 12px;
  }

  .booking-btn-back,
  .booking-btn-next,
  .booking-btn-skip,
  .booking-btn-submit {
    flex: 1;
    min-width: auto;
    padding: 12px 20px;
    font-size: 14px;
  }

  .booking-btn-back {
    order: 1;
    border-radius: 8px;
  }

  .booking-btn-next {
    order: 2;
    border-radius: 8px;
  }

  /* Progress Text - Mobile */
  .booking-progress-text {
    font-size: 12px;
    line-height: 16px;
  }

  /* Focus Areas - Mobile adjustments */
  .focus-category {
    margin-bottom: 24px;
  }

  .focus-category-title {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 12px;
  }

  .focus-option-btn {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 12px;
  }

  /* Insurance Grid - Mobile adjustments */
  .insurance-selection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .insurance-option-card {
    min-height: 100px;
    padding: 12px;
    width: 100%;
  }



  .insurance-name {
    font-size: 11px;
    line-height: 14px;
  }
}

@media (max-width: 480px) {

  /* Extra small mobile adjustments */
  .booking-modal-header {
    padding: 16px 12px 12px;
  }

  .booking-modal-title {
    font-size: 18px;
    line-height: 24px;
  }

  .booking-modal-subtitle {
    font-size: 13px;
    line-height: 18px;
  }

  .booking-modal-body {
    padding: 0 12px;
  }

  .booking-step {
    padding: 12px;
  }

  .booking-option-card {
    padding: 14px;
  }

  .booking-modal-footer {
    padding: 12px;
  }

  .booking-btn-back,
  .booking-btn-next,
  .booking-btn-skip,
  .booking-btn-submit {
    padding: 10px 16px;
    font-size: 13px;
  }

  .booking-progress-bar {
    max-width: 150px;
  }

  .insurance-selection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.profile-header img.profile-main-image {
  width: 100%;
  display: block;
  width: 190px;
  aspect-ratio: 1/1;
  background-color: #f6f8f5;
  margin-left: auto;
  border-radius: 12px;

  @media screen and (max-width: 768px) {
    width: 100%;
    display: block;
  }
}

.profile-details-card {
  background-color: white;
  padding: 24px;
  border-radius: 24px;
  border-radius: 24px;
  background: #FFF;

  .profile-info-item {
    .heading {
      color: #10393E;
      text-transform: uppercase;
      font-size: 16px;
      font-weight: 500;
      line-height: 32px;
      letter-spacing: -0.4px;
    }

    .description {
      font-size: 18px;
      font-weight: 400;
      line-height: 27px;
      letter-spacing: -0.4px;
      display: block;
      font-family: var(--font-intel);
      color: #4D5874;
    }
  }
}

.text-psychiatrist-title {
  display: flex;
  padding: var(--spacing-xxs, 2px) 10px;
  align-items: center;
  border-radius: var(--radius-full, 9999px);
  border: 1px solid var(--Component-colors-Utility-Blue-utility-blue-200, #B2DDFF);
  background: var(--Component-colors-Utility-Blue-utility-blue-50, #EFF8FF);
  color: var(--Component-colors-Utility-Blue-utility-blue-700, #175CD3);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  line-height: 20px;
  /* 142.857% */
}

.text-virtual-in-person {
  display: flex;
  padding: var(--spacing-xxs, 2px) 10px;
  align-items: center;
  border-radius: var(--radius-full, 9999px);
  border: 1px solid var(--Component-colors-Utility-Gray-utility-gray-200, #EAECF0);
  background: var(--Component-colors-Utility-Gray-utility-gray-50, #F9FAFB);
  color: var(--Component-colors-Utility-Gray-utility-gray-700, #344054);
  text-align: center;
  cursor: pointer;
  /* Text sm/Medium */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.profile-header h1.heading-h1.mb-2 {
  color: #101219 !important;
}

.profile-booking-card {
  padding: 24px;
  background-color: white;
  border-radius: 24px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

/* ====================================
   Modern Navbar Styles
   ==================================== */

.modern-navbar {
  background-color: var(--color-white);
  padding: 16px 0;
  position: fixed;
  top: 0;
  z-index: 9999;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-family: var(--font-intel);
  width: 100%;
}

.modern-navbar .container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;

  @media (max-width: 768px) {
    padding: 0 16px;
  }
}

.modern-navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.modern-navbar-logo {
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
}

/* Navigation Links */
.modern-navbar-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  flex-grow: 1;
  justify-content: flex-end;
}

.modern-navbar-links li {
  margin: 0;
  padding: 0;
}

.modern-navbar-links a {
  color: var(--color-heading);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.modern-navbar-links a:hover {
  color: var(--color-dark-green);
}

/* Action Buttons */
.modern-navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-navbar-outline {
  padding: 10px 18px;
  border: 1px solid var(--color-dark-green);
  border-radius: var(--radius-full);
  color: var(--color-dark-green);
  background-color: transparent;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.btn-navbar-outline:hover {
  background-color: var(--color-dark-green);
  color: var(--color-white);
}

.btn-navbar-filled {
  padding: 10px 18px;
  border: 1px solid var(--color-dark-green);
  border-radius: var(--radius-full);
  color: var(--color-white);
  background-color: var(--color-dark-green);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.btn-navbar-filled:hover {
  background-color: #0d2f33;
  border-color: #0d2f33;
  color: var(--color-white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  height: 40px;
}

.mobile-menu-toggle .hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 18px;
}

.mobile-menu-toggle .hamburger-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-heading);
  transition: all 0.3s ease;
}

.mobile-menu-toggle .close-icon {
  width: 24px;
  height: 24px;
  display: none;
}

/* When menu is active, hide hamburger and show close icon */
.mobile-menu-toggle.active .hamburger-icon {
  display: none;
}

.mobile-menu-toggle.active .close-icon {
  display: block !important;
}

.mob-logout-btn {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 71px;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  max-height: calc(100vh - var(--navbar-offset, 80px));
  overflow-y: auto;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 16px;
}

.mobile-menu-links li {
  margin: 0;
  padding: 0;
}

.mobile-menu-links li:not(.mobile-menu-divider) a {
  display: block;
  padding: 16px;
  color: var(--color-heading);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.mobile-menu-links li:not(.mobile-menu-divider) a:hover {
  background-color: var(--accent-brand-primary-5);
}

.mobile-menu-divider {
  height: 16px;
}

.btn-navbar-outline-mobile,
.btn-navbar-filled-mobile {
  display: block;
  margin: 8px 16px;
  padding: 12px 18px;
  text-align: center;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-navbar-outline-mobile {
  border: 1px solid var(--color-dark-green);
  color: var(--color-dark-green);
  background-color: transparent;
}

.btn-navbar-outline-mobile:hover {
  background-color: var(--color-dark-green);
  color: var(--color-white);
}

.btn-navbar-filled-mobile {
  border: 1px solid var(--color-dark-green);
  color: var(--color-white);
  background-color: var(--color-dark-green);
}

.btn-navbar-filled-mobile:hover {
  background-color: #0d2f33;
  border-color: #0d2f33;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .modern-navbar-links {
    gap: 20px;
  }

  .modern-navbar-links a {
    font-size: 15px;
  }
}

@media (max-width: 1280px) {

  .modern-navbar-links,
  .modern-navbar-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu {
    display: block;
  }

  .mob-logout-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar-logo-img {
    height: 40px;
  }

  .modern-navbar {
    padding: 12px 0;
  }
}

/* ====================================
   Modern Footer Styles
   ==================================== */

.modern-footer {
  background-color: #1A363A;
  color: var(--color-white);
  font-family: var(--font-intel);
  padding: 0;
  margin: 40px;
  border-radius: 10px;
  margin-bottom: 32px;
}

/* Body background color on view profile page */
body:has(.profile-content-section) {
  background-color: #F5F8F5;
}

/* Full width footer on view profile page */
/* #root:has(.profile-content-section) .modern-footer,
body:has(.profile-content-section) .modern-footer {
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 40px;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
} */

.modern-footer-container {
  padding: 40px 40px 32px;
}

/* Footer padding to match page padding on view profile */
#root:has(.profile-content-section) .modern-footer-container,
body:has(.profile-content-section) .modern-footer-container {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 768px) {

  /* Footer padding to match page padding on view profile mobile */
  #root:has(.profile-content-section) .modern-footer-container,
  body:has(.profile-content-section) .modern-footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Top Section */
.modern-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}

/* Left Side - Company Info */
.modern-footer-left {
  flex: 0 0 auto;
  max-width: 400px;
}

.modern-footer-logo {
  margin-bottom: 24px;
}

.modern-footer-logo a {
  display: inline-block;
}

.modern-footer-logo .footer-logo-img {
  height: auto;
  width: auto;
  max-width: 200px;
  display: block;
}

.footer-logo-stacked {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}

.footer-logo-square {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.footer-logo-square-top {
  background-color: #d4dfd3;
  color: var(--color-dark-green);
  border-radius: 4px 4px 0 0;
}

.footer-logo-square-bottom {
  background-color: var(--color-white);
  color: var(--color-dark-green);
  border-radius: 0 0 4px 4px;
}

.footer-logo-text {
  font-weight: 600;
  line-height: 1;
}

.footer-logo-text-container {
  display: flex;
  flex-direction: column;
}

.footer-company-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.footer-company-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  opacity: 0.9;
}

.modern-footer-tagline {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
  opacity: 0.9;
}

.modern-footer-hipaa {
  margin-top: 24px;
}

.hipaa-seal-img {
  max-width: 280px;
  height: auto;
  display: block;
}

/* Right Side - Navigation Links */
.modern-footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.modern-footer-columns {
  display: flex;
  gap: 60px;
}

.modern-footer-column {
  min-width: 160px;
}

.modern-footer-heading {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.modern-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modern-footer-links li {
  margin-bottom: 12px;
}

.modern-footer-links li:last-child {
  margin-bottom: 0;
}

.modern-footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.modern-footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
  color: var(--color-white);

}

/* Separator */
.modern-footer-separator {
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.2;
  margin: 32px 0;
}

/* Bottom Section */
.modern-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 24px;
}

.modern-footer-copyright {
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.modern-footer-emergency {
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  text-align: right;
  max-width: 500px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .modern-footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .modern-footer-left {
    max-width: 100%;
  }

  .modern-footer-columns {
    gap: 40px;
  }

  .modern-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .modern-footer-emergency {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .modern-footer {
    margin: 16px;
  }

  .modern-footer-container {
    padding: 16px;
  }

  .modern-footer-columns {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  .modern-footer-column {
    min-width: 100%;
  }

  .hipaa-seal-img {
    max-width: 240px;
  }

  .modern-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .modern-footer-copyright,
  .modern-footer-emergency {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .modern-footer-container {
    padding: 16px;
  }

  .footer-company-name {
    font-size: 20px;
  }

  .footer-company-subtitle {
    font-size: 16px;
  }

  .modern-footer-tagline {
    font-size: 14px;
  }

  .modern-footer-heading {
    font-size: 15px;
  }

  .modern-footer-links a {
    font-size: 14px;
  }
}

.modal-footer .booking-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Override Bootstrap 3 clearfix rules */
.btn-group-vertical>.btn-group:after,
.btn-group-vertical>.btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: none !important;
  content: none !important;
}


.patient-portal-btn-outline {
  display: flex;
  height: var(--Button-Default, 44px);
  padding: 0 var(--Spacing-space-10, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-space-6, 8px);
  border-radius: 100px;
  border: 1px solid var(--Component-Button-button-tertiary-border, #728E9E);
  color: var(--Component-Button-button-tertiary-text, #4B5B67);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  /* 137.5% */
  letter-spacing: -0.1px;
  text-decoration: none;
}

.patient-portal-btn-filled {
  display: flex;
  height: var(--Button-Default, 44px);
  padding: 0 var(--Spacing-space-10, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-space-6, 8px);
  border-radius: 100px;
  background: var(--Component-Button-button-secondary-background, #10393E);
  color: var(--Component-Button-button-secondary-text, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  /* 137.5% */
  letter-spacing: -0.1px;
  text-decoration: none;
}

.disabled-link {
  pointer-events: none;
  /* disable clicks */
  color: #aaa;
  /* faded look */
  text-decoration: none;
  opacity: 0.6;
  cursor: default;
}

/* Contact Network Development Modal Styles */
#contactNetworkModal {
  z-index: 10000;
}

#contactNetworkModal .modal-dialog {
  z-index: 10001;
  position: relative;
}

.contact-network-modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  width: 614px;
  max-width: 614px;
  height: 834px;
  margin: 0 auto;
  position: relative;
  z-index: 10001;
}

.contact-network-modal-header {
  /* padding: 24px 32px; */
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-network-modal-title {
  font-family: var(--font-intel, 'Inter', sans-serif);
  font-size: 24px;
  font-weight: 700;
  color: #101219;
  margin: 0;
  line-height: 1.2;
}

.contact-network-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: background-color 0.2s;
  opacity: 1;
}

.contact-network-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.contact-network-close svg {
  width: 14px;
  height: 14px;
}

.contact-network-modal-body {
  padding: 0px !important;
}

.contact-network-form-group:last-of-type {
  margin-bottom: 0;
}

.contact-network-label {
  display: block;
  font-family: var(--font-intel, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #344054;
  margin-bottom: 4px;
  line-height: 1.4;
}

.contact-network-input,
.contact-network-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-family: var(--font-intel, 'Inter', sans-serif);
  font-size: 16px;
  color: #101219;
  background-color: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.contact-network-input:focus,
.contact-network-textarea:focus {
  outline: none;
  border-color: #668364;
  box-shadow: 0 0 0 3px rgba(102, 131, 100, 0.1);
}

.contact-network-input::placeholder,
.contact-network-textarea::placeholder {
  color: #9CA3AF;
}

.contact-network-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-intel, 'Inter', sans-serif);
  line-height: 1.5;
}

.contact-network-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.contact-network-btn-cancel,
.contact-network-btn-submit {
  padding: 8px var(--Spacing-space-10, 16px);
  border-radius: 100px;
  font-family: var(--font-intel, 'Inter', sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  min-width: 100px;
}

.contact-network-btn-cancel {
  background-color: transparent;
  color: #101219;
  border: 1px solid #728E9E;
}

.contact-network-btn-cancel:hover {
  background-color: #F9FAFB;
  border-color: #9CA3AF;
}

.contact-network-btn-submit {

  background-color: #10393E;
  color: #FFFFFF;
}

.contact-network-btn-submit:hover {
  background-color: #10393e;
}

.contact-network-btn-submit:active {
  transform: translateY(1px);
}

/* Modal backdrop - ensure it's behind the modal */
#contactNetworkModal.show~.modal-backdrop,
.modal-backdrop.show {
  z-index: 9999 !important;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-network-modal-content {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    margin: 20px;
  }

  .contact-network-modal-header,
  .contact-network-modal-body,
  .contact-network-modal-footer {
    padding: 20px;
  }

  .contact-network-modal-title {
    font-size: 20px;
  }

  .contact-network-modal-footer {
    flex-direction: column-reverse;
  }

  .contact-network-btn-cancel,
  .contact-network-btn-submit {
    width: 100%;
  }
}

/* Refer Patient Page Styles */

/* Hero Section - Start Referral Button */
.refer-start-button {
  background-color: var(--accent-brand-primary-50);
  color: var(--color-dark-green);
}

.refer-start-button:hover {
  background-color: var(--color-white);
  color: var(--color-dark-green);
}

/* How It Works Section */
.how-it-works-section {
  background-color: #F5F8F5;
  /* margin: 100px 0; */
}

.how-it-works-container {
  margin-left: 100px;
  margin-right: 100px;

  @media screen and (max-width: 992px) {
    margin-left: 20px;
    margin-right: 20px;
  }

  @media screen and (max-width: 768px) {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.refer-text {
  color: #10393E;

  /* Text sm/Medium */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
  display: flex;
  padding: var(--spacing-xs, 4px) 12px;
  align-items: center;
  gap: var(--spacing-lg, 12px);
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.00);
}

.referral-card {
  background: var(--accent-brand-primary-10, #EAEFE9);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important;
}

.referral-card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}

.referral-card-number {
  font-family: var(--font-dm-serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--accent-brand-primary-50);
  line-height: 1;
  margin-bottom: 16px;
}

.referral-card-content {
  flex: 1;
  z-index: 1;
  position: relative;
}

.referral-card-title {
  font-family: var(--font-intel);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}

.referral-card-description {
  font-family: var(--font-intel);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.referral-card-image {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  /* border-radius: 12px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.referral-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Privacy Section */
.privacy-section {
  background-color: #F5F8F5;
}

.privacy-content {
  padding: 20px 0;
}

.privacy-quote-icon {
  margin-bottom: 24px;
  opacity: 0.3;
}

.privacy-text {
  font-family: var(--font-intel);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-heading);
  line-height: 1.8;
  margin-bottom: 24px;
}

.privacy-thank-you {
  font-family: var(--font-intel);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.privacy-signature {
  font-family: var(--font-intel);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-heading);
  line-height: 1.8;
  margin-bottom: 0;
}

.privacy-signature strong {
  font-weight: 600;
}

.hipaa-badge {
  display: inline-block;
}

.hipaa-badge-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--accent-brand-primary-5);
  border-radius: 8px;
  border: 1px solid var(--Colors-Brand-20);
}

.hipaa-badge-text {
  font-family: var(--font-intel);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-brand-primary-50);
}

.privacy-image {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.privacy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Referral Form Section */
.referral-form-section {
  background-color: #F5F8F5;
  padding: 96px 0;
}

.referral-form-subtitle {
  font-family: var(--font-intel);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 0;
}

.referral-form-card {
  background: var(--accent-brand-primary-10, #EAEFE9);
  border-radius: 24px;
  padding: 32px;
  margin-top: 64px;
}

.referral-form-card-content {
  padding: 24px;
  background-color: #fff;
  border-radius: 20px;

  .form-control {
    width: 100%;
    padding: 9px 16px;
    font-family: var(--font-intel);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-heading);
    background-color: #ffffff;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px #1018280D;
    border-radius: 8px;
    transition: border-color 0.2s ease;
  }

  .form-section {
    margin-bottom: 32px;
  }

  .form-section-title {
    font-family: var(--font-intel);
    font-size: 18px;
    letter-spacing: -0.14px;
    font-weight: 600;
    color: #101219;
    margin-bottom: 24px;
  }

}

.form-section {
  margin-bottom: 40px;
}

.form-section:last-of-type {
  margin-bottom: 0;
}

.form-section-title {
  font-family: var(--font-intel);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  font-family: var(--font-intel);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #344054;
  margin-bottom: 6px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-intel);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-heading);
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-brand-primary-50);
  box-shadow: 0 0 0 3px rgba(102, 131, 100, 0.1);
}

.form-control::placeholder {
  color: #9CA3AF;
}

/* .form-control.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
} */

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.date-input-wrapper {
  position: relative;
}

.date-input-wrapper .calendar-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn {
  padding: 12px 24px;
  font-family: var(--font-intel);
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-back {
  background-color: #F3F4F6;
  color: var(--color-heading);
  border: 1px solid #D1D5DB;
}

.btn-back:hover {
  background-color: #E5E7EB;
}

.btn-submit {
  background-color: var(--accent-brand-primary-50);
  color: #ffffff;
}

.btn-submit:hover {
  background-color: var(--accent-brand-primary-60);
}

@media (max-width: 768px) {
  .referral-form-card {
    padding: 32px 24px;
  }

  .form-actions {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    width: 100%;
  }
}

/* Refer CTA Section */
.refer-cta-section {
  padding: 96px 0;
  background-color: #F5F8F5;
}

.refer-cta-banner {
  background-color: var(--color-dark-green);
  border-radius: 24px;
  padding: 64px 48px;
  margin: 0 24px;
}

.refer-cta-title {
  font-family: var(--font-intel);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.refer-cta-description {
  font-family: var(--font-intel);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

.refer-cta-button .primary-button-invert {
  background-color: var(--accent-brand-primary-50);
  color: var(--color-dark-green);
}

.refer-cta-button .primary-button-invert:hover {
  background-color: var(--color-white);
  color: var(--color-dark-green);
}

/* Responsive Styles for Refer Patient Page */
@media (max-width: 992px) {
  .referral-card {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .referral-card-image {
    width: 100%;
    height: 200px;
    margin-top: 16px;
  }

  .referral-card-title {
    font-size: 20px;
  }

  .referral-card-description {
    font-size: 14px;
  }

  .refer-cta-banner {
    padding: 48px 32px;
  }

  .refer-cta-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .refer-cta-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .referral-card {
    padding: 20px;
  }

  .referral-card-number {
    font-size: 48px;
  }

  .referral-card-image {
    width: 100%;
    height: 180px;
  }

  .privacy-image {
    min-height: 300px;
    margin-top: 32px;
  }

  .refer-cta-banner {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .refer-cta-title {
    font-size: 24px;
  }
}

/* Forms Page Styles */
.forms-hero-section {
  background-color: #ffffff;
  min-height: 600px;
}

.forms-hero-content {
  padding: 40px 0;
}

.forms-badge {
  margin-bottom: 20px;
}

.looking-for-text {
  text-align: center;
}

.badge-text-light {
  background: rgba(0, 0, 0, 0.00);
  color: var(--Base-Text, #4d5874);
  border: 1px solid rgba(77, 88, 116, 0.2);
  backdrop-filter: blur(10px);
  /* -webkit-backdrop-filter: blur(10px) !important; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.forms-heading {
  color: var(--color-heading) !important;
  margin-bottom: 24px;
}

.forms-description {
  color: var(--Base-text, #4D5874);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 160% */
  letter-spacing: -0.14px;
}

.forms-grid-section {
  margin-top: 64px;
}

.form-card-item {
  margin-bottom: 0;
}

.form-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.form-card-link:hover {
  text-decoration: none;
}

/* Form Card - Same styling as referral-card */
.form-card {
  background: var(--accent-brand-primary-10, #EAEFE9);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  width: 378px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 284px;
}

.forms-hero-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 40px;
  display: flex;
  justify-content: space-between;

  @media screen and (max-width: 992px) {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
  }

  @media screen and (max-width: 768px) {
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: column;
  }
}

.our-forms-container {
  width: 100%;
}

.form-card-link:hover .form-card {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.form-card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.3s ease;
  width: 100%;
}

.form-card-link:hover .form-card-arrow {
  transform: translate(4px, -4px);
}

.form-card-container {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;

  @media screen and (max-width: 993px) {
    flex-direction: column;
  }

  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.form-card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 1;
  position: relative;
}

.form-card-content {
  flex: 1;
  z-index: 1;
  position: relative;
}

.form-card-title {
  font-family: var(--font-intel);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}

.form-card-description {
  font-family: var(--font-intel);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

/* Form Image Card */
.form-image-card-item {
  margin-bottom: 0;
}

.form-image-card {
  width: 378px;
  height: 284px;
  border-radius: 24px;
}

.form-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

/* Responsive Styles for Forms */
@media (max-width: 992px) {
  .forms-hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .forms-hero-content {
    padding: 20px 0 40px 0;
    text-align: center;
  }

  .forms-badge {
    display: flex;
    justify-content: center;
  }

  .forms-heading {
    font-size: 48px;
    line-height: 56px;
  }

  .forms-grid-section {
    margin-top: 40px;
    width: 100%;
  }

  .form-card {
    padding: 24px;
    min-height: 280px;
    width: 100%;
  }

  .form-card-arrow {
    top: 24px;
    right: 24px;
  }

  .form-image-card {
    min-height: 280px;
    width: 100%;
  }

  .form-card-title {
    font-size: 20px;
  }

  .form-image-card-item {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .forms-heading {
    font-size: 36px;
    line-height: 44px;
  }

  .forms-description {
    font-size: 18px;
    line-height: 28px;
  }

  .forms-grid-section {
    margin-top: 32px;
  }

  .form-card {
    padding: 20px;
    gap: 20px;
    min-height: 250px;
  }

  .form-card-arrow {
    top: 20px;
    right: 20px;
  }

  .form-image-card {
    min-height: 250px;
    display: none;
  }

  .form-card-title {
    font-size: 20px;
    line-height: 28px;
  }

  .form-card-description {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Contact Network Development Modal Styles */
.contact-network-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 75%);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.contact-network-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.contact-network-modal-container {
  width: 100%;
  max-width: 600px;
  position: relative;
}

.contact-network-modal-content {
  border-radius: 24px;
  background: var(--accent-brand-primary-10, #EAEFE9);

  /* Shadows/shadow-xl */
  box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);
  padding: 24px;

  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-network-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-network-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #101219;
  margin: 0;
  line-height: 1.2;
}

.contact-network-modal-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: background-color 0.2s;
  color: #101219;
}

.contact-network-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.contact-network-modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  background: #FFF;
  padding: 24px;
  flex: 1;
  margin-bottom: 20px;
}

.contact-network-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-network-form-label {
  font-size: 14px;
  font-weight: 500;
  color: #101219;
  line-height: 1.4;
}

.contact-network-form-input,
.contact-network-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #101219;
  background-color: #FFFFFF;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-network-form-input:focus,
.contact-network-form-textarea:focus {
  outline: none;
  border-color: #1F3A34;
}

.contact-network-form-input::placeholder,
.contact-network-form-textarea::placeholder {
  color: #9CA3AF;
}

.contact-network-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-network-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-between;
  margin-top: auto;
  padding-top: 0;
}

.contact-network-btn-cancel,
.contact-network-btn-submit {
  display: flex;
  height: var(--Button-Default, 44px);
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-space-6, 8px);
  border-radius: 100px;
}

.contact-network-btn-cancel {
  background-color: #F9FAFB;
  border-color: #101219;
  color: #101219;
}

.contact-network-btn-cancel:hover {
  background-color: #F3F4F6;
}

.contact-network-btn-submit {
  background-color: #10393E;
  border-color: #1F3A34;
  color: #FFFFFF;
}

.contact-network-btn-submit:hover {
  background-color: #2D4A42;
  border-color: #2D4A42;
}

@media (max-width: 768px) {
  .contact-network-modal-content {
    padding: 24px;
  }

  .contact-network-modal-title {
    font-size: 20px;
  }

  .contact-network-modal-footer {
    flex-direction: column;
  }

  .contact-network-btn-cancel,
  .contact-network-btn-submit {
    width: 100%;
  }
}

.settings-filter-btn {
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px #1018280D;
  padding: 8px 12px;
  background: #FFFFFF;
}

.billing-select-wrapper {
  position: relative;
  width: 100%;
}

.billing-select-wrapper select {
  width: 100%;
  padding-right: 40px;
  /* avoid text overlapping with icon */
}

.billing-select-wrapper .billing-select-icon {
  position: absolute;
  right: 12px;
  /* fixed distance from right */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#providerSettingsOffcanvas {
  width: 660px;
  max-width: 100%;
  background: #EAEFE9;
}

#providerSettingsOffcanvas .offcanvas-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1.5rem;

  @media (max-width: 768px) {
    padding-block: 0.5rem;
  }
}

#providerSettingsOffcanvas .offcanvas-footer {
  padding: 1.5rem;
}

.treatment-inputs {
  display: flex;
  /* align-items: center; */
  flex-direction: row !important;
}

.plus-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md, 8px);
  background: var(--Colors-Brand-50, #668364);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  color: white;
  border: none;

}

.minus-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md, 8px);
  background: #5C5C5C;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  border: none;

}

.radio-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  justify-content: space-between;

  .btn {
    width: auto;
    height: 44px;
  }

  .filters-cancel-btn {
    background: #FFFFFF;
    border: 1px solid #10393E;
    color: #10393E;
    font-family: var(--font-intel);
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    width: 120px;
  }

  .filters-save-btn {
    background: #10393E;
    border: 1px solid #10393E;
    color: #FFFFFF;
    font-family: var(--font-intel);
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    width: 200px;
  }

  @media (max-width: 768px) {
    padding: 0.5rem;

    .btn {
      font-size: 14px;
    }

    .filters-cancel-btn {
      width: 100%;
    }

    .filters-save-btn {
      width: 100%;
    }
  }

}

input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: none !important;
}

.form-check-input:focus {
  box-shadow: none !important;
}

.os-label {
  color: #344054 !important;
  font-family: Inter;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 20px;
  /* 142.857% */
}

.os-input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.patient-page-main-heading {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #6B7280;
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
  width: fit-content;
  border: 2px solid #E5E7EB;
  margin-inline: auto;
  border-radius: 100px;
  padding: 6px 12px;
  background-color: #FFFFFF;
}

.settings-filter-btn {
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px #1018280D;
  padding: 8px 12px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 44px;

}

#providerSettingsOffcanvas {
  width: 660px;
  max-width: 100%;
  background: #EAEFE9;
}

#providerSettingsOffcanvas .offcanvas-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1.5rem;

  @media (max-width: 768px) {
    padding-block: 0.5rem;
  }
}

#providerSettingsOffcanvas .offcanvas-footer {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;

  .btn {
    width: auto;
    height: 44px;
  }

  .filters-cancel-btn {
    background: #FFFFFF;
    border: 1px solid #10393E;
    color: #10393E;
    font-family: var(--font-intel);
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    width: 120px;
  }

  .filters-save-btn {
    background: #10393E;
    border: 1px solid #10393E;
    color: #FFFFFF;
    font-family: var(--font-intel);
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    width: 200px;
  }

  @media (max-width: 768px) {
    padding: 0.5rem;

    .btn {
      font-size: 14px;
    }

    .filters-cancel-btn {
      width: 100%;
    }

    .filters-save-btn {
      width: 100%;
    }
  }
}

#providerSettingsOffcanvas .offcanvas-body {
  padding: 0 1.5rem;

  .filter-section {
    background-color: #fff;
    padding: 24px;
    border-radius: 16px;
    height: calc(100dvh - 240px);
    overflow-y: auto;

    h3 {
      font-size: 18px;
      line-height: 28px;
      font-weight: 500;
      color: #101219;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .booking-option-card {
      padding: 14px !important;
    }
  }

  @media (max-width: 768px) {
    padding: 0 0.5rem;

    .filter-section {
      height: calc(100dvh - 200px);
    }
  }

}

.cursor-pointer {
  cursor: pointer;
}


@media (min-width: 992px) {
  .w-100.w-lg-fit-content {
    width: fit-content !important;
  }
}

.jq-toast-single {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.jq-toast-wrap {
  z-index: 999999 !important;
}

.jq-toast-single,
.jq-toast-single * {
  pointer-events: auto !important;
}

.offcanvas-backdrop.show {
  opacity: 0.5 !important;
}

.card-header-custom-padding {
  padding: 24px 24px;
}

.faqs-section {
  padding-inline: 40px;
  max-width: 1360px;
  margin: 0 auto;

  @media screen and (max-width: 992px) {
    padding-inline: 20px;
  }

  @media screen and (max-width: 768px) {
    padding-inline: 16px;
  }
}

.email-match-error {
  color: #dc3545;
  font-size: 0.875em;
  margin-top: 0.25rem;
}

/*Intake Booking Modal Styles */
#intakeBookingModal {
  z-index: 10000 !important;
}

#intakeBookingModal.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#intakeBookingModal .modal-dialog {
  z-index: 10001 !important;
  position: relative;
}

/* Mobile Responsive Styles for intake-Booking Modal */
@media (max-width: 768px) {

  /* Modal Dialog - Full width on mobile */
  #intakeBookingModal .modal-dialog {
    margin: 0;
    max-width: 100%;

    display: flex;
    align-items: stretch;
  }

  #intakeBookingModal .modal-dialog-centered {
    align-items: stretch;
  }

  #intakeBookingModal .modal-content {
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
  }
}
