:root {
    --primary-color: #198B53;
    --primary-dark: #198B53;
    --secondary-color: #F0F9F6;
    --text-primary: #333333;
    --text-secondary: #666666;
    --background-light: #F7F9F5;
    --white: #ffffff;
    --background-mint: #F5FAF7;
    --text-dark: #000000;
    --text-gray: #666666;
    --text-light: #ffffff;

    --font-primary: 'Poppins', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xlg: 10rem;

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --transition-speed: 0.3s;

    --bs-primary: #00A651;
}

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

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--background-light);
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}


.subtitle {
    text-align: left;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
    font-weight: bold;
}

.title {
    font-weight: bold;
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.nav-item {
    margin-right: 20px;
}

.dropdown-larger {
    display: none; /* Hidden by default */
    border: none;
    border-radius: 20px;
    padding: var(--spacing-sm);
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    grid-template-columns: repeat(3, 1fr); /* Grid layout */
    gap: var(--spacing-md);
}


.dropdown-larger .dropdown-item {
    text-align: left;
    padding: var(--spacing-xs);
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.dropdown-larger .dropdown-item:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.nav-link {
    display: block;
    gap: var(--spacing-md);
    color: var(--text-color) !important;
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover{
    color: var(--primary-color) !important;
}

.nav-button {
    display: flex;
    gap: var(--spacing-sm);
}

.nav-link.active {
     color: var(--primary-color) !important;
     border-bottom: 2px solid var(--primary-color);
     width: 35%;
     word-wrap: none;
     white-space: nowrap;
     font-weight: bold;
 }


.btn {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 1.25rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--transition-speed);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}


.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-custom-lg {
    font-size: 1rem;
    padding: 16px 20px;
    font-weight: bold;
}

.btn-text-green {
    background-color: transparent;
    color: var(--primary-dark);
    border: none;
    padding: 0;
    font-weight: 500;
    box-shadow: none;
    text-decoration: none;
}

.btn-text-green:hover {
    color: var(--primary-dark);

}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-color);
}

.bg-outline-success{
    background-color: transparent;
    border: 1.5px solid var(--primary-color);
}

.healthcare-hero {

    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--background-mint);
    background-image:  url('/static/images/background-pattern.png');
    background-repeat: no-repeat;
    /* background-size: cover; */
    padding: 0.75rem 8%;
}

.healthcare-hero * {
    box-sizing: border-box;
}

.healthcare-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.healthcare-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.healthcare-hero__heading {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: black;
}

.healthcare-hero__highlight {
    color: var(--primary-color);
}

.healthcare-hero__description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}


.healthcare-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .healthcare-hero__container {
        flex-direction: row;
        align-items: center;
    }

    .healthcare-hero__content {
        flex: 1;
        padding-right: 2rem;
    }

    .healthcare-hero__images {
        flex: 1;
    }
}

.hero-swiper {
    width: 100%;
    overflow: hidden;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (min-width: 1024px) {
    .healthcare-hero__heading {
        font-size: 3rem;
    }
}

.search-bar {
    margin-top: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
    padding: 3%;
}

.quick-search-card {
    max-width: 1280px;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 16px 40px rgba(20, 41, 30, 0.08);
    /* border: 1px solid rgba(25, 139, 83, 0.08);
    backdrop-filter: blur(10px); */
    padding: 1rem;
}

.quick-search-card__label {
    color: #212529;
    font-size: 1.05rem;
    font-weight: 500;
}

.quick-search-card__shell {
    background: var(--white);
}

.quick-search-card__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 4rem;
    border: 1px solid #d8e2db;
    border-radius: 1.25rem;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.quick-search-card__input-wrap:focus-within {
    border-color: rgba(25, 139, 83, 0.35);
    box-shadow: 0 0 0 5px rgba(25, 139, 83, 0.08);
    transform: translateY(-1px);
}

.quick-search-card__icon {
    position: absolute;
    left: 1rem;
    color: #98a2b3;
    font-size: 1.15rem;
}

.quick-search-card__input {
    min-height: 4rem;
    padding: 1rem 1rem 1rem 2.75rem;
    font-size: 1rem;
    color: #344054;
    border-radius: 1.25rem;
}

.quick-search-card__input::placeholder {
    color: #98a2b3;
}

.quick-search-card__button {
    min-height: 4rem;
    border: 0;
    border-radius: 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.quick-search-card__button:hover,
.quick-search-card__button:focus {
    background: #177645;
    color: var(--white);
}

@media (min-width: 768px) {
    .quick-search-card {
        padding: 1.25rem;
    }

    .quick-search-card__button {
        min-width: 8rem;
    }
}


.quick-action__container {
    max-width: 1280px;
}

.quick-action__card {
    width: 100%;
    min-height: 5.25rem;
    border-color: #d9e2da !important;
    border-radius: .75rem;
    color: #30353b;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed), transform var(--transition-speed);
}

.quick-action__card:hover {
    color: #30353b;
    border-color: #b7cbbb;
    box-shadow: 0 10px 24px rgba(20, 41, 30, 0.08);
    transform: translateY(-1px);
}

.quick-action__icon {
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1;
}

.quick-action__text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
}

.quick-action__arrow {
    color: #30353b;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .quick-action__container {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }

    .quick-action__card {
        min-height: 4.7rem;
    }

    .quick-action__text {
        max-width: 7rem;
    }
}



.specialties {
    padding: var(--spacing-lg) 0;
    background: var(--background-light);
}

.section-subtitle {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
    font-weight: bold;
}

.section-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.specialties-grid {
    gap: var(--spacing-md);
}

.specialty-card {
    background: var(--white);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    text-align: left;
    transition: transform var(--transition-speed);
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.main-steps {
    padding: var(--spacing-lg) 0;
    background: var(--background-light);
}

.steps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}



.step-item {
    display: flex;
    margin-bottom: var(--spacing-md);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    color: white;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 30px;
    position: relative;
}

.line {
    position: absolute;
    padding-top: 80px;
    top: 40px;
    border: 1px dotted var(--primary-dark);
    bottom: 0;
}

.step-number p {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-holder {
    float: right;
    height: 300px;
    width: 300px;
    border-radius: 250px;
    background-color: var(--primary-dark);
    position: relative;
}

.f-doctor {
    bottom: -70px;
    left: -110px;
    right: 40px;
    position: absolute;
    float: center;
    height: 500px;
}

.book-now {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    display: inline-block;
    transition: background-color 0.3s ease;
    width: 250px;
    text-align: center;
}

.book-now:hover {
    background: var(--primary-dark);
    border-color: var(--primary-color);
    color: white;
}

.healthcare-reimagined {
    padding: var(--spacing-lg) 0;
    background: var(--background-light);
}

.healthcare-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.feature-list {
    list-style-type: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
}

.join-doctors {
    padding: var(--spacing-lg) 0;
    background: #d0dbd6;
    text-align: center;
}

.join-content {
    margin: 0 auto;
}

.practice-main {
    background-color: var(--primary-dark);
    border-radius: 30px;
    padding: 20px 40px;
    color: white;
    text-align: left;
}

.practice-left p {
    font-size: 18px;
}

.join-button {
    margin-top: 70px;
}

.join {
    padding: 12px 70px;
    background-color: white;
    border: none;
    border-radius: 15px;
    color: var(--primary-dark);
    font-weight: bold;
    box-shadow: 1px 3px 3px rgb(168, 177, 168) inset;
}

.practice-doctors {

    animation: transtate 5s infinite;
}

@keyframes transtate {
    50% {
        margin-left: -10px;
    }
}

.featured-experts {
    padding: var(--spacing-lg) 0;
    background: var(--background-light);
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}


.expert-grid h5 {
    text-decoration: bolder;
}

.expert-image {
    border-radius: var(--radius-lg) !important;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.expert-card:hover .expert-image {
    transform: scale(1.1);
}

.expert-info {
    padding: var(--spacing-sm);
    text-align: center;
}


/* Review Cards */
.review-card {
    background-color: #edf7f2;
    border-radius: var(--radius-md);
    border: 1px solid rgba(25, 139, 83, 0.1);
    box-shadow: 0 18px 40px rgba(9, 49, 29, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(9, 49, 29, 0.12);
}

.review-quote-badge {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    font-size: 2rem;
    line-height: 1;
}

.review-card-text {
    color: #444444;
    line-height: 1.8;
}

.review-avatar {
    width: 84px;
    height: 84px;
    object-fit: cover;
}



.contact {
    padding: var(--spacing-lg) 0;
    background: var(--background-light);
}

.contact .contact-section {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 24px 60px rgba(9, 49, 29, 0.08);
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.contact-form-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.contact-input-group {
    background-color: var(--white);
    border: 1px solid #dfe5ec;
    border-radius: 1.1rem;
    padding: 0.35rem 0.75rem;
    min-height: 3.7rem;
    align-items: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-input-group:focus-within {
    border-color: rgba(25, 139, 83, 0.35);
    box-shadow: 0 0 0 4px rgba(25, 139, 83, 0.08);
    transform: translateY(-1px);
}

.contact-input-icon {
    background: transparent;
    border: 0;
    color: #9aa3af;
    padding: 0 0.55rem 0 0.15rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-input-control {
    width: 100%;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    color: var(--text-primary);
}

.contact-input-control:focus {
    box-shadow: none;
    background: transparent;
}

.contact-input-control::placeholder {
    color: #8d939a;
}

.contact-textarea-group {
    min-height: 8.5rem;
    padding-top: 0.9rem;
    align-items: flex-start;
}

.contact-textarea-control {
    min-height: 6.5rem;
    resize: none;
}

.contact-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.contact-section:hover .contact-image img {
    transform: scale(1.03);
}



.footer {
    background-color: #09311D;
    color: white;
    padding: 4.5rem 0 3.5rem;
}

.footer-layout {
    align-items: flex-start;
}

.footer-brand-column {
    max-width: 430px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 42px;
    width: auto;
}

.footer-contact-list {
    display: grid;
    gap: 0.95rem;
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-contact-item i {
    color: #f4f8f5;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-newsletter-title {
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-section {
    min-width: 0;
}

.footer-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.35rem;
    color: var(--white);
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.9rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #18a35b;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 430px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    overflow: hidden;
    background: transparent;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    color: var(--white);
    background: transparent;
    box-shadow: none;
}

.newsletter-form button {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    margin: 0.15rem;
    background-color: #18a35b;
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.newsletter-form input:focus {
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

@media (max-width: 992px) {
    .footer {
        padding: 3.75rem 0 3rem;
    }

    .footer-brand-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-newsletter-title {
        font-size: 1.45rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .social-icons {
        margin-top: 1rem;
    }
}

.back-to-top {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.back-to-top.visible {
    opacity: 1;
}

/* custom circle */
.circle {
    display: inline-flex;
    border-radius: 50%;
    align-items: center !important;
    text-align: center;
}

.circle-sm {
    width: 32px;
    height: 32px;
}

.circle-md {
    width: 48px;
    height: 48px;
}

.circle-lg {
    width: 64px;
    height: 64px;
}

.circle-rec {
    width: 48px;
    height: 48px;
    border-radius: .75rem !important;
}

.circle .bi {
    margin: 0 auto;
}

.circle .fas {
    margin: 0 auto;
}

@media (max-width: 768px) {

    .hero-content,
    .steps-content,
    .healthcare-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .rotating-images {
        height: 300px;

    }

    

}

@media (min-width: 1024px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px)   {
    .review-card-text {
        font-size: 1.1rem !important;
    }
}


/* Contact Us Page */
.contact-us {
    background: var(--background-light) !important;
}
.contact-us .main-content {
    padding: 4rem 0;
}

.contact-us h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.nav-page-hero{
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--background-mint);
    height: 20rem;
    padding: 2rem 6%;
    background-image:  url('/static/images/background-pattern.png'); 
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .nav-page-hero {
        height: 12rem;
        padding: 1.5rem 5%;
    }
}

.nav-page-hero h5{
    color: var(--primary-dark) !important;
    font-weight: 500;
    text-decoration: bolder;
}

.nav-page-hero .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background-color: white;
    padding: 1.5rem;
    border: 1px solid #dfe5ec;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(25, 139, 83, 0.2);
    box-shadow: 0 18px 36px rgba(9, 49, 29, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-mint);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card h5 {
    margin-bottom: 0.5rem;
}

.contact-us iframe {
    width: 100%;
    height: 640px;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 20px 45px rgba(9, 49, 29, 0.12);
}


.contact-card a {
    color: var(--text-dark);
    font-weight: 600;
}

.text-green {
    color: var(--primary-dark) !important;
    text-decoration: bolder;
}

.why-choose-us{
    padding: var(--spacing-md);
    background: white;
}

.our-leadership-team{
    padding: var(--spacing-md);
}

.our-leadership-team .carousel-container {
    position: relative;
    overflow: hidden;
}

.our-leadership-team .carousel {
    display: flex;
    transition: transform 0.3s ease;
}

.our-leadership-team .card {
    flex: 0 0 300px;
    margin-right: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.our-leadership-team .card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.our-leadership-team .card:hover .card-image {
    transform: scale(1.1);
}

.our-leadership-team .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
}

.our-leadership-team .card-title {
    font-size: 25px;
    font-weight: bold;
    margin: 0 0 5px;
    color: rgb(82, 80, 80);
}

.our-leadership-team .card-subtitle {
    font-size: 14px;
    margin: 0 0 10px;
    color: rgb(82, 80, 80);
}

.our-leadership-team .card-description {
    font-size: 12px;
    margin: 0;
    color: rgb(82, 80, 80);
}

.our-leadership-team .team-nav{
    display: flex;
}

.team-nav button{
    background: white;
    font-size: 20px;
}

.resource {
    background: #fdfcf8;
}

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

.resource-shell {
    max-width: 1320px;
}

.resource-filter-bar {
    margin-bottom: 2rem;
}

.resource-filter-input {
    position: relative;
}

.resource-filter-input i {
    position: absolute;
    top: 50%;
    left: 1.1rem;
    transform: translateY(-50%);
    color: #99a39d;
    font-size: 0.95rem;
    pointer-events: none;
}

.resource-filter-input .form-control,
.resource-filter-input .form-select,
.resource-filter-select {
    min-height: 3.6rem;
    border: 1px solid #e7e4dc;
    border-radius: 1rem;
    background: #fffdf8;
    color: #6e766f;
    font-size: 0.95rem;
}

.resource-filter-input .form-control {
    padding-left: 2.8rem;
}

.resource-filter-input--select .form-select {
    padding-left: 2.6rem;
}

.resource-filter-select {
    padding-left: 1.1rem;
}

.resource-filter-input .form-control::placeholder,
.resource-filter-input .form-select,
.resource-filter-select {
    color: #9aa29c;
}

.resource-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    border: 1px solid #ebe7dd;
    border-radius: 1.25rem;
    background: #fffdfa;
    box-shadow: 0 10px 30px rgba(73, 80, 61, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.resource-card:hover {
    transform: translateY(-6px);
    border-color: #d8e5d5;
    box-shadow: 0 18px 40px rgba(73, 80, 61, 0.08);
}

.resource-card__image-link {
    display: block;
}

.resource-card__image {
    width: 100%;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    border-radius: 1rem;
}

.resource-card__body {
    flex: 1;
    padding: 1rem 0 0.2rem;
}

.resource-card__meta {
    margin-bottom: 0.8rem;
}

.resource-card__time {
    color: #9da39c;
    font-size: 0.9rem;
}

.resource-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.5rem;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    background: #eef8f0;
    color: #42a56d;
    font-size: 0.75rem;
    font-weight: 600;
}

.resource-card__title {
    margin-bottom: 0.7rem;
    color: #33352f;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.25;
}

.resource-card__text {
    margin-bottom: 1.35rem;
    color: #9a9d98;
    font-size: 0.98rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.resource-card__cta {
    color: #1f6b47;
    font-weight: 600;
    font-size: 0.98rem;
}

.resource-card__cta i {
    font-size: 1rem;
}

.resource-pagination {
    margin-top: 2rem;
    padding-top: 1rem;
}

.resource-pagination__summary {
    color: #40453f;
    font-size: 0.88rem;
}

.resource-pagination__controls {
    color: #9da39c;
}

.resource-pagination__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid #e7e4dc;
    border-radius: 0.75rem;
    background: #fffdfa;
    color: #8f958f;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.resource-pagination__arrow:hover {
    border-color: #cdd9cb;
    color: #1f6b47;
    transform: translateY(-1px);
}

.resource-pagination__arrow--disabled {
    opacity: 0.55;
}

.resource-pagination__current {
    min-width: 1.5rem;
    text-align: center;
    color: #9da39c;
    font-size: 0.95rem;
}

.resource-empty-state {
    padding: 4rem 1.5rem;
    border: 1px solid #ebe7dd;
    border-radius: 1.25rem;
    background: #fffdfa;
}

.resource-empty-state__title {
    margin-bottom: 0.5rem;
    color: #33352f;
    font-size: 1.5rem;
    font-weight: 600;
}

.resource-empty-state__text {
    color: #8f958f;
}

@media (max-width: 991.98px) {
    .resource-card__title {
        font-size: 1.35rem;
    }
}

@media (max-width: 767.98px) {
    .resource {
        padding-top: 1rem;
    }

    .resource-filter-bar {
        margin-bottom: 1.5rem;
    }

    .resource-card {
        padding: 0.9rem;
        border-radius: 1rem;
    }

    .resource-card__body {
        padding-top: 0.9rem;
    }

    .resource-card__title {
        font-size: 1.2rem;
    }

    .resource-card__text {
        font-size: 0.92rem;
    }
}

/* Browse Card */
.browse-card {
    background: var(--white);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 360px; 
    height: 110px;
    overflow: hidden; 
}


.browse-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}



.browse-card p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.2; 
    overflow: hidden; 
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .browse-card {
        width: 100%; 
        height: auto;
    }

    .browse-card h4,
    .browse-card i,
    .browse-card p {
        font-size: 0.9rem; 
    }
}

@media (max-width: 576px) {
    .browse-card h4,
    .browse-card i,
    .browse-card p {
        font-size: 0.8rem; 
    }
}

.browse-section {
    padding: 2rem 0 3rem;
}

.browse-section .procedure-card{
    border-radius: 1.25rem;
}
.browse-search-addon,
.browse-search-input {
    border-color: #e5e7eb;
    background: #fff;
}

.browse-search-addon {
    border-radius: 0.9rem 0 0 0.9rem;
}

.browse-search-input {
    border-radius: 0 0.9rem 0.9rem 0;
    box-shadow: none;
    min-height: 3rem;
}

.browse-preview-card {
    border: 1px solid #ececec !important;
    border-radius: 1rem;
    box-shadow: none !important;
}

.browse-preview-card .card-body {
    min-height: 12.5rem;
}

.browse-preview-card h5 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.browse-preview-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.browse-icon-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.bg-purple-subtle {
    background-color: #f2ddff;
}

.text-purple-emphasis {
    color: #b423d7;
}

.procedure-accordion .procedure-accordion-item {
    border: 1px solid #ececec !important;
    border-radius: 1rem !important;
    overflow: hidden;
    background: #fff;
}

.procedure-accordion .procedure-accordion-button {
    padding: 1.25rem 1rem;
    border-radius: 1rem !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-size: 1.05rem;
}

.procedure-accordion .procedure-accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.procedure-accordion .procedure-accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.procedure-accordion-panel {
    border: 1px solid #ececec;
    border-radius: 0.9rem;
    padding: 1rem;
    margin: 0 1rem 1rem;
    background: #fff;
}

.procedure-accordion-list {
    max-height: 18rem;
    overflow-y: auto;
    padding-right: 0.35rem;
}

.procedure-accordion-list::-webkit-scrollbar {
    width: 6px;
}

.procedure-accordion-list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 999px;
}

.procedure-accordion-list::-webkit-scrollbar-track {
    background: transparent;
}

.procedure-button {
    all: unset;
    display: block;
    color: #6c757d;
    cursor: pointer;
    line-height: 1.5;
    width: 100%;
}

.procedure-button:hover {
    color: var(--bs-dark);
}

@media (max-width: 768px) {
    .browse-section {
        padding: 1.25rem 0 2rem;
    }

    .browse-preview-card .card-body {
        min-height: auto;
    }

    .procedure-accordion .procedure-accordion-button {
        padding: 1rem 0.9rem;
    }

    .procedure-accordion-panel {
        margin: 0 0.9rem 0.9rem;
        padding: 0.9rem;
    }

    .procedure-accordion-list {
        max-height: 16rem;
    }
}


/* Loader Styling */
.loader {
    width: 48px;
    height: 48px;
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.loader:before {
    content: '';
    width: 48px;
    height: 5px;
    background: var(--background-light);
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 50%;
    animation: shadow324 0.5s linear infinite;
}

.loader:after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--bs-primary);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    animation: jump7456 0.5s linear infinite;
}

/* Background Blur */
.page-content {
    transition: filter 0.3s ease;
}

.page-content.blurred {
    filter: blur(5px);
    pointer-events: none; /* Prevent interaction while blurred */
}

/* Keyframes */
@keyframes jump7456 {
    15% {
        border-bottom-right-radius: 3px;
    }

    25% {
        transform: translateY(9px) rotate(22.5deg);
    }

    50% {
        transform: translateY(18px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 40px;
    }

    75% {
        transform: translateY(9px) rotate(67.5deg);
    }

    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes shadow324 {
    0%,
    100% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1);
    }
}


.procedure-button {
    all: unset;
    display: block;
    text-align: left;
    cursor: pointer;
}

@media (max-width: 768px) {
    .procedure-button {
        font-size: 1.1rem;
        margin-bottom: 1px !important;
    }
}

.specialty-modal {
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    max-width: 100%;
}

.specialty-modal .specialty-grid {
    padding: var(--spacing-sm);
    background-color: white !important;
    border-radius: var(--radius-md);
}

.specialty-grid .specialty-item {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: center;
}

.progress-section{
    margin-right: var(--spacing-xlg);
    margin-left: var(--spacing-xlg);
}



@media (max-width: 768px) {
    .progress-section {
        margin-right: var(--spacing-xs);
        margin-left: var(--spacing-xs);
    }
}

.further-information-card {
    margin-left: 5rem;
    margin-right: 5rem;
    margin-top: 2rem;
    background-color: white;
    padding: var(--spacing-sm);
    border-radius: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer; 
    
}

.further-information-card:hover {
    transform: scale(1.05); 
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.further-information-card.selected {
    border: 2px solid var(--bs-primary);
    box-shadow: 0px 4px 10px rgba(0, 0, 255, 0.2);
}

.btn.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--primary-color) !important;
}


@media (max-width: 768px) {
    .further-information-card {
        margin-right: var(--spacing-xs);
        margin-left: var(--spacing-xs);
    }
}

@media (max-width: 767px) {
    .button-container {
        display: flex;
        flex-direction: column;
        align-items: stretch; 
    }

    .button-container .btn {
        margin-left: var(--spacing-md);
        width: 100% !important;
        margin-bottom: 1rem; 
        align-items: center !important;
    }
}


@media (min-width: 768px) {
    .button-container {
        display: flex;
        justify-content: flex-end; 
    }

    .button-container .btn {
        width: auto; 
    }
}


.back-link {
    color: #525050;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: bold;
}

.map-link {
    color: var(--bs-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.map-link i {
    font-size: 16px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Accordion customization */
.accordion-button {
    background-color: #fff !important;
    color: #000 !important;
    border: none;
    box-shadow: none !important;
}

.accordion-item {
    border: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

/* Filter button styles */
.filter-btn {
    transition: all 0.3s ease;
    font-size: 12px;
}

.filter-btn[data-selected="true"] {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border-color: var(--bs-primary);
}

.filter-btn[data-selected="false"] {
    background-color: transparent;
    color: var(--text-gray);
    border-color: var(--text-gray);
}

.filter-btn:hover {
    background-color: transparent;
    color:var(--bs-primary);
    border-color: var(--bs-primary);
}

.search-result-doctor {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 auto;
}

.search-result-doctor .profile-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.search-result-doctor .avatar {
    width: 90px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.search-result-doctor .profile-info {
    flex-grow: 1;
}

.search-result-doctor h2 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.search-result-doctor .subtitle {
    color: #666;
    margin: 0 0 5px 0;
    font-size: 0.9em;
}

.search-result-doctor .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.search-result-doctor .star {
    color: gold;
}

.search-result-doctor .rating-score {
    font-weight: bold;
}

.search-result-doctor .review-count {
    color: #666;
    font-size: 0.9em;
}

.search-result-doctor .location,
.search-result-doctor .appointment-info {
    color: #666;
    font-size: 0.9em;
    margin: 2px 0;
}

.search-result-doctor .price {
    font-size: 1.5em;
    font-weight: bold;
    margin-left: auto;
}

.search-result-doctor .time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.search-result-doctor .time-slot {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.search-result-doctor .time-slot .date {
    display: block;
    font-size: 0.9em;
}

.search-result-doctor .time-slot .slots {
    display: block;
    font-size: 0.8em;
    color: #666;
}

.search-result-doctor .view-all {
    width: 100%;
    background-color: var(--bs-primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
}

@media (min-width: 768px) {
    .search-result-doctor .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .search-result-doctor .profile-section {
        flex-direction: column;
        align-items: left;
        text-align: left;
    }

    .search-result-doctor .price {
        margin-left: 0;
        margin-top: 10px;
    }

    .search-result-doctor .avatar {
        width: 60px;
        height: 60px;
    }

    .search-result-doctor .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini-page {
    margin-left: 15rem;
    margin-right: 15rem;
    padding: var(--spacing-sm);
}

@media (max-width: 768px) {
    .mini-page {
        margin-right: var(--spacing-xs);
        margin-left: var(--spacing-xs);
    }
}

.patient-information {
    padding: var(--spacing-sm);
    border-radius: var(--radius-lg);
}


.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }

.nav-item.profile-dropdown {
    position: relative;
}

.profile-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.profile-dropdown.active .profile-dropdown__menu {
    display: block;
}

.profile-dropdown__section {
    background: var(--primary-dark);
    color: white;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.profile-dropdown__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.profile-dropdown__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown__info {
    flex: 1;
}

.profile-dropdown__name {
    font-weight: 500;
    margin: 0;
    font-size: 16px;
}

.profile-dropdown__email {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.profile-dropdown__edit-profile {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.profile-dropdown__menu-items {
    padding: 8px 0;
}

.profile-dropdown__menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.profile-dropdown__menu-item:hover {
    background-color: var(--primary-dark);
    color: white;
}

.profile-dropdown__menu-item i {
    margin-right: 12px;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.profile-dropdown__logout-button {
    display: block;
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    margin: 8px 20px;
    border-radius: 6px;
}

.profile-dropdown__logout-button:hover{
    background: white;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

@media (max-width: 768px) {
    .profile-dropdown__menu {
        display: none !important;
    }
}


.form-card-section{
    margin-right: 6rem;
    margin-left: 6rem;
    background: white;
    padding: var(--spacing-sm);
    border-radius: 15px;
}



@media (max-width: 768px) {
    .form-card-section {
        margin-right: var(--spacing-xs);
        margin-left: var(--spacing-xs);
    }
}

.profile-upload-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.profile-preview {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #4CAF50;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    color: white;
}

.upload-icon:hover {
    background: #45a049;
}


.time-customize{
    margin-right: 6rem;
    margin-left: 6rem;
    padding: var(--spacing-sm);
    background: white;
    border-radius: 15px;
    
}




@media (max-width: 768px) {
    .time-customize {
        margin-right: var(--spacing-xs);
        margin-left: var(--spacing-xs);
        padding: var(--spacing-xs);
    }

    .time-customize label, p{
        font-size: 0.8rem;
    }
}


.error {
    color: #a21d4c;
  }
/* For all screen sizes */
.ts-control {
    font-size: 16px !important; /* Default size */
}

/* If using single-select dropdown */
.ts-control.single .items {
    font-size: 16px !important;
}

@media (max-width: 767.98px) {
    .ts-dropdown-mobile {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-height: none !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        z-index: 1000 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .ts-dropdown-mobile .ts-dropdown-content {
        flex: 1 !important;
        max-height: none !important;
        overflow-y: auto !important;
    }
    
    .ts-dropdown-mobile .option {
        padding: 16px 20px !important;
        font-size: 18px !important; /* Increased font size */
        line-height: 1.4 !important
    }
    
    /* Add a header with search and close button */
    .ts-dropdown-mobile:before {
        content: '';
        height: 56px;
        display: block;
        background: #f8f9fa;
        border-bottom: 1px solid #e2e8f0;
        padding: 10px;
        position: sticky;
        top: 0;
        z-index: 2;
    }
    
    .ts-dropdown-mobile .ts-dropdown-header {
        position: sticky;
        top: 0;
        z-index: 3;
        background: #fff;
        padding: 10px;
    }
}
.signup-modal {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    max-width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.signup-option {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(25, 139, 83, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.signup-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, transparent 0%, rgba(25, 139, 83, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signup-option:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(25, 139, 83, 0.15);
    border-color: rgba(25, 139, 83, 0.2);
}

.signup-option:hover::before {
    opacity: 1;
}

.signup-option img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.signup-option:hover img {
    transform: scale(1.1);
}

.signup-option p {
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.signup-option:hover p {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .signup-option {
        margin-bottom: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }
    
    .signup-option:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 6px 20px rgba(25, 139, 83, 0.1);
    }
}

/* Provider Banner Section */
.provider-banner {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(232, 243, 238, 0.7) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.provider-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.provider-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.provider-banner-heading {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

.provider-banner-subheading {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0.98;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.5;
}



.banner-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.banner-visual img {
    border: 10px solid var(--text-light);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.banner-visual:hover img {
    transform: translateY(-10px);
    box-shadow: 0 26px 50px rgba(9, 49, 29, 0.14);
}

/* Responsive Design */
@media (max-width: 992px) {
    .provider-banner {
        padding: 50px 0;
    }

    .provider-banner-heading {
        font-size: 2rem;
    }

    .provider-banner-subheading {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .provider-banner {
        padding: 40px 0;
    }

    .provider-banner-heading {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .provider-banner-subheading {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    

    .feature-text {
        font-size: 0.9rem;
    }


}

.faq-section .accordion {
    border: none;
}

.faq-section {
    overflow-x: hidden;
}

@supports (overflow-x: clip) {
    html,
    body,
    .faq-section {
        overflow-x: clip;
    }
}

.faq-section .accordion-item {
    border: none;
    background-color: white;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.faq-section .accordion-button {
    background-color: transparent !important;
    color: #1f2937;
    padding: 16px 20px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: none;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #1f2937;
    box-shadow: none;
    border-radius: 20px;
}

.faq-section .accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(74, 222, 128, 0.25);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f2937'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f2937'%3e%3cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    color: #4b5563;
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.6;
}

/* Custom icon styling */
.faq-section .accordion-button::after {
    width: auto;
    height: auto;
    content: '+';
    background-image: none;
    font-size: 20px;
    font-weight: 300;
    margin-left: auto;
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: rotate(0deg);
}

/* US Phone Number Input Styles */
.us-phone-wrapper {
    position: relative;
}

.us-phone-wrapper .input-group {
    display: flex;
    align-items: stretch;
}

.us-phone-prefix {
    background-color: var(--primary-dark);
    color: white;
    font-weight: 600;
    border: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem 0 0 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    cursor: not-allowed;
    user-select: none;
}

.us-phone-input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    flex: 1;
}

.us-phone-help {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

.us-phone-wrapper .input-group:focus-within .us-phone-prefix {
    border-color: #86b7fe;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(25, 139, 83, 0.25);
}

/* Error state for phone input */
.us-phone-input.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.us-phone-error {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

/* Valid state for phone input */
.us-phone-input.is-valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-.04.46-.4 1.1-.4l1.1 1.1 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .us-phone-prefix {
        min-width: 45px;
        font-size: 0.9rem;
        padding: 0.375rem 0.5rem;
    }
    
    .us-phone-help {
        font-size: 0.7rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
}


.how-it-works-section .steps-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.how-it-works-section .steps-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #5e5d5dff 0 2px,
        transparent 2px 6px
    );
    pointer-events: none;
}

@media (max-width: 768px) {
    .how-it-works-section .steps-container::before {
        bottom: 72px;
    }
}

.how-it-works-section .step-row {
    display: grid;
    grid-template-columns: 1fr 4px 1fr;
    gap: 40px;
    padding: 28px 0;
    align-items: center;
    position: relative;
    transition: transform 0.35s ease;
}

.how-it-works-section .step-row:hover {
    transform: translateY(-4px);
}

.how-it-works-section .step-row:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.how-it-works-section .vertical-line {
    width: 2px;
    height: 100%;
    position: relative;
    justify-self: center;
    background: transparent;
}

.how-it-works-section .step-row:last-child {
    background: transparent;
}

.how-it-works-section .step-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.how-it-works-section .step-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.how-it-works-section .step-illustration {
    max-width: auto;
    height: auto;
    transition: transform 0.45s ease;
}

.how-it-works-section .step-row:hover .step-illustration {
    transform: scale(1.04);
}

.how-it-works-section .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;

}

.how-it-works-section .step-row:nth-child(2) .step-number {
position: relative;
right: 0px;
}

.how-it-works-section .step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.how-it-works-section .step-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .how-it-works-section .step-row {
        grid-template-columns: minmax(0, 1fr) 2px minmax(0, 1fr);
        gap: 16px;
        padding: 22px 0;
    }

    .how-it-works-section .step-left,
    .how-it-works-section .step-right {
        min-width: 0;
    }

    .how-it-works-section .step-illustration {
        max-width: 120px;
        width: 100%;
    }

    .how-it-works-section .step-row:nth-child(2) .step-illustration {
        max-width: 100px;
    }

    .how-it-works-section .step-number {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .how-it-works-section .step-title {
        font-size: 0.95rem;
        line-height: 1.2;
        margin-bottom: 10px;
        overflow-wrap: anywhere;
    }

    .how-it-works-section .step-description {
        font-size: 0.95rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }
}


.section-header{
    border: 1px solid var(--primary-color);
    border-radius: 1.25rem;
    color: var(--primary-color);
    background-color: rgba(232, 243, 238, 0.5);
    width: fit-content;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.why-choose-us-card{
    border-radius: 1rem;
    border: 1px solid rgb(204, 201, 201);
    padding: 20px;
    height: 13rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbf7 100%);
    box-shadow: 0 16px 36px rgba(9, 49, 29, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-choose-us-card:hover{
    transform: translateY(-8px);
    border-color: rgba(25, 139, 83, 0.22);
    box-shadow: 0 24px 46px rgba(9, 49, 29, 0.11);
}

.membership-cta-section {
    background: linear-gradient(120deg, #09311D 60%, #FFFFFF00 100%),
    url('../images/cta-image.png');
    background-repeat: no-repeat;
    background-position: 100% center;
    background-size: contain;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px !important;
}

.membership-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(25, 139, 83, 0.28), transparent 30%);
    pointer-events: none;
}

.membership-cta-section .container {
    position: relative;
    z-index: 1;
}


.membership-cta-section .membership-content h5 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.membership-cta-section .membership-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.membership-cta-section .check-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.membership-cta-section .check-item:hover {
    transform: translateX(6px);
}

.membership-cta-section .check-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}


@media (max-width: 992px) {
    .membership-content {
        margin-bottom: 40px;
    }


}

@media (max-width: 768px) {
    .membership-cta-section {
        background:
            linear-gradient(180deg, rgba(9, 49, 29, 0.98) 0%, rgba(9, 49, 29, 0.98) 58%, rgba(9, 49, 29, 0.72) 78%, rgba(9, 49, 29, 0.08) 100%),
            url('../images/cta-image.png');
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: 100% auto;
        padding: 32px 0 280px;
        margin-top: 0 !important;
        margin-bottom: 40px !important;
    }

    .membership-cta-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .membership-cta-section .row {
        margin: 0;
    }

    .membership-cta-section .membership-content {
        max-width: 100%;
        margin-bottom: 0;
        padding: 0;
    }

    .membership-cta-section .membership-content h5 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .membership-cta-section .membership-content p {
        max-width: 320px;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .membership-cta-section .check-item {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .membership-cta-section .check-item i {
        font-size: 0.85rem;
        margin-right: 12px;
    }

    .membership-cta-section .membership-content .mt-5 {
        margin-top: 24px !important;
    }

    .membership-cta-section .membership-content .btn {
        padding: 14px 24px;
        border-radius: 12px;
        min-width: 138px;
        font-size: 0.95rem;
    }
}

.bottom-banner{
    background-color:#0F5332;
}

.bottom-banner h2{
    line-height: 1.2;
}

/* [data-aos] {
    will-change: transform, opacity;
} */

/* @media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .quick-action__card,
    .review-card,
    .contact-card,
    .banner-visual img,
    .how-it-works-section .step-row,
    .how-it-works-section .step-illustration,
    .why-choose-us-card,
    .membership-cta-section .check-item,
    .contact-image img,
    .contact-input-group,
    .quick-search-card__input-wrap {
        transition: none !important;
        transform: none !important;
    }
} */


.schedule-appointment {
        padding: 2rem 0 3rem;
        background: linear-gradient(180deg, var(--background-mint) 0%, #ffffff 100%);
}

.schedule-appointment .schedule-appointment__card {
    background: #ffffff;
    border-radius: 1.75rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
}

.schedule-appointment .schedule-appointment__header {
    gap: 1rem;
}

.schedule-appointment .schedule-appointment__back {
    border: 0;
    background: transparent;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0;
}

.schedule-appointment .schedule-appointment__back:hover {
    color: var(--primary-color);
}

.schedule-appointment .schedule-appointment__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0;
}

.schedule-appointment .schedule-appointment__progress {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0deg 120deg, #dcefe4 120deg 360deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.schedule-appointment .schedule-appointment__progress-inner {
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

.schedule-appointment .schedule-appointment__body {
    margin-top: 2rem;
}

.schedule-appointment .schedule-appointment__label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #202939;
    margin-bottom: 0.6rem;
}

.schedule-appointment .schedule-appointment__select {
    min-height: 3.6rem;
    border-radius: 1rem;
    border: 1px solid #d9e1ea;
    box-shadow: none;
    color: #6b7280;
    padding-left: 1rem;
    padding-right: 2.75rem;
    background-position: right 1rem center;
    background-size: 1rem;
}

.schedule-appointment .schedule-appointment__select:focus {
    border-color: rgba(0, 166, 81, 0.35);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.12);
}

.schedule-appointment .schedule-appointment__field[hidden] {
    display: none !important;
}

.schedule-appointment .schedule-appointment__dropdown-toggle {
    min-height: 3.6rem;
    border-radius: 1rem;
    border: 1px solid #d9e1ea;
    background: #ffffff;
    color: #6b7280;
    padding: 0.95rem 1rem;
    box-shadow: none;
    text-align: left;
}

.schedule-appointment .schedule-appointment__dropdown-toggle.show,
.schedule-appointment .schedule-appointment__dropdown-toggle:focus,
.schedule-appointment .schedule-appointment__dropdown-toggle:hover {
    border-color: rgba(0, 166, 81, 0.35);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.12);
    color: #374151;
    background: #ffffff;
}

.schedule-appointment .schedule-appointment__dropdown-toggle::after {
    margin-left: auto;
}

.schedule-appointment .schedule-appointment__dropdown-menu {
    width: 100%;
    border: 1px solid #d9e1ea;
    border-radius: 1rem;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
    padding: 0;
    overflow: hidden;
}

.schedule-appointment .schedule-appointment__dropdown-search {
    border: 0;
    border-bottom: 1px solid #edf2f7;
    border-radius: 0;
    padding: 0.9rem 1rem;
    box-shadow: none;
}

.schedule-appointment .schedule-appointment__dropdown-search:focus {
    box-shadow: none;
    border-color: #edf2f7;
}

.schedule-appointment .schedule-appointment__options {
    max-height: 16rem;
    overflow-y: auto;
    padding: 0.5rem;
}

.schedule-appointment .schedule-appointment__option {
    width: 100%;
    border: 0;
    border-radius: 0.85rem;
    background: transparent;
    color: #1f2937;
    font-size: 0.96rem;
    padding: 0.8rem 0.9rem;
    text-align: left;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.schedule-appointment .schedule-appointment__option:hover,
.schedule-appointment .schedule-appointment__option:focus,
.schedule-appointment .schedule-appointment__option.is-selected {
    background: rgba(0, 166, 81, 0.08);
    color: var(--primary-dark);
    outline: none;
}

.schedule-appointment .schedule-appointment__option-meta {
    display: block;
    color: #6b7280;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.schedule-appointment .schedule-appointment__empty {
    color: #6b7280;
    font-size: 0.95rem;
    padding: 0.75rem 0.9rem;
}

.schedule-appointment .schedule-appointment__submit {
    min-height: 3.65rem;
    border-radius: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.schedule-appointment .schedule-appointment__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #198B53;
    border-color: #198B53;
}

.schedule-appointment .schedule-appointment__submit i {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .schedule-appointment {
        padding: 3.5rem 0 4.5rem;
    }

    .schedule-appointment .schedule-appointment__card {
        padding: 2.5rem 2rem 2rem;
    }

    .schedule-appointment .schedule-appointment__title {
        font-size: 1.5rem;
    }
}


.search-result {
        padding: 1.5rem 0 2.5rem;
        background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.search-result .search-result__shell {
    background: #ffffff;
    border: 1px solid #dde7e1;
    border-radius: 1.5rem;
    padding: 1.25rem 1rem 1.5rem;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.05);
}

.search-result .search-result__back {
    border: 0;
    background: transparent;
    color: #1f2937;
    font-weight: 500;
    padding: 0;
}

.search-result .search-result__back:hover {
    color: var(--primary-color);
}

.search-result .search-result__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.search-result .search-result__progress {
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0deg 240deg, #dcefe4 240deg 360deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-result .search-result__progress-inner {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 50%;
    background: #ffffff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
}

.search-result .search-result__search-wrap {
    position: relative;
}

.search-result .search-result__search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
}

.search-result .search-result__search-input {
    min-height: 3.55rem;
    border-radius: 1rem;
    border: 1px solid #dbe4ee;
    padding-left: 2.7rem;
    box-shadow: none;
    font-size: 0.95rem;
}

.search-result .search-result__search-input:focus {
    border-color: rgba(0, 166, 81, 0.35);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.12);
}

.search-result .search-result__search-help {
    color: #6b7280;
    font-size: 0.8rem;
    margin-top: 0.45rem;
}

.search-result .search-result__map-btn {
    min-height: 3.55rem;
    border-radius: 0.9rem;
    font-weight: 600;
    min-width: 5.5rem;
}

.search-result .search-result__count {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.search-result .search-result__clear,
.search-result .search-result__filter-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

.search-result .search-result__clear:hover,
.search-result .search-result__filter-link:hover {
    color: var(--primary-dark);
}

.search-result .search-result__filter-trigger {
    border: 0;
    background: transparent;
    padding: 0;
}

.search-result .search-result__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
    overflow: visible;
}

.search-result .search-result__filters::-webkit-scrollbar {
    height: 0.35rem;
}

.search-result .search-result__filters::-webkit-scrollbar-thumb {
    background: #cfe0d8;
    border-radius: 999px;
}

.search-result .search-result__filter-dropdown {
    flex-shrink: 0;
}

.search-result .search-result__filter-btn {
    min-height: 3rem;
    min-width: 7.25rem;
    border-radius: 0.95rem;
    border: 1px solid #dde6ee;
    background: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    box-shadow: none;
}

.search-result .search-result__filter-btn:hover,
.search-result .search-result__filter-btn:focus,
.search-result .search-result__filter-btn.show {
    color: #1f2937;
    border-color: rgba(0, 166, 81, 0.28);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.08);
    background: #ffffff;
}

.search-result .search-result__filter-menu {
    z-index: 1050 !important;
    border: 1px solid #dde6ee;
    border-radius: 1rem;
    padding: 0.75rem;
    min-width: 15rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.search-result .search-result__filter-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.65rem;
}

.search-result .search-result__menu-option {
    width: 100%;
    border: 1px solid #dde6ee;
    border-radius: 0.8rem;
    background: #ffffff;
    color: #4b5563;
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
    text-align: left;
}

.search-result .search-result__menu-option.is-active {
    background: #e7f3ee;
    border-color: #e7f3ee;
    color: var(--primary-color);
}

.search-result .search-result__menu-option small {
    display: block;
    margin-top: 0.18rem;
    color: #9ca3af;
    font-size: 0.72rem;
}

.search-result .search-result__menu-readonly {
    background: #f7faf8;
    border: 1px solid #e3ece7;
    border-radius: 0.9rem;
    color: #374151;
    font-size: 0.86rem;
    padding: 0.8rem 0.9rem;
}

.search-result .search-result__menu-input {
    min-height: 2.85rem;
    border-radius: 0.85rem;
    box-shadow: none;
}

.search-result .search-result__menu-input:focus {
    border-color: rgba(0, 166, 81, 0.35);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.12);
}

.search-result .search-result__menu-actions {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.search-result .search-result__menu-actions .btn {
    border-radius: 0.8rem;
    font-size: 0.82rem;
}

.search-result .search-result__card {
    height: 100%;
    border: 1px solid #dde7e1;
    border-radius: 1.1rem;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.04);
}

.search-result .search-result__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #eef5f1;
}

.search-result .search-result__doctor-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.15rem;
}

.search-result .search-result__doctor-name a {
    color: inherit;
    text-decoration: none;
}

.search-result .search-result__specialty {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0 0 0.2rem;
}

.search-result .search-result__meta {
    font-size: 0.78rem;
    color: #4b5563;
}

.search-result .search-result__view-profile {
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

.search-result .search-result__price {
    font-size: 1.55rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-top: 0.45rem;
}

.search-result .search-result__details {
    color: #374151;
    font-size: 0.88rem;
}

.search-result .search-result__details p {
    margin-bottom: 0.8rem;
}

.search-result .search-result__details i {
    color: #4b5563;
}

.search-result .search-result__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #f7faf8;
    border: 1px solid #e3ece7;
    border-radius: 999px;
    color: #4b5563;
    font-size: 0.74rem;
    padding: 0.32rem 0.55rem;
    margin-right: 0.4rem;
    margin-bottom: 0.45rem;
}

.search-result .search-result__availability-btn {
    min-height: 3rem;
    border-radius: 0.95rem;
    background: #e7f3ee;
    color: var(--primary-color);
    font-weight: 500;
    border: 0;
}

.search-result .search-result__availability-btn:hover {
    background: #dff0e8;
    color: var(--primary-dark);
}

.search-result .search-result__empty {
    border: 1px solid #dde7e1;
    border-radius: 1.2rem;
    background: #ffffff;
    padding: 3rem 1.5rem;
    text-align: center;
}

.search-result .search-result__pagination {
    margin-top: 1.75rem;
}

.search-result .search-result__pagination-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.search-result .search-result__pagination-btn {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.8rem;
    border: 1px solid #dde6ee;
    background: #ffffff;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.search-result__availability-modal .modal-content {
    border: 0;
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
    min-height: min(88vh, 52rem);
}

.search-result__availability-modal .modal-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    min-height: min(88vh, 52rem);
}

.search-result__availability-close {
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 1rem;
    padding: 0;
    line-height: 1;
}

.search-result__availability-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eef5f1;
    flex-shrink: 0;
}

.search-result__availability-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.15rem;
}

.search-result__availability-role {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0 0 0.2rem;
}

.search-result__availability-rating {
    font-size: 0.82rem;
    color: #374151;
}

.search-result__availability-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.search-result__availability-meta {
    font-size: 0.9rem;
    color: #374151;
}

.search-result__availability-meta p {
    margin-bottom: 0.7rem;
}

.search-result__availability-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.15rem;
}

.search-result__availability-section-copy {
    font-size: 0.86rem;
    color: #9ca3af;
    line-height: 1.45;
}

.search-result__booking-step {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0 0 0.75rem;
}

.search-result__calendar-shell {
    border-radius: 1.3rem;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    padding: 1rem;
}

.search-result__calendar {
    --vc-color-primary: var(--primary-color);
    --vc-color-secondary: #94b823;
    --vc-bg-light: #ffffff;
    --vc-font-family: inherit;
    --vc-day-selected-bg-color: var(--primary-color);
    --vc-day-selected-color: #ffffff;
}

.search-result__calendar.vanilla-calendar {
    width: 100%;
}

.search-result__calendar .vc-header {
    margin-bottom: 0.8rem;
}

.search-result__calendar .vc-title {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
}

.search-result__calendar .vc-arrow {
    color: #374151;
}

.search-result__calendar .vc-date__btn {
    min-width: 2.5rem;
    min-height: 2.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.search-result__calendar .vc-week {
    color: #94b823;
    font-size: 0.7rem;
    font-weight: 600;
}

.search-result__calendar .vc-day {
    font-size: 0.8rem;
    color: #4b5563;
}

.search-result__calendar .vc-day:not(.vc-day_disabled):not(.vc-day_prev):not(.vc-day_next) .vc-date__btn {
    border-color: #e5efe8;
    background: #f9fcfa;
}

.search-result__calendar .vc-day_disabled,
.search-result__calendar .vc-day_prev,
.search-result__calendar .vc-day_next {
    color: #d1d5db;
}

.search-result__calendar .vc-day_disabled .vc-date__btn,
.search-result__calendar .vc-day_prev .vc-date__btn,
.search-result__calendar .vc-day_next .vc-date__btn {
    background: #f6f7f9;
    color: #c7cdd4;
}

.search-result__calendar .vc-date_selected .vc-date__btn,
.search-result__calendar .vc-date_selected .vc-date__btn:hover,
.search-result__calendar .vc-date__btn_selected,
.search-result__calendar .vc-date__btn_selected:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 999px;
    border-color: var(--primary-color);
    box-shadow: 0 10px 18px rgba(25, 139, 83, 0.22);
}

.search-result__time-slots {
    flex: 1 1 auto;
    min-height: 14rem;
    max-height: 28rem;
    overflow-y: auto;
    align-content: flex-start;
    padding-right: 0.35rem;
    margin-right: -0.35rem;
}

.search-result__time-slots::-webkit-scrollbar {
    width: 0.35rem;
}

.search-result__time-slots::-webkit-scrollbar-thumb {
    background: #cfe0d8;
    border-radius: 999px;
}



.search-result__slot {
    min-height: 3rem;
    border-radius: 0.85rem;
    border: 1px solid #d8e0e8;
    background: #ffffff;
    color: #374151;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.search-result__slot.is-active {
    background: #e7f3ee;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 12px 24px rgba(25, 139, 83, 0.16);
}

.search-result__slots-empty {
    padding: 1rem 0.25rem;
    border-radius: 1rem;
    background: #f7faf8;
    color: #6b7280;
    font-size: 0.92rem;
    text-align: center;
}

.search-result__availability-next {
    min-height: 3.15rem;
    border-radius: 0.95rem;
    font-weight: 600;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.search-result__availability-next:not(.is-ready) {
    opacity: 0.72;
    box-shadow: none;
}

.search-result__offcanvas {
    --bs-offcanvas-height: 80vh;
    height: 80vh !important;
    max-height: 80vh !important;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

.search-result__offcanvas-header {
    padding: 0.95rem 1rem 0.6rem;
}

.search-result__offcanvas-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

.search-result__offcanvas-close {
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 1.15rem;
    padding: 0;
    line-height: 1;
}

.search-result__offcanvas-body {
    padding: 0.35rem 1rem 1rem;
}

.search-result__mobile-group {
    padding: 0.6rem 0 0.8rem;
    border-bottom: 1px solid #edf2f7;
}

.search-result__mobile-group:last-of-type {
    border-bottom: 0;
}

.search-result__mobile-group-header {
    margin-bottom: 0.7rem;
}

.search-result__mobile-group-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.search-result__mobile-chevron {
    color: #111827;
    font-size: 0.8rem;
}

.search-result__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.search-result__chip {
    min-width: 5.5rem;
    min-height: 2.45rem;
    border-radius: 0.85rem;
    border: 1px solid #d8e0e8;
    background: #ffffff;
    color: #6b7280;
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    line-height: 1;
}

.search-result__chip.is-active {
    background: #e7f3ee;
    border-color: #e7f3ee;
    color: var(--primary-color);
}

.search-result__price-range {
    background: #f7faf8;
    border: 1px solid #e3ece7;
    border-radius: 1.1rem;
    padding: 0.8rem;
}

.search-result__price-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.28rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.search-result__price-input {
    min-height: 2.45rem;
    border-radius: 0.8rem;
    border: 1px solid #d8e0e8;
    box-shadow: none;
    font-size: 0.8rem;
}

.search-result__price-input:focus {
    border-color: rgba(0, 166, 81, 0.35);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.12);
}

.search-result__price-divider {
    width: 100%;
    height: 1px;
    background: #d8e0e8;
}

.search-result__mobile-submit {
    min-height: 3rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .search-result {
        padding: 2rem 0 3rem;
    }

    .search-result .search-result__shell {
        padding: 1.45rem 1.45rem 1.6rem;
    }

    .search-result .search-result__title {
        font-size: 1.6rem;
    }

    .search-result .search-result__map-btn {
        min-width: 6.25rem;
    }

    .search-result__availability-modal .modal-body {
        padding: 1.45rem;
    }
}

@media (max-width: 767.98px) {
    .search-result .search-result__shell {
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .search-result__availability-modal .modal-content {
        min-height: 100dvh;
    }

    .search-result__availability-modal .modal-body {
        display: block;
        min-height: auto;
        height: 100dvh;
        overflow-y: auto;
        padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    }

    .search-result__booking-step {
        margin-bottom: 0.55rem;
    }

    .search-result__calendar-shell {
        padding: 0.8rem;
        border-radius: 1.1rem;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    }

    .search-result__calendar .vc-header {
        margin-bottom: 0.55rem;
    }

    .search-result__calendar .vc-title {
        font-size: 0.94rem;
    }

    .search-result__calendar .vc-week {
        font-size: 0.66rem;
    }

    .search-result__calendar .vc-date__btn {
        min-width: 2.7rem;
        min-height: 2.7rem;
    }

    .search-result__time-slots {
        min-height: 13rem;
        max-height: min(20rem, calc(100dvh - 34rem)) !important;
        overflow-y: auto;
        padding-bottom: 0.25rem;
    }

    .search-result__slot {
        min-height: 3.35rem;
        border-radius: 1rem;
        font-size: 0.88rem;
    }

    .search-result__cta-bar {
        position: sticky;
        bottom: calc(env(safe-area-inset-bottom) * -1);
        margin: 0 -1rem calc(env(safe-area-inset-bottom) * -1);
        padding: 0.85rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(8px);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
        border-top: 1px solid #e7efe9;
        z-index: 3;
    }

    .search-result__availability-next {
        width: 100%;
        min-height: 3.4rem;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .search-result__availability-next.is-ready {
        opacity: 1;
        box-shadow: 0 12px 24px rgba(25, 139, 83, 0.18);
    }
}


.appointment-review {
        padding: 1rem 0 2rem;
}

.appointment-review__shell {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6ece8;
    border-radius: 20px;
    padding: 1.25rem;
}

.appointment-review__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.appointment-review__back {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #222;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.appointment-review__back:hover {
    color: var(--bs-primary);
}

.appointment-review__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.appointment-review__step {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2b3b33;
    font-size: 0.72rem;
    font-weight: 600;
    flex-shrink: 0;
}

.appointment-review__provider {
    margin-bottom: 1.1rem;
}

.appointment-review__provider-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.95rem;
}

.appointment-review__provider-main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
}

.appointment-review__avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.appointment-review__provider-info {
    min-width: 0;
}

.appointment-review__provider-name {
    margin: 0 0 0.2rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f1f1f;
}

.appointment-review__provider-role {
    margin: 0 0 0.2rem;
    color: #4f5f56;
    font-size: 0.95rem;
}

.appointment-review__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #313131;
    font-size: 0.82rem;
}

.appointment-review__rating i {
    color: #f2994a;
}

.appointment-review__provider-price {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1f1f1f;
    white-space: nowrap;
}

.appointment-review__meta {
    display: grid;
    gap: 0.5rem;
}

.appointment-review__meta p {
    margin: 0;
    font-size: 0.92rem;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.appointment-review__meta i {
    color: #2f3f38;
    line-height: 1.2;
}

.appointment-review__card {
    border: 1px solid #e3ebe6;
    border-radius: 14px;
    padding: 1rem;
    background: #fff;
    margin-bottom: 1rem;
}

.appointment-review__card-title {
    margin: 0 0 0.1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
}

.appointment-review__card-copy {
    margin: 0 0 0.95rem;
    color: #97a29c;
    font-size: 0.76rem;
}

.appointment-review__date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.appointment-review__date-value {
    font-size: 0.96rem;
    color: #263029;
    margin: 0;
}

.appointment-review__change {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.appointment-review__choice {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: #24312a;
}

.appointment-review__choice + .appointment-review__choice {
    margin-top: 0.8rem;
}

.appointment-review__choice input {
    margin: 0;
    width: 1rem;
    height: 1rem;
}

.appointment-review__someone-else[hidden] {
    display: none !important;
}

.appointment-review__someone-else {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eef2ef;
}

.appointment-review__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.45rem;
}

.appointment-review__input,
.appointment-review__textarea,
.appointment-review__select {
    border-radius: 12px;
    border: 1px solid #dfe7e2;
    min-height: 50px;
    box-shadow: none;
    font-size: 0.9rem;
}

.appointment-review__textarea {
    min-height: 96px;
    resize: vertical;
    padding-top: 0.9rem;
}

.appointment-review__input-group .input-group-text {
    background: #fff;
    border-right: none;
    border-color: #dfe7e2;
    border-radius: 12px 0 0 12px;
    color: #97a29c;
}

.appointment-review__input-group .appointment-review__input {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.appointment-review__terms {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 1.25rem 0 1rem;
    color: #1f2e27;
    font-size: 0.9rem;
}

.appointment-review__terms input {
    margin-top: 0.15rem;
}

.appointment-review__terms a {
    color: var(--bs-primary);
    text-decoration: none;
}

.appointment-review__actions {
    display: flex;
    justify-content: flex-end;
}

.appointment-review__submit {
    min-width: 210px;
    min-height: 48px;
    border-radius: 12px;
    font-weight: 600;
}

.appointment-review__otp .modal-content,
.appointment-review__success .modal-content {
    border-radius: 18px;
    border: none;
}

.appointment-review__otp .modal-dialog {
    max-width: 470px;
}

.appointment-review__otp .modal-content {
    padding: 1rem;
}

.appointment-review__otp-body {
    padding: 0.25rem 1.1rem 1.1rem;
}

.appointment-review__otp-close {
    width: 34px;
    height: 34px;
    border: 1px solid #dde5df;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f2e27;
    background: #fff;
}

.appointment-review__otp-close:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.appointment-review__otp-icon {
    width: 106px;
    max-width: 100%;
    display: block;
    margin: 0 auto 1.2rem;
}

.appointment-review__otp-title {
    margin: 0 0 0.55rem;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: #18231e;
}

.appointment-review__otp-copy {
    margin: 0 auto 1.35rem;
    max-width: 290px;
    text-align: center;
    color: #66756d;
    font-size: 0.95rem;
    line-height: 1.45;
}

.appointment-review__otp-copy strong {
    color: #24312a;
    font-weight: 500;
}

.appointment-review__otp .otp-field {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.appointment-review__otp .otp-field input {
    border-radius: 14px;
    min-height: 64px;
    font-size: 1.35rem;
    font-weight: 600;
    border: 1px solid #dfe7e2;
    box-shadow: none;
}

.appointment-review__otp .otp-field input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.15rem rgba(0, 166, 81, 0.12);
}

.appointment-review__otp-submit {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    font-weight: 600;
}

.appointment-review__success .modal-dialog {
    max-width: 420px;
}

.appointment-review__success .modal-content {
    padding: 1rem;
}

.appointment-review__success-body {
    padding: 0.25rem 1.1rem 1.1rem;
    text-align: center;
}

.appointment-review__success-close {
    width: 34px;
    height: 34px;
    border: 1px solid #dde5df;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f2e27;
    background: #fff;
}

.appointment-review__success-close:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.appointment-review__success-badge {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #27c07d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
}

.appointment-review__success-title {
    margin: 0 0 0.6rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #18231e;
}

.appointment-review__success-copy {
    margin: 0 auto 1.5rem;
    max-width: 280px;
    color: #66756d;
    font-size: 0.96rem;
    line-height: 1.5;
}

.appointment-review__success-action {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .appointment-review {
        padding: 0;
    }

    .appointment-review__shell {
        max-width: 100%;
        border: none;
        border-radius: 0;
        padding: 1rem 0.9rem 1.5rem;
    }

    .appointment-review__topbar {
        margin-bottom: 1.2rem;
    }

    .appointment-review__back span {
        display: none;
    }

    .appointment-review__title {
        font-size: 1.15rem;
    }

    .appointment-review__step {
        width: 42px;
        height: 42px;
        font-size: 0.68rem;
    }

    .appointment-review__provider-head {
        gap: 0.8rem;
    }

    .appointment-review__provider-main {
        gap: 0.75rem;
    }

    .appointment-review__avatar {
        width: 58px;
        height: 58px;
    }

    .appointment-review__provider-name {
        font-size: 1rem;
    }

    .appointment-review__provider-role,
    .appointment-review__rating,
    .appointment-review__meta p,
    .appointment-review__date-value,
    .appointment-review__choice {
        font-size: 0.78rem;
    }

    .appointment-review__provider-price {
        font-size: 1.05rem;
    }

    .appointment-review__card {
        padding: 0.95rem;
    }

    .appointment-review__card-title {
        font-size: 0.82rem;
    }

    .appointment-review__card-copy,
    .appointment-review__change,
    .appointment-review__label,
    .appointment-review__terms {
        font-size: 0.72rem;
    }

    .appointment-review__input,
    .appointment-review__textarea,
    .appointment-review__select {
        min-height: 46px;
        font-size: 0.82rem;
    }

    .appointment-review__textarea {
        min-height: 90px;
    }

    .appointment-review__actions {
        display: block;
    }

    .appointment-review__submit {
        width: 100%;
        min-width: 0;
    }

    .appointment-review__otp .modal-dialog {
        max-width: 100%;
        margin: 0;
    }

    .appointment-review__otp .modal-content {
        min-height: 100vh;
        border-radius: 0;
        padding: 0.9rem;
    }

    .appointment-review__otp-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100vh - 70px);
        padding: 0.5rem 0.2rem 1.4rem;
    }

    .appointment-review__otp-title {
        font-size: 1.45rem;
    }

    .appointment-review__otp-copy {
        font-size: 0.82rem;
        max-width: 250px;
    }

    .appointment-review__otp .otp-field {
        gap: 0.55rem;
    }

    .appointment-review__otp .otp-field input {
        min-height: 56px;
        font-size: 1.1rem;
    }

    .appointment-review__success .modal-dialog {
        max-width: 360px;
        margin: 1.75rem auto;
    }

    .appointment-review__success .modal-content {
        padding: 0.85rem;
    }

    .appointment-review__success-body {
        padding: 0.2rem 0.55rem 0.8rem;
    }

    .appointment-review__success-badge {
        width: 72px;
        height: 72px;
        font-size: 2.5rem;
        margin-bottom: 1.15rem;
    }

    .appointment-review__success-title {
        font-size: 1.35rem;
    }

    .appointment-review__success-copy {
        font-size: 0.82rem;
        max-width: 240px;
    }
}
