/*
Theme Name: Cermak Theme
Theme URI: https://example.com
Author: Cermak
Author URI: https://example.com
Description: Custom standalone Cermak WordPress theme.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: newmed-theme
*/

body {
    margin: 0;
    padding: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.container-custom {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 40px;
}

:root {
    --primary: #183155;
    --accent: #E61E2B;
    --text: #333333;
    --lightbg: #E5FAFFCC;
}

.topbar {
    background: var(--primary);
    color: #fff;
    font-size: 16px;
}

.topbar .container-custom {
    height: 40px;
}

.topbar div a {
    position: relative;
    margin-right: 16px;
}

/* Add dot after first link */
.topbar div a:not(:last-child)::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-left: 16px;
    vertical-align: middle;
}

.topbar p {
    margin-bottom: 0;
}

main{
    position: relative;
}

.main-header {
    background: #fff;
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.main-header .container-custom {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 8px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 500;
    color: var(--primary);
    border-radius: 10px;
    transition: 0.3s;
}

.navbar-nav .current-menu-item>.nav-link,
.navbar-nav .current_page_item>.nav-link,
.navbar-nav .current-menu-ancestor>.nav-lin {
    background: var(--lightbg);
    color: var(--primary);
}

.nav-item.active .nav-link, .navbar-nav .nav-link:hover {
    background: rgba(0, 0, 0, 0.04);
}

.btn {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 17px;
    transition: 0.3s ease-in-out;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-radius: 30px;
    font-size: 17px;
    border-color: var(--accent);
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.7;
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-outline-primary {
    color:  var(--primary);
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
}

.btn-outline-primary:hover {
    border-color: #E61E2B;
    background: var(--accent);
    color: #fff;
}
.btn-outline-primary.about-location-btn img {
    filter: brightness(1) invert(1);
}

.btn-outline-primary:hover img {
    filter: brightness(0) invert(1) !important;
}

.about-location-btn{
    justify-content: center;
    padding: 10px 16px;
    width: 100%;
}

.nav-item.position-static {
    position: relative;
}


.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) translateX(-50%);
    transition: all 0.25s ease;
    position: fixed;
    left: 50%;
    top: 136px;
    width: 100%;
    max-width: 1400px;
    z-index: 999;
    background: #fff;
    border-radius: 16px;
    padding: 24px 8px;
}

.mega-menu .container-custom{
    padding: 0 20px;
}

.nav-item.menu-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}

.mega-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.mega-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
}


.mega-title {
    font-weight: 600;
    margin-bottom: 16px;
    border-bottom: 1px solid #CED4DA;
    padding-bottom: 12px;
    padding-left: 6px;
    font-size: 16px;
    color: #0E172A;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 4px;
}

/* Item */
.service-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    border-radius: 30px;
    padding: 10px 12px;
    transition: all 0.25s ease;
    cursor: pointer;
}

/* Hover (light blue bg like UI) */
.service-item:hover {
    background: #F0F7FC;
}

.text-accent {
    color: var(--accent);
}

.services-wrapper{
    max-width: 1020px;
}

/* Icon circle */
.service-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon image */
.service-icon img {
    width: 20px;
    height: 20px;
}

/* Text */
.service-title {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
}

.quick-links-wrapper{
    height: fit-content;
    max-width: 348px;
}

.provider-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    transition: 0.2s;
}

.provider-item:hover {
    background: #F0F7FC;
}

.quick-card {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 12px;
}

.quick-card:last-of-type {
    margin-bottom: 0;
}

.bg-light-blue {
    background: #F0F7FC;
}

.h-fit {
    height: fit-content;
}

.text-primary-blue {
    color: var(--primary);
}

.text-gray {
    color: #0E172A
}

.btn-action {
    cursor: pointer;
    border: none;
    outline: none;
    background: var(--accent);
    width: 44px;
    height: 44px;
}

.btn-action.outline {
    border: 1px solid var(--primary);
    background: unset;
}

.text-14 {
    font-size: 14px;
}

.text-dark {
    color: #262626;
}

.max-width-1096 {
    max-width: 1096px;
}

.hero-section {
    background-color: #fff;
    padding-top: 36px;
}

.hero-card {
    border-radius: 30px;
    background-color: var(--lightbg);
    padding: 32px;
}


.avatar-stack {
    margin-right: 4px;
}

.avatar-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    margin-left: -8px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.avatar-stack .avatar-img:first-child {
    margin-left: 0;
}

.avatar-placeholder {
    background-color: #c8dde0;
}

.trusted-label {
    font-size: 16px;
    color: var(--text);
}


.hero-heading {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--primary);
    /* max-width: 580px; */
    text-transform: capitalize;
}

.hero-heading__accent {
    color: var(--accent);
    font-weight: 700;
}


.hero-sub {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.locations-list{
    margin-top: 78px;
}

.location-card {
    border-radius: 40px;
    font-size: 17px;
    transition: box-shadow 0.2s ease;
    padding: 11px 20px;
}

.location-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.location-name {
    font-size: 15px;
    color: var(--primary);
}

.location-meta {
    font-size: 13px;
    color: #6c757d;
}


.loc-btn {
    width: 40px;
    height: 40px;
    border: none;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.loc-btn:hover {
    opacity: 0.88;
    transform: scale(1.06);
}

.loc-btn--call {
    background-color: var(--accent);
    color: #fff;
}

.loc-btn--call:hover {
    color: #fff;
}

.loc-btn--map {
    background-color: transparent;
    border: 2px solid var(--primary) !important;
    color: var(--primary);
}

.loc-btn--map:hover {
    background-color: var(--primary);
    color: #fff;
}


.chatbot-placeholder {
    background-color: #F6F9FC;
    /* border: 2px dashed #c5e8ef; */
    min-height: 380px;
	background: url('https://sa1s3optim.patientpop.com/1536x/filters:format(webp)/sc-assets/prd/practices/f11152d4-0eab-4371-b381-58c64baefad9/fami.jpg');
    background-size: cover;
    background-position: 800px center;
}



.hero-slider {
    margin: 70px 0;
    width: 100%;
    padding: 8px 0;
}

.hero-slider__track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: hero-slide 24s linear infinite;
}

.hero-slider:hover .hero-slider__track {
    animation-play-state: paused;
}

.hero-slider__item {
    font-size: 80px;
    font-weight: 600;
    opacity: 0.5;
    color: #83C6EF;
    white-space: nowrap;
    letter-spacing: -1px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-slider__dot {
    font-size: 14px;
    opacity: 0.5;
    line-height: 1;
}

@keyframes hero-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}
.location-card .btn-action{
    width: 52px;
    height: 52px;
}
.shield-icon{
    width: 28px;
    height: auto;
}
.services-section{
    padding-bottom: 80px;
}
.services-label {
    font-size: 16px;
    font-weight: 800 !important;
    color: var(--primary);
    letter-spacing: 0.12em;
}
 
/* ---- Section Heading ---- */
.services-heading {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}
 
/* ---- Service Card ---- */
.service-card {
    gap: 30px;
    border: 1px solid #e8f0f2;
    background-color: #fff;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}
 
.service-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}
 
/* ---- Icon Box ---- */
.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: #EAF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
 
.service-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
 
/* ---- Card Title ---- */
.service-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #0E172A;
    line-height: 1.3;
}
 
/* ---- Card Description ---- */
.service-card__desc {
	font-weight: 500;
    font-size: 16px;
    color: #4A5565;
    line-height: 1.6;
}
 
/* ---- Learn More Link ---- */
.service-card__link {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: gap 0.2s ease;
}
 
.service-card__link:hover {
    color: var(--accent);
    gap: 8px !important;
}
 
/* ---- Chevron transition ---- */
#services-chevron {
    transition: transform 0.3s ease;
}
 
@media (min-width: 1200px) {
    .service-col {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
 
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.about-img-wrapper{
    max-width: 636px;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 214px 340px 160px;
    gap: 20px;
}

/* top-left — shorter */
.about-img-grid__item--1 {
    grid-column: 1;
    grid-row: 1;
}

/* right — spans row 1 and 2 only */
.about-img-grid__item--2 {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* bottom-left — tall */
.about-img-grid__item--3 {
    grid-column: 1;
    grid-row: 2 / 4;
}

/* bottom-right — small */
.about-img-grid__item--4 {
    display: block;
    grid-column: 2;
    grid-row: 3;
}

/* All images fill their cell */
.about-img-grid__item--1 .about-img,
.about-img-grid__item--2 .about-img,
.about-img-grid__item--3 .about-img,
.about-img-grid__item--4 .about-img {
    height: 100%;
}

.about-section{
    padding-bottom: 80px;
}
 
.about-img--placeholder {
    background-color: #d0e8ec;
}
 
/* ---- Points ---- */
.about-check {
    color: var(--primary);
    margin-top: 2px;
}
.text-18{
    font-size: 17px;
    line-height: 1.7;
}

.about-para{
    color: #183155;
    font-weight: 500;
}

.about-points{
    margin-bottom: 72px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 20px;
    gap: 24px;
    color: #183155;
}
.about-points > div{
    margin-top: 0;
}
.about-content-wrapper{
    max-width: 764px;
}

.experts-section {
    background-color: var(--primary);
    padding: 100px 0;
}
 
/* ---- White shield icon (filter trick) ---- */
.shield-icon-white {
    filter: brightness(0) invert(1);
}
 
/* ---- Expert Card ---- */
.expert-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.expert-card:hover {
    text-decoration: none;
    color: inherit;
}
.expert-card__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08);
}
 
.expert-card__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
 
.expert-card__img-wrap:hover .expert-card__img {
    transform: scale(1.03);
}
 
.expert-card__img--placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}
 
/* ---- Name ---- */
.expert-card__name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}
 
/* ---- Degree ---- */
.expert-card__degree {
    font-size: 20px;
    color: white;
    font-weight: 400;
}

.cta-section{
    padding: 80px 0;
}

.cta-card {
    border-radius: 30px;
    padding: 40px;
}
 
.cta-card--left {
    background: #FFFAEF;
}
 
.cta-card__bg-icon {
    position: absolute;
    right: -10px;
    top: 0px;
    width: 200px;
    height: auto;
    pointer-events: none;
}
 
/* ---- Right Card — Light blue ---- */
.cta-card--right {
    background: url('/wp-content/uploads/2026/04/right-cta-bg.png');
    background-size: cover;
}

.cta-card--right .cta-content{
    max-width: 560px;
}

.cta-card .cta-content{
    font-size: 20px;
    color: #4A5565;
    font-weight: 500;
    line-height: 1.5;
}
 
/* ---- Right Card BG Image ---- */
.cta-card__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.15;
    pointer-events: none;
}
 
.cta-card__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(229, 250, 255, 0.7);
    border-radius: 20px;
    pointer-events: none;
}
 
/* ---- Typography ---- */
.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}


.home-cta-card .cta-title{
	color: #262626
}

.about-us-cta-section{
    padding-bottom: 80px;
}
 
.home-cta-content {
    font-size: 20px;
    color: #0E172A;
    width: 50%;
    max-width: 626px;
    line-height: 1.6;
    padding-bottom: 30px;
}

.home-cta-content .cta-title{
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid #C1C1C1;
}

.home-cta-card {
    padding-left: 50px;
    padding-top: 60px;
    border-radius: 20px;
    background-image: url("/wp-content/uploads/2026/04/home-cta-bg.png");
    overflow: hidden;
    background-size: cover;
    gap: 40px;
}

.cta-sub {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 26px;
}

.cta-text {
    font-size: 17px;
    font-weight: 500;
    color: #0E172A;
    margin-bottom: 26px;
}

.cta-image{
    width: 55%;
    max-width: 707px;
}

.cta-image img {
    width: 100%;
}

.faq-section{
    padding-bottom: 80px;
}

.faq-list{
    margin-bottom: 50px;
}

.faq-item {
    background: #F6F9FC;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Question */
.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #0E172A;
}

/* Icon */
.faq-icon {
    font-size: 24px;
    font-weight: bold;
}

/* Answer */
.faq-answer {
    margin-top: 16px;
    font-size: 20px;
    color: #4A5565;
    display: none;
}

.faq-answer p{
    margin-bottom: 0;
    width: 98%;
}

/* Active */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .plus-icon{
    display: none;
}
.faq-item .minus-icon{
    display: none;
}
.faq-item.active .minus-icon{
    display: block;
}

.faq-item .faq-icon-less{
    display: none;
}

.faq-item.active .faq-icon-less {
    display: block;
}

.faq-item .faq-icon-collapse{
    display: block;
}

.faq-item.active .faq-icon-collapse {
    display: none;
}
.message-notification-btn{
    width: 95px;
    height: 95px;
    z-index: 100;
    position: fixed;
    bottom: 36px;
    right: 36px;
}

.site-footer {
    background: #183155;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-links a {
    font-size: 14px;
    color: #C7C7C7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a img{
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}
.footer-links a:hover img{
    opacity: 1;
}

.footer-brand img{
    margin-bottom: 22px;
}

.footer-text {
    font-size: 14px;
    color: #C7C7C7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
}

.footer-copy {
    font-size: 14px;
    color: #fff;
}

.footer-legal a {
    font-size: 16px;
    color: #C7C7C7;
    text-decoration: none;
    position: relative;
}

.footer-legal a:not(:last-child)::after {
    content: "•";
    margin: 0 24px;
    color: #C7C7C7;
}


.footer-legal a:hover {
    color: #fff;
}

.footer-location .footer-heading{
    font-size: 16px;
}

.footer-location .footer-text {
    margin-bottom: 10px;
    line-height: 1.2
}

.footer-location .footer-text img{
    opacity: 0.75;
}

.footer-location a {
    color: #C7C7C7;
    text-decoration: none;
}

.footer-location a:hover {
    color: #fff;
}
.footer-main {
    display: grid;
    grid-template-columns: 306px 1fr;
    gap: 60px;
}

.footer-left {
    position: relative;
    padding-right: 30px;
}

.footer-left::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

/* RIGHT GRID (3x2) */
.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
}

.page-hero {
    background: linear-gradient(180deg, #E1F5FA 0%, #ffffff 100%);
    padding: 52px 0;
    text-align: center;
}

.no-margin{
    margin: 0;
}
 
/* ---- Breadcrumb ---- */
.page-hero__breadcrumb {
    font-weight: 500;
    font-size: 16px;
}
 
.breadcrumb-link {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}
 
.breadcrumb-link:hover {
    opacity: 1;
    color: var(--primary);
}
 
.breadcrumb-sep {
    color: var(--primary);
    font-size: 16px;
}
 
.breadcrumb-current {
    color: var(--primary);
}

.hero-heading-bold{
    font-weight: 700;
}
.about-sticky-section {
    padding-top: 50px;
}

.about-sticky-wrap {
    background: #F0F7FC;
    border-radius: 28px;
    position: relative;
    padding: 50px 40px;
}

.molecule-img{
    position: relative;
}

.molecule-img > div{
    position: relative;
    z-index: 1;
}

.molecule-img::after{
    content: ' ';
    position: absolute;
    width: 36%;
    z-index: 0;
    right: 0px;
    top: 0;
    background: url("/wp-content/uploads/2026/04/molecular-structure-background.png");
    background-size: cover;
    background-position: left;
    aspect-ratio: 1 / 1;
    opacity: 70%;
    height: auto;
}

.about-sticky-wrap .row {
    margin: 0;
}


.about-sticky-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 28px;
    max-width: 480px;
}

.about-sticky-subheading {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(24, 49, 85, 0.16);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-sticky-text p {
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
    color: #0E172A;
    margin-bottom: 22px;
}

.about-sticky-text p:last-of-type{
    margin-bottom: 0;
}

.about-sticky-image-col {
    position: sticky !important;
    top: 160px;
    z-index: 1;
}

.about-sticky-image-wrap {
    max-width: 500px;
    margin-left: auto;
}


.about-sticky-image {
    position: relative;
    z-index: 2;
    width: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .about-sticky-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(512px, 500px);
        gap: 40px;
        align-items: start;
    }
}

.providers-grid-section {
    padding-top: 50px;
}

.providers-grid-box {
    background: #F0F7FC;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.providers-grid-box .row{
    row-gap: 40px;
}

.provider-card {
    height: 100%;
    text-align: center;
}

.provider-card-image-link {
    display: block;
    text-decoration: none;
}

.provider-card-image-wrap {
    border-radius: 8px;
    overflow: hidden;
    background: #f4f4f4;
    aspect-ratio: 1 / 1.24;
}

.provider-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.provider-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 144px;
    padding: 16px 8px 0;
    align-items: center;
}

.provider-card-title {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text);
}

.provider-card-title a {
    color: inherit;
    text-decoration: none;
}

.provider-card-title a:hover {
    color: var(--primary);
}

.provider-card-degree {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    color: #262626;
    margin-bottom: 16px;
    min-height: 20px;
}

.provider-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: 0.3s ease-in;
}

.provider-card-link:hover {
    opacity: 0.75;
}

.provider-card-link:hover img {
    transform: translateX(3px);
}

.provider-detail-section {
    background-color: #fff;
}
 
.provider-detail-card {
    background-color: #F0F7FC;
    border-radius: 30px;
    padding: 50px 40px;
    overflow: hidden;
}

.provider-detail-card .col-lg-8{
    max-width: 840px;
}
.provider-detail-card .col-lg-5{
    max-width: 522px;
}
 
/* ---- Left: Heading ---- */
.provider-detail__heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}
 
/* ---- Left: Content (WP editor output) ---- */
.provider-detail__content {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
}

.provider-detail__content h2, .provider-detail__content h3{
    font-size: 32px;
    color: #0E172A;
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid #C1C1C1;
    font-weight: 700;
    line-height: 1.44;
}
 
.provider-detail__content p {
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #0E172A;
}

.provider-detail__content a{
	color: var(--accent);
}
 
.provider-detail__content p:last-child {
    margin-bottom: 0;
}
 
/* ---- Right: Image ---- */
.provider-detail__img-wrap {
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}
 
.provider-detail__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    display: block;
}
 
/* ---- Right: Name ---- */
.provider-detail__name {
    font-size: 24px;
    font-weight: 700;
    color: #183155;
    line-height: 1.2;
}
 
/* ---- Right: Degree ---- */
.provider-detail__degree {
    font-size: 20px;
    color: #262626;
    font-weight: 500;
}

.services-page-grid-section {
    padding-top: 50px;
}

.services-page-grid-box {
    background: #F0F7FC;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
}

.service-page-card {
    height: 100%;
}

.service-page-card__inner {
    background: #fff;
    border-radius: 32px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-page-card__inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(24, 49, 85, 0.08);
}

.service-page-card__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-page-card__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.service-page-card__content {
    flex: 1 1 auto;
}

.service-page-card__title {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #0E172A;
    margin: 0 0 12px;
}

.service-page-card__title a {
    color: inherit;
    text-decoration: none;
}

.service-page-card__title a:hover {
    color: var(--primary);
}

.service-page-card__desc {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    color: #0E172A;
    margin: 0;
}

.service-page-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
}

.service-page-card__link:hover {
    color: var(--primary);
}

.service-page-card__arrow {
    display: inline-flex;
    transition: transform 0.25s ease;
}

.service-page-card__link:hover .service-page-card__arrow {
    transform: translateX(3px);
}

.is-hidden-service {
    display: none;
}

.services-page-grid-toggle {
    margin-top: 50px;
}

.services-toggle-btn {
    border: 0;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 10px 17px;
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.services-toggle-btn:hover {
    background: #c91622;
    transform: translateY(-1px);
}

.services-toggle-btn__icon {
    display: inline-flex;
    transition: transform 0.25s ease;
}

.services-toggle-btn.is-open .services-toggle-btn__icon {
    transform: rotate(180deg);
}

.service-detail-section {
    background-color: #fff;
}

.services-detail-card{
    padding: 40px;
    padding-bottom: 24px;
}

.services-detail-card .col-lg-8{
    max-width: 890px;
}

.service-body-card{
    padding: 50px 40px;
    background-color: #F9F9F9;
    border-radius: 30px;
}

.service-body-card .row{
    position: relative;
}

.service-body-card .col-lg-5{
    position: sticky;
    top: 160px;
}

.service-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 280px 132px;
    gap: 20px;
}

.service-gallery__item {
    overflow: hidden;
    border-radius: 12px;
}

.service-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-gallery__img__item--1 {
    grid-column: 1;
    grid-row: 1;
}

/* right — spans row 1 and 2 only */
.service-gallery__img__item--2 {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* bottom-left — tall */
.service-gallery__img__item--3 {
    grid-column: 1;
    grid-row: 2 / 4;
}

/* bottom-right — small */
.service-gallery__img__item--4 {
    display: block;
    grid-column: 2;
    grid-row: 3;
}

/* All images fill their cell */
.service-gallery__img__item--1 .service-gallery__img,
.service-gallery__img__item--2 .service-gallery__img,
.service-gallery__img__item--3 .service-gallery__img,
.service-gallery__img__item--4 .service-gallery__img {
    height: 100%;
}
 
/* Headings from WP editor (h3 as per design) */
.service-body__content h3 span, .service-body__content h3, .service-body__content h2 {
    font-size: 28px;
    font-weight: 700 !important;
    color: #0E172A;
    margin-top: 28px;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.service-body__content a{
	color: var(--accent)
}
 
.service-body__content h3:first-child, .service-body__content h2:first-child {
    margin-top: 0;
}
 
/* Paragraphs */
.service-body__content p {
    font-size: 17px;
    color: #0E172A;
    font-weight: 500;
    margin-bottom: 1rem;
}
 
.service-body__content p:last-child {
    margin-bottom: 0;
}
 
/* Lists — two column layout matching design */
.service-body__content ul {
    columns: 2;
    column-gap: 40px;
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}
 
.service-body__content ol {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}
 
.service-body__content li {
    margin-bottom: 0.4rem;
    break-inside: avoid;
    font-size: 17px;
    color: #0E172A;
    font-weight: 500;
}

.about-locations-block {
    margin: 26px 0 26px;
    padding: 26px 0 26px;
    border-top: 1px solid rgba(24, 49, 85, 0.12);
    border-bottom: 1px solid rgba(24, 49, 85, 0.12);
}

.about-location-card {
    text-align: center;
}

.about-location-card__image-wrap {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
    background: #f2f2f2;
    width: 100%;
    height: 160px;
}

.about-location-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-location-card__title {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 10px;
}

.navbar-toggler{
    border: none;
    padding: 0;
}

.navbar-toggler-icon{
    filter: brightness(0) invert(0) contrast(10);
    width: 28px;
    height: 28px;
}

.noti-btn{
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background-color: #CC1F2D13;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}

.mobile-cta-bar{
    display: none ;
}

.contact-locations-section {
    background-color: #fff;
}
 
/* ---- Card ---- */
.contact-card {
    background-color: #fff;
    border: 1px solid #e4edf5;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}
 
.contact-card:hover {
    box-shadow: 0 8px 32px rgba(24, 49, 85, 0.1);
    transform: translateY(-3px);
}
 
/* ---- Map ---- */
.contact-card__map {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #e8f0f5;
}
 
.contact-card__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
 
/* ---- Card Body ---- */
.contact-card__body {
    padding: 28px 28px 28px;
}
 
/* ---- Location Name ---- */
.contact-card__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}
 
/* ---- Address ---- */
.contact-card__address {
    font-size: 16px;
    color: #4A5565;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
 
/* ---- Hours ---- */
.contact-card__hours {
    background-color: var(--lightbg);
    border-radius: 12px;
    padding: 14px 16px;
}
 
.contact-card__hours-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
 
.contact-card__hours-time {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}
 
/* ---- Inline icon ---- */
.contact-card__icon-inline {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}
.testimonials-section{
	padding-top: 80px;
}
.testimonials-slider-wrapper {
    
    overflow: hidden;
}

/* SLIDE WIDTH (controls 3.5 cards) */
.testimonials-swiper .swiper-slide {
    width: 360px;
}

/* CARD */
.testimonial-card {
    border: 1px solid #4A556533;
    border-radius: 24px;
    padding: 24px;
    background: transparent;
    height: 100%;
}

.testimonial-card > .d-flex{
    margin-bottom: 30px;
}

/* STARS */
.stars span {
    color: #ddd;
    font-size: 26px;
}
.stars .filled {
    color: #FF7A00;
}

.testimonial-text{
    font-size: 17px;
    color: #0E172A;
    font-weight: 500;
}

.testimonial-card hr{
    margin: 24px 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.testimonial-author h6{
    font-size: 24px;
    font-weight: 600;
    color: #0E172A;
}
.testimonial-author span{
	font-weight: 500;
    font-size: 18px;
    color: #4A5565;
}

.swiper-pagination{
    margin-top: 50px !important;
    position: unset !important;
}
.swiper-pagination-bullet {
    background: #1018201F;
    width: 8px;
    height: 6px;
    opacity: 1;
    border-radius: 8px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 20px;
    height: 6px;
}

.blog-listing-section {
    background-color: #fff;
}
 
/* ---- Blog Card ---- */
.blog-card {
    border: 1px solid #e4edf5;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}
 
.blog-card:hover {
    box-shadow: 0 8px 32px rgba(24, 49, 85, 0.1);
    transform: translateY(-4px);
}
 
/* ---- Card Image ---- */
.blog-card__img-wrap {
    position: relative;
    overflow: hidden;
}
 
.blog-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
 
.blog-card__img--placeholder {
    width: 100%;
    height: 220px;
    background-color: var(--lightbg);
}
 
.blog-card__img-wrap:hover .blog-card__img {
    transform: scale(1.04);
}
 
/* ---- Category Badge ---- */
.blog-card__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 20px;
}
 
/* ---- Card Body ---- */
.blog-card__body {
    border-top: none;
}
 
/* ---- Meta ---- */
.blog-card__meta {
    font-size: 12px;
}
 
.blog-card__date,
.blog-card__read {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #6c757d;
    font-size: 12px;
}
 
/* ---- Title ---- */
.blog-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--primary);
}
 
.blog-card__title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
 
.blog-card__title-link:hover {
    color: var(--accent);
}
 
/* ---- Excerpt ---- */
.blog-card__excerpt {
    font-size: 16px;
    color: #4A5565;
    line-height: 1.65;
}
 
/* ---- Learn More ---- */
.blog-card__link {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: gap 0.2s ease;
}
 
.blog-card__link:hover {
    color: var(--accent);
    gap: 8px !important;
}
 
/* ---- Pagination ---- */
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e4edf5;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
 
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
 
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    border-color: var(--primary);
    color: var(--primary);
}

.single-blog-section {
    background-color: #fff;
}
 
/* ---- Featured Image ---- */
.single-blog__hero-img {
    border-radius: 20px;
    overflow: hidden;
}
 
.single-blog__img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
 
/* ---- Meta ---- */
.single-blog__cat {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
 
.single-blog__cat:hover {
    opacity: 0.85;
    color: #fff;
}
 
.single-blog__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #6c757d;
}
 
/* ---- Post Content ---- */
.single-blog__content {
    font-size: 17px;
    color: var(--text);
    line-height: 1.85;
}
 
.single-blog__content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
 
.single-blog__content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
 
.single-blog__content p {
    margin-bottom: 1.25rem;
}
 
.single-blog__content ul,
.single-blog__content ol {
    padding-left: 1.4rem;
    margin-bottom: 1.25rem;
}
 
.single-blog__content li {
    margin-bottom: 0.5rem;
}
 
.single-blog__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}
 
.single-blog__content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    margin: 2rem 0;
    background-color: var(--lightbg);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--primary);
}
 
.single-blog__content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
 
.single-blog__content a:hover {
    opacity: 0.8;
}
 
/* ---- Author Box ---- */
.single-blog__author {
    background-color: var(--lightbg);
    border-radius: 16px;
    padding: 24px 28px;
}
 
.single-blog__author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
 
.single-blog__author-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
 
.single-blog__author-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}
 
/* ---- Related Posts ---- */
.related-posts-section {
    background-color: #f8fbff;
    border-top: 1px solid #e4edf5;
}
 
.related-posts__heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.resources-dropdown {
    position: relative;
}

.resources-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    padding: 12px 0;
    display: none;
    z-index: 99;
     opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.resources-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: 0.2s ease;
}

.resources-menu a:last-child {
    border-bottom: none;
}

.resources-menu a:hover {
    background: #f5f7fb;
    padding-left: 24px;
}

.resources-dropdown.show-dropdown .resources-menu {
	display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-simple-link {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #0E172A;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: 0.2s ease;
}

.mobile-simple-link:last-child {
    border-bottom: none;
}

.mobile-simple-link:hover {
    background: #f5f7fb;
    padding-left: 24px;
}

.employment-section {
    background: #fff;
    padding-bottom: 80px !important;
}

/* CARD */
.role-card {
    background: #f9fbff;
    border-radius: 16px;
    padding: 40px 24px;
    border: 1px solid #e6ecf5;
    transition: 0.25s ease;
    height: 100%;
}

.role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* RED DOT */
.role-card__dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background: #e63946; /* your theme red */
    border-radius: 50%;
}

.employment-section .text-secondary{
	font-size: 18px;
    font-weight: 500
}

.employment-section .text-secondary a{
	color: var(--accent)
}

.insurance-page-section {
    background: #fff;
}

.insurance-page-card {
    background: #f0f7fc;
    border-radius: 30px;
    padding: 40px;
}

.insurance-list-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.insurance-name-item {
    background: #fff;
    border: 1px solid #e4edf5;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 600;
    color: #0e172a;
    text-align: center;
}

.insurance-name-item img{
	width: 100%;
    height: auto
}

.self-pay-group:last-child {
    margin-bottom: 0 !important;
}

.self-pay-group__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.self-pay-table {
    border: 1px solid #dce8f3;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    padding: 16px 24px;
    background: #fff;
}

.self-pay-row {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px 18px;
    border-bottom: 1px solid #e3e3e3;
    justify-content: center;
    align-items: center;
}

.self-pay-row:last-child {
    border-bottom: none;
}

.self-pay-row__name {
    font-size: 16px;
    font-weight: 600;
    color: #0e172a;
}

.self-pay-row__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.location-details-section {
    padding-top: 0;
}
.location-detail-block {
    scroll-margin-top: 120px;
}
.location-detail-block--alt {
    background: #F0F7FC;
    border-radius: 20px;
    padding: 40px 32px;
}
.location-detail__content p {
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
    color: #0E172A;
    margin-bottom: 1rem;
}
.location-detail__content p:last-child {
    margin-bottom: 0;
}
.location-detail__facts {
    margin-bottom: 0;
    font-size: 17px;
}
.location-detail__facts img {
    width: 24px;
    flex-shrink: 0;
}
.location-title {
    gap: 10px;
}
.location-title img {
    width: 30px;
    flex-shrink: 0;
}
.location-title .services-heading {
    margin: 0 !important;
}
.location-details-section .contact-card {
    box-shadow: 0 8px 24px rgba(24, 49, 85, 0.08);
}
.location-details-section .contact-card:hover {
    transform: none;
}
.location-details-section .contact-card__map {
    border-radius: 12px;
    height: 220px;
}

.location-hours-list__row {
    padding: 8px 0;
    border-bottom: 1px dashed #dce6ef;
    font-size: 15px;
}

.location-hours-list__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location-hours-list__day {
    color: #4A5565;
}

.location-hours-list__time {
    font-weight: 600;
    color: var(--text, #0E172A);
    white-space: nowrap;
}

.location-single-address {
    padding-top: 16px;
    border-top: 1px solid #e4edf5;
}
.location-single-about-section{
    padding-top: 80px;
    padding-bottom: 150px;
}

.location-single-about-section .location-detail__content h2 {
    font-size: 32px;
    color: #0E172A;
    margin-bottom: 20px;
}

.location-serve-section {
    background: var(--primary);
    color: #fff;
    padding: 80px 0;
}

.location-serve-section__label {
    color: #bcdcff !important;
}

.location-serve-section__heading {
    color: #fff !important;
}

.location-serve-section__content,
.location-serve-section__content p {
    color: #cfe0f1;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
}

.location-serve-towns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
}

.location-serve-towns__item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-serve-towns__item::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.location-serve-map-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 26px;
}

.location-serve-map-card__title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.location-serve-map-card__address {
    color: #aebfd2;
    font-size: 15px;
    margin: 0;
}

.location-serve-map-card__map {
    width: 100%;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
}

.location-serve-map-card__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.faq-answer ul {
    margin: 12px 0 0;
    padding-left: 20px;
}
.faq-answer li {
    margin-bottom: 6px;
}

@media (min-width: 1440px) {
    .testimonials-slider-wrapper {
        padding-left: calc((100% - 1440px)/2);
    }
}

@media only screen and (max-width: 1520px){
    .testimonials-swiper{
        padding: 0 40px;
    }

}

@media only screen and (max-width: 1360px){
    .btn{
        font-size: 16px;
    }
    .about-img-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 310px 130px;
        gap: 20px;
    }
}

@media only screen and (max-width: 1279px){
    .navbar-collapse .btn{
        width: 56px;
        overflow: hidden;
        padding: 3px 14px;
        gap: 14px;
    }
    .navbar-collapse .btn img{
        min-width: 28px;
    }
    .navbar-brand img{
        width: 190px;
    }
    .services-grid{
        grid-template-columns: repeat(3,1fr);
    }
    .location-card{
        font-size: 16px;
    }
    .location-card p{
        min-width: 82px;
    }
    .locations-list{
        margin-top: 40px;
    }
    .hero-card {
        border-radius: 20px;
        padding: 24px;
    }
    .expert-card__name{
        font-size: 22px;
    }
    .about-sticky-wrap{
        grid-template-columns: 1.5fr 1fr;
    }
    .services-page-grid-box{
        border-radius: 20px;
    }
    .insurance-list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 1024px){
    .main-header{
        height: 70px;
    }
    .hero-slider__item{
        font-size: 60px;
    }
	.location-single-about-section{
        padding-bottom: 100px;
    }

}
@media (max-width: 991.98px) {
    .service-body-card .col-lg-5{
        position: unset;
    }
    .service-gallery{
        gap: 16px;
        grid-template-rows: 220px 320px 170px;
    }
    .molecule-img::after{
        width: 75%;
    }
    .noti-btn{
        display: flex;
        outline: none;
    }
    .message-notification-btn{
        display: none;
    }
    .mobile-cta-bar{
        width: 100%;
        display: flex;
        padding: 12px 10px;
        position: fixed;
        bottom: 0;
        z-index: 10;
        background-color: #fff;
    }
    .mobile-cta-bar .btn{
        flex: 1;
        justify-content: center;
        font-weight: 600;
        padding: 12px;
        gap: 6px;
    }
    .site-footer{
        padding-bottom: 100px !important;
    }
    .about-img-wrapper, .about-content-wrapper, .home-cta-content, .cta-image{
        max-width: unset;
    }
    .home-cta-card{
        padding: 40px;
        padding-bottom: 0;
        gap: 0;
    }
    .home-cta-content{
        width: 100%;
    }

    .cta-image{
        width: 84%;
        position: relative;
        right: -80px;
    }

    /* ---- Overlay ---- */
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1040;
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    /* ---- Drawer wrapper ---- */
    .mobile-nav-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1050;
        pointer-events: none;
    }

    /* ---- Each panel ---- */
    .mobile-panel {
        position: absolute;
        top: 0;
        padding: 0 16px;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        pointer-events: all;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .mobile-panel.active {
        transform: translateX(0);
    }

    /* Sub-panels slide in from right */
    .mobile-panel.sub-panel {
        transform: translateX(100%);
    }

    .mobile-panel.sub-panel.active {
        transform: translateX(0);
    }

    /* ---- Panel Header ---- */
    .mobile-panel__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 6px 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-panel__title {
        font-size: 20px;
        font-weight: 700;
        color: #262626;
        margin: 0;
    }

    .mobile-panel__close,
    .mobile-panel__back {
        background: none;
        border: none;
        padding: 4px;
        cursor: pointer;
        font-weight: 600;
        color: #262626;
        font-size: 20px;
        line-height: 1;
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .mobile-panel__back svg{
        width: 28px;
        height: 28px;
    }

    /* ---- Nav List ---- */
    .mobile-nav__list {
        list-style: none;
        margin: 0;
        padding: 8px 0;
    }

    .mobile-nav__item {
        border-bottom: 0.5px solid #eee;
    }

    .mobile-nav__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 6px;
        font-size: 18px;
        font-weight: 600;
        color: #262626;
        text-decoration: none;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        transition: background 0.15s ease;
    }

    .mobile-nav__item:last-of-type{
        border: none;
    }

    .mobile-nav__link:hover,
    .mobile-nav__link:focus {
        background: #f8fbff;
        color: var(--primary);
    }

    .mobile-nav__chevron {
        color: #aaa;
        flex-shrink: 0;
    }

    /* ---- Quick Actions ---- */
    .mobile-quick-actions {
        margin-top: 8px;
    }

    .mobile-quick-actions__title {
        font-size: 16px;
        font-weight: 600;
        color: #4A5565;
        margin-bottom: 12px;
        padding: 12px 6px;
        padding-top: 0;
        border-bottom: 0.5px solid #eee;
    }

    /* ---- Location Cards in mobile ---- */
    .mobile-location-card {
        background: #fff;
        font-size: 16px;
        border: 0.5px solid #eee;
        border-radius: 16px;
        padding: 10px 12px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .mobile-location-card:last-child {
        margin-bottom: 0;
    }

    /* ---- Provider list in sub panel ---- */
    .mobile-provider-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        text-decoration: none;
        color: var(--primary);
        transition: background 0.15s ease;
    }

    .mobile-provider-item:hover {
        background: #f8fbff;
        color: var(--primary);
    }

    .mobile-provider-item.active-item {
        background: #f0f6ff;
    }

    .mobile-provider-item__img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .mobile-provider-item__name {
        font-size: 16px;
        font-weight: 600;
        color: #262626;
        margin: 0;
        line-height: 1.3;
    }

    .mobile-provider-item__cred {
        font-size: 16px;
        color: #4A5565;
        margin: 0;
        font-weight: 500;
    }

    /* ---- Service list in sub panel ---- */
    .mobile-service-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        text-decoration: none;
        color: #262626;
        border-radius: 0;
        transition: background 0.15s ease;
    }

    .mobile-service-item:hover {
        background: #f8fbff;
        color: #262626;
    }

    .mobile-service-item.active-item {
        background: #eef5ff;
    }

    .mobile-service-item__icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-service-item__icon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

    .mobile-service-item__title {
        font-size: 16px;
        font-weight: 600;
        color: var(--primary);
    }

    /* ---- View All link ---- */
    .mobile-view-all {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 18px 20px;
        font-size: 16px;
        font-weight: 700;
        border-top: 1px solid #eee;
        margin-top: 16px;
        color: var(--accent);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .mobile-view-all img{
        width: 24px;
        height: 24px;
    }

    /* ---- Hide Bootstrap collapse on mobile, we handle it ---- */
    .navbar-collapse {
        display: none !important;
    }

    /* ---- Toggler stays visible ---- */
    .navbar-toggler {
        display: flex !important;
    }
    .footer-main{
        gap: 40px;
    }
    .footer-right{
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 28px;
    }
    .footer-copy{
        width: 44%;
    }
    .footer-legal a{
        font-size: 14px;
    }
    .footer-legal a:not(:last-child)::after{
        margin: 0 16px;
    }
    .footer-bottom{
        gap: 20px;
    }
    .blog-card__img,
    .blog-card__img--placeholder {
        height: 190px;
    }
 
    .single-blog__img {
        max-height: 380px;
    }
	.location-detail-block {
        scroll-margin-top: 100px;
    }
    .location-detail-block--alt {
        padding: 28px 20px;
        border-radius: 16px;
    }
    .location-detail__content p {
        font-size: 15px;
        line-height: 1.55;
    }
    .location-detail__facts {
        font-size: 16px;
        grid-template-columns: 1fr;
    }
    .location-title .services-heading {
        font-size: 28px;
    }
    .location-title img {
        width: 26px;
    }
    .contact-locations-section {
        padding-top: 32px;
        padding-bottom: 16px;
    }
}

@media (min-width: 992px) {
    .mobile-nav-overlay,
    .mobile-nav-drawer {
        display: none !important;
    }
}

@media only screen and (max-width: 767px){
	.location-single-about-section{
        padding-bottom: 60px;
    }
	.employment-section{
    	padding-bottom: 40px !important;
    }
	.role-card h5{
    	font-size: 18px;
    }
	.employment-section .text-secondary{
		font-size: 16px;
    }
    .insurance-page-section .container-custom {
        padding: 0;
    }
    .insurance-page-card {
        border-radius: 0;
        padding: 40px 16px;
    }
    .insurance-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .insurance-name-item {
        font-size: 15px;
        padding: 12px;
    }
    .self-pay-group__title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .self-pay-table{
    	padding: 0;
        grid-template-columns: repeat(1, 1fr)
    }
    .self-pay-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 14px;
    }
    .self-pay-row__name,
    .self-pay-row__price {
        font-size: 14px;
    }
	.blog-card__img,
    .blog-card__img--placeholder {
        height: 200px;
    }
    
    .blog-card__title{
    	font-size: 18px;
    }
    
    .single-blog__content h2{
    	font-size: 24px;
    }
 
    .single-blog__content, .blog-card__excerpt {
        font-size: 14px;
    }
 
    .single-blog__author {
        padding: 18px 20px;
    }
    .container-custom{
        padding: 0 16px;
    }
    .testimonials-section{
        padding: 40px 0;
        text-align: center;
    }
    .swiper-pagination{
        margin: 26px 0;
    }
    .testimonials-swiper{
        padding: 0 16px;
    }
    .testimonial-card > .d-flex{
        margin-bottom: 20px;
    }
    .testimonial-card hr{
        margin: 16px 0;
    }
    .testimonial-card{
        padding: 14px;
    }
    .testimonial-text{
        font-size: 14px;
        margin-bottom: 16px;
    }
    .testimonial-author img{
        width: 54px;
        height: 54px;
    }
    .testimonial-author img{
        width: 54px;
        height: 54px;
    }
    .testimonial-author h6{
        font-size: 20px;
    }
    .testimonial-author span{
        font-size: 16px;
    }
    .molecule-img::after{
        width: 96%;
        aspect-ratio: 1 / 1.2;
    }
    .hero-section{
        padding-top: 0;
        overflow: hidden;
    }
    .hero-section .container-custom{
        padding: 0;
    }
    .trusted-label{
        font-size: 14px;
    }
    .hero-card{
        padding: 24px 16px;
        padding-bottom: 14px;
        border-radius: 0;
    }
    .hero-heading{
        font-size: 30px;
        margin-bottom: 12px;
    }
    .hero-sub{
        font-size: 14px;
    }
    .locations-list{
        margin-top: 24px;
    }
    .location-card .btn-action{
        width: 44px;
        height: 44px;
    }
    .location-card{
        font-size: 14px;
        border-radius: 14px;
        padding: 10px;
    }
    .location-card .hero-slider__dot{
        display: none;
    }
    .location-card .location-text{
        font-size: 12px;
    }
    .hero-slider__item{
        font-size: 40px;
    }
    .hero-slider{
        margin: 40px 0;
    }
    .topbar{
        font-size: 12px;
        padding: 10px 0;
    }
    .topbar span{
        display: block;
    }
    .topbar div a{
        margin-right: 8px;
    }
    .topbar div a:not(:last-child)::after{
        margin-left: 8px;
    }
    .topbar div a:last-of-type{
        margin-right: 0;
    }
    .navbar-brand img{
        width: 168px;
    }
    .main-header{
        height: 60px;
    }
    .services-label{
        font-size: 14px;
    }
    .services-heading{
        font-size: 24px;
        max-width: 298px;
        margin: 0 auto;
    }
    .service-card{
        gap: 16px;
    }
    .service-card__icon{
        width: 44px;
        height: 44px;
    }
    .service-card__icon img{
        width: 24px;
        height: 24px;
    }
    .service-card__title{
        font-size: 16px;
    }
    .service-card__desc {
        font-size: 12px;
    }
    .card-cta{
        font-size: 13px;
    }
    .about-img-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 130px 200px 100px;
        gap: 16px;
    }
    .services-section{
        padding-bottom: 60px;
    }
    .about-content-wrapper{
        margin-top: 40px;
        text-align: center;
    }
    .about-content-wrapper .services-heading{
        text-align: center;
    }
    .about-points{
        grid-template-columns: repeat(1, 1fr);
        font-size: 18px;
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 1px solid #c1c1c1;
    }
    .about-para{
        font-size: 14px;
        text-align: center;
    }
    .about-section{
        padding-bottom: 60px;
    }
    .experts-section{
        padding: 40px 0;
        text-align: center;
    }
    .expert-card__name{
        font-size: 18px;
    }
    .expert-card__degree{
        font-size: 16px;
    }
    .cta-section{
        padding: 40px 0;
    }
    .cta-card{
        padding: 26px 20px;
        border-radius: 20px;
    }
    .cta-title{
        font-size: 24px;
    }
    .cta-card .cta-content{
        font-size: 14px;
    }
    .cta-card .btn{
        flex-basis: 100%;
    }
    .cta-image{
        right: -10px;
        width: 100%;
    }
    .about-us-cta-section{
        padding-bottom: 40px;
    }
    .about-us-cta-section .container-custom{
        padding: 0;
    }
    .home-cta-card{
        padding: 40px 16px;
        border-radius: 0;
        padding-bottom: 0;
    }
    .home-cta-content{
        padding-bottom: 0;
    }
    .cta-sub{
        font-size: 18px;
    }
    .cta-text{
        font-size: 14px;
    }
    .faq-section{
        padding-bottom: 40px;
    }
    .faq-list{
        margin-bottom: 24px;
    }
    .faq-item{
        margin-bottom: 16px;
        padding: 14px;
        border-radius: 12px;
    }
    .faq-question{
        font-size: 16px;
    }
    .faq-answer{
        font-size: 14px;
        margin-top: 12px;
    }
    .site-footer{
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .footer-main{
        flex-direction: column;
        display: flex;
        gap: 32px;
    }
    .footer-right{
        display: flex;
        row-gap: 32px;
        column-gap: 16px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-right > div{
        min-width: 47.6%;
    }
    .footer-bottom{
        flex-direction: column;
        padding-top: 12px;
        gap: 6px;
    }
    .footer-legal a{
        font-size: 12px;
    }
    .footer-legal a:not(:last-child)::after{
        margin: 0 10px;
    }
    .footer-copy{
        width: 100%;
        text-align: center;
        font-size: 12px;
        order: 2;
    }
    .footer-left{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0;
        border: none;
    }
    .footer-left::after{
        display: none;
    }
    .footer-brand img{
        width: 100%;
        margin-bottom: 8px;
    }
    .footer-heading{
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 12px;
    }
    .footer-links li{
        margin-bottom: 6px;
    }
    .footer-links li a, .footer-text{
        font-size: 12px;
    }
    .footer-location{
        flex-basis: 100%;
    }
    .btn{
        font-size: 14px;
    }
    .btn img{
        width: 20px;
        height: auto;
    }
    .page-hero{
        padding-top: 30px;
        padding-bottom: 0;
    }
    .page-hero__breadcrumb{
        font-size: 14px;
        margin-bottom: 12px !important;
    }
    .page-hero .hero-sub{
        font-size: 16px;
    }
    .page-hero .btn, .provider-detail-card .btn, .contact-card .btn{
        flex: 1;
        flex-basis: 100%;
    }
    .about-sticky-section .container-custom, .service-body-section .container-custom{
        padding: 0;
    }
    .about-sticky-wrap, .service-body-card{
        padding: 40px 16px;
        border-radius: 0;
    }
    .about-sticky-title, .provider-detail__content h2, .provider-detail__content h3{
        font-size: 24px;
        margin-bottom: 16px;
    }
    .provider-detail__content h2, .provider-detail__content h3{
        padding-bottom: 16px;
    }
    .about-sticky-subheading{
        font-size: 16px;
        margin-bottom: 16px;
        padding-top: 16px;
    }
    .about-sticky-text p, .provider-detail__content p{
        line-height: 1.4;
        font-size: 14px;
        margin-bottom: 16px;
    }
    .about-locations-block{
        padding: 16px 0;
        margin: 16px 0;
    }
    .services-page-grid-section .container-custom, .service-detail-section .container-custom, .provider-detail-section .container-custom{
        padding: 0;
    }
    .services-page-grid-box, .provider-detail-card{
        border-radius: 0;
        padding: 40px 16px;
    }
    .service-page-card__inner{
        border-radius: 12px;
        gap: 16px;
        padding: 14px;
    }
    .service-page-card__icon{
        width: 48px;
        min-width: unset;
        height: 48px;
        border-radius: 8px;
    }
    .service-page-card__title{
        font-size: 16px;
        margin-bottom: 8px;
    }
    .service-page-card__desc{
        font-size: 12px;
    }
    .service-page-card__link{
        font-size: 13px;
    }
    .service-gallery{
        grid-template-rows: 130px 200px 100px;
    }
    .service-body__content h3 span, .service-body__content h3, .service-body__content h2{
        font-size: 20px;
        margin: 16px 0;
    }
    .service-body__content p{
        font-size: 14px;
        margin-bottom: 16px;
    }
    .service-body__content li{
        font-size: 14px;
        margin-bottom: 6px;
    }
    .service-body__content ul{
        columns: 1;
    }
    .provider-detail__name{
        font-size: 18px;
    }
    .provider-detail__degree{
        font-size: 16px;
    }
    .contact-card__body{
        padding: 20px 16px;
    }
    .contact-card__name{
        font-size: 20px;
    }
    .contact-card__address{
        font-size: 14px;
    }
    .contact-card__hours{
        padding: 10px;
        border-radius: 8px;
    }
    .contact-card__hours-label{
        font-size: 12px;
    }
    .contact-card__hours-time{
        font-size: 14px;
    }
	.location-details-section {
        padding-top: 8px;
        padding-bottom: 24px;
    }
    .location-detail-block {
        scroll-margin-top: 90px;
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
    .location-detail-block--alt {
        padding: 20px 16px;
        border-radius: 12px;
        margin-left: 0;
        margin-right: 0;
    }
    .location-title .services-heading {
        font-size: 24px;
    }
    .location-title img {
        width: 22px;
    }
    .location-detail__content p {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 12px;
    }
    .location-detail__facts {
        font-size: 15px;
        gap: 10px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    .location-detail__facts img {
        width: 20px;
    }
    .location-details-section .contact-card__map {
        height: 180px;
    }
    .contact-locations-section .contact-card .btn {
        flex: 1 1 100%;
    }
    .location-details-section .contact-card .btn {
        flex: 1 1 100%;
        width: 100%;
    }
    .location-single-about-section .location-detail__content h2 {
        font-size: 24px;
    }

    .location-hours-list__row {
        font-size: 14px;
    }
    .location-serve-towns {
        grid-template-columns: 1fr;
    }

    .location-serve-map-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .location-serve-map-card__map {
        height: 180px;
    }

    .location-serve-section__content,
    .location-serve-section__content p {
        font-size: 14px;
    }
}