/* =========================
   BUTTON
========================= */
#button-lte {
    background-color: #ffffff !important;
    border-color: #060708 !important;
    color: #060708 !important;
}

/* =========================
   HERO BANNER
========================= */
.hero-banner {
    height: auto;
    display: block;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    text-align: center;
}

.hero-banner h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero-banner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-banner p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero-banner .service-icon {
    color: #9CA3AF;
    margin-right: 8px;
}

/* =========================
   PROVIDER CARD LAYOUT
========================= */
.provider-card.coming-soon-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    max-width: 850px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

/* IMAGE */
.provider-avatar {
    flex: 0 0 170px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
}

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

/* CONTENT */
.provider-content {
    flex: 1;
    text-align: left;
}

/* NAME */
.provider-name {
    margin-bottom: 6px;
}

/* =========================
   STATUS BADGES (FIXED GLOBAL)
========================= */
.status-badge {
    display: inline-block !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
    border: 1px solid transparent !important;
}

.status-badge.active {
    background: #e8f5ee !important;
    color: #1f7a4a !important;
    border-color: #bfe6cc !important;
}

.status-badge.waitlist {
    background: #fff6e5 !important;
    color: #a66a00 !important;
    border-color: #f3d49a !important;
}

.status-badge.coming-soon {
    background: #eef2f7 !important;
    color: #4a5a6a !important;
    border-color: #cfd8e3 !important;
}

/* STATUS LINE */
.provider-status {
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 12px;
}

/* META */
.provider-meta {
    text-align: left !important;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.provider-meta strong {
    color: #b88d3e;
}

/* BIO */
.provider-bio {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

/* CTA */
.provider-cta {
    margin-top: 15px;
}

/* BOOK NOW */
.book-now-btn {
    background: #b88d3e !important;
    border-color: #b88d3e !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
}

.book-now-btn:hover {
    background: #9f7732 !important;
    border-color: #9f7732 !important;
}

.waitlist-btn {
    display: inline-block;
    background: #b88d3e;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all .2s ease;
}

.waitlist-btn:hover {
    background: #9f7732;
    color: #fff !important;
}

/* =========================
   SPECIALTIES (FINAL FIXED SYSTEM)
========================= */

.provider-specialties-wrap {
    margin-top: 20px;
    display: block;
}

.specialties-label {
    font-weight: 700;
    color: #b88d3e;
    margin-bottom: 12px;
}

.specialty-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 20px !important;
}

.specialty-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
}

/* CHECKBOX BOX */
.specialty-check {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 2px solid #b88d3e !important;
    background: #fff !important;
    color: #b88d3e !important;

    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

/* TEXT */
.specialty-text {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 768px) {

    .provider-card.coming-soon-card {
        flex-direction: column;
        text-align: center;
    }

    .provider-avatar {
        margin: 0 auto 15px auto;
    }

    .provider-content {
        text-align: center;
    }

    .provider-meta,
    .provider-bio {
        text-align: left !important;
    }

    .specialty-grid {
        grid-template-columns: 1fr !important;
    }
}
.therapist-results a.button.primary.is-medium.is-rounded {
    background: #b88d3e !important;
    border: 1px solid #b88d3e !important;
    color: #fff !important;
}

.therapist-results a.button.primary.is-medium.is-rounded:hover {
    background: #a57d35 !important;
    border-color: #a57d35 !important;
}
.provider-cta {
    margin-top: 15px;
}

.provider-cta .book-now-btn {
    display: inline-block;
    background: #b88d3e;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.provider-cta .book-now-btn:hover {
    background: #9f7732;
}
/* =========================
   TEAM GRID
========================= */

.team-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* =========================
   COLUMN BEHAVIOR
========================= */

.team-grid .col {
    float: none !important;
    display: flex !important;
    justify-content: center !important;
    box-sizing: border-box;
    padding: 10px;
}

/* =========================
   4 PER ROW DESKTOP
========================= */

@media (min-width: 1024px) {

    .team-grid .col.large-3 {
        width: 25% !important;
        max-width: 25% !important;
    }

}

/* =========================
   3 PER ROW TABLET
========================= */

@media (min-width: 768px) and (max-width: 1023px) {

    .team-grid .col.medium-4 {
        width: 33.333% !important;
        max-width: 33.333% !important;
    }

}

/* =========================
   2 PER ROW MOBILE/TABLET
========================= */

@media (max-width: 767px) {

    .team-grid .col {
        width: 50% !important;
        max-width: 50% !important;
    }

}

/* =========================
   1 PER ROW SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .team-grid .col {
        width: 100% !important;
        max-width: 100% !important;
    }

}

/* =========================
   GROUP TITLE
========================= */
.team-group-title {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin: 40px 0 20px 0;
    clear: both;
}

/* =========================
   TEAM CARD
========================= */
.team-card {
    width: 100%;
    max-width: 280px;

    text-align: center;

    padding: 20px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* PROFILE IMAGE */
.team-card img {
    width: 205px;
    height: 205px;

    border-radius: 50%;
    object-fit: cover;

    display: block;
    margin: 0 auto 12px auto;
}

/* NAME */
.team-card h3 {
    font-size: 16px;
    margin: 8px 0 4px 0;
}

/* CREDENTIALS */
.team-card p {
    font-size: 13px;
    margin-bottom: 10px;
}

/* =========================
   STATUS BADGES (IMPORTANT)
========================= */
.status-pill {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    margin: 6px 0 10px 0;
    font-weight: 600;
}

/* green */
.status-pill.active {
    background: #e7f7ee;
    color: #1f7a3a;
    border: 1px solid #1f7a3a;
}

/* yellow */
.status-pill.waitlist {
    background: #fff6db;
    color: #a87400;
    border: 1px solid #a87400;
}

/* blue */
.status-pill.coming {
    background: #e6f0ff;
    color: #1f4fa3;
    border: 1px solid #1f4fa3;
}

/* =========================
   BUTTON
========================= */
.learn-more-btn {
    font-size: 13px;
    padding: 8px 14px;

    background: #b88d3e;
    color: #fff;

    border-radius: 8px;

    display: inline-block;
    margin: 0 auto;
    cursor: pointer;
}

/* =========================
   MODAL BACKDROP
========================= */
.provider-modal {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.65);

    display: none;

    align-items: flex-start;
    justify-content: center;

    overflow-y: auto;

    z-index: 999999;

    padding: 120px 20px 40px;
    box-sizing: border-box;
}

/* =========================
   MODAL BOX
========================= */
.modal-box {
    background: #fff;
    width: 90%;
    max-width: 850px;

    padding: 30px;
    border-radius: 12px;

    position: relative;

    animation: modalFade .18s ease-out;
}

/* animation */
@keyframes modalFade {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* CLOSE BUTTON */
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;

    cursor: pointer;
    font-size: 28px;
}

/* =========================
   MODAL PHOTO
========================= */
.modal-photo {
    width: 165px;
    height: 165px;

    border-radius: 50%;
    object-fit: cover;

    display: block;
    margin: 0 auto 18px auto;
}

/* =========================
   MODAL CONTENT SPACING
========================= */
.modal-bio {
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-cta {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* =========================
   SPECIALTIES (VERTICAL LIST)
========================= */
.provider-specialties {
    margin-top: 22px;
    margin-bottom: 28px;
}

.provider-specialties h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.specialties-grid {
    display: block;
}

.specialty-item {
    display: flex;
    align-items: center;

    gap: 10px;
    margin-bottom: 8px;
}

.specialty-item:last-child {
    margin-bottom: 0;
}

.specialty-box {
    width: 18px;
    height: 18px;

    border: 2px solid #b88d3e;
    border-radius: 3px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b88d3e;
    font-size: 12px;
    font-weight: 700;
}

.specialty-text {
    line-height: 1.3;
}
.provider-section-anchor {
    scroll-margin-top: 120px;
}
.provider-state-section {
    scroll-margin-top: 120px;
}
/* Nowlogy™ Stats Banner Animation */

.nowlogy-stats .col {
    opacity: 0;
    transform: translateY(25px);
    animation: nowlogyFadeUp 0.8s ease forwards;
}

.nowlogy-stats .col:nth-child(1) {
    animation-delay: 0.1s;
}

.nowlogy-stats .col:nth-child(2) {
    animation-delay: 0.25s;
}

.nowlogy-stats .col:nth-child(3) {
    animation-delay: 0.4s;
}

.nowlogy-stats .col:nth-child(4) {
    animation-delay: 0.55s;
}

@keyframes nowlogyFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Number styling */
.nowlogy-stats .number {
    color: #b78c45;
    font-size: 48px;
    font-weight: 700;
}


/* Hover effect */
.nowlogy-stats .col:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}
.provider-filter-button {
    background: #b78c45 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 6px !important;
    padding: 12px 28px !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: 0.2s ease;
}

.provider-filter-button:hover {
    background: #9f7739 !important;
    color: #fff !important;
    transform: translateY(-1px);
}
.provider-filter-title {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}
.modal-cta-top {
    margin: 15px 0 20px;
}