/* ============================================================
   FYSIOHUB PHYSIO PROFILE
   ============================================================ */

:root {

    --fh-profile-purple: #6956E8;
    --fh-profile-purple-dark: #5541D7;
    --fh-profile-purple-light: #F1EEFF;

    --fh-profile-turquoise: #28C7B7;
    --fh-profile-turquoise-dark: #19A999;
    --fh-profile-turquoise-light: #E8FAF7;

    --fh-profile-navy: #102A43;
    --fh-profile-muted: #6B7C8F;

    --fh-profile-white: #FFFFFF;
    --fh-profile-bg: #F7F9FC;
    --fh-profile-border: #E7ECF2;

    --fh-profile-container: 1240px;

}


/* ============================================================
   BASIS
   ============================================================ */

.fh-profile-page,
.fh-profile-page * {
    box-sizing: border-box;
}

.fh-profile-page {

    width: 100vw;
    max-width: 100vw;

    position: relative;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    overflow: hidden;

    color: var(--fh-profile-navy);

    background: #fff;

    font-family: "Montserrat", sans-serif;

}

.fh-profile-page a {
    text-decoration: none;
}

.fh-profile-page h1,
.fh-profile-page h2,
.fh-profile-page h3,
.fh-profile-page p {
    margin-top: 0;
}

.fh-profile-container {

    width: calc(100% - 48px);
    max-width: var(--fh-profile-container);

    margin: 0 auto;

}


/* ============================================================
   HERO
   ============================================================ */

.fh-profile-hero {

    padding: 70px 0;

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(40, 199, 183, 0.11),
            transparent 29%
        ),

        radial-gradient(
            circle at 5% 0%,
            rgba(105, 86, 232, 0.10),
            transparent 27%
        ),

        linear-gradient(
            180deg,
            #FCFCFF,
            #FFFFFF
        );

}

.fh-profile-hero-grid {

    display: grid;

    grid-template-columns:
        300px
        minmax(0, 1fr)
        310px;

    gap: 45px;

    align-items: center;

}


/* ============================================================
   FOTO
   ============================================================ */

.fh-profile-photo {

    width: 100%;
    aspect-ratio: 4 / 5;

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background:

        linear-gradient(
            135deg,
            var(--fh-profile-purple-light),
            var(--fh-profile-turquoise-light)
        );

    box-shadow:
        0 20px 55px rgba(16,42,67,0.10);

}

.fh-profile-photo-img {

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;

}

.fh-profile-photo-placeholder {

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

}

.fh-profile-photo-placeholder span {

    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.86);

    color: var(--fh-profile-purple);

    font-size: 31px;
    font-weight: 800;

}

.fh-profile-verified-badge {

    position: absolute;

    left: 17px;
    bottom: 17px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 8px 11px;

    border-radius: 999px;

    background: rgba(255,255,255,0.94);

    color: var(--fh-profile-turquoise-dark);

    font-size: 10px;
    font-weight: 750;

}

.fh-profile-verified-badge span {

    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--fh-profile-turquoise-light);

}


/* ============================================================
   HERO CONTENT
   ============================================================ */

.fh-profile-eyebrow,
.fh-profile-section-label {

    display: block;

    margin-bottom: 9px;

    color: var(--fh-profile-purple);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.10em;
    text-transform: uppercase;

}

.fh-profile-hero-content h1 {

    margin-bottom: 9px;

    color: var(--fh-profile-navy);

    font-size: clamp(
        41px,
        4.5vw,
        62px
    );

    font-weight: 780;

    line-height: 1.03;

    letter-spacing: -0.05em;

}

.fh-profile-practice {

    margin-bottom: 10px;

    color: var(--fh-profile-navy);

    font-size: 15px;
    font-weight: 700;

}

.fh-profile-location {

    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 19px;

    color: var(--fh-profile-muted);

    font-size: 13px;
    font-weight: 600;

}

.fh-profile-location svg {

    width: 17px;
    height: 17px;

    fill: none;

    stroke: var(--fh-profile-purple);

    stroke-width: 1.8;

}

.fh-profile-intro {

    max-width: 610px;

    margin-bottom: 25px;

    color: var(--fh-profile-muted);

    font-size: 15px;
    line-height: 1.75;

}

.fh-profile-hero-actions {

    display: flex;
    flex-wrap: wrap;

    gap: 11px;

}


/* ============================================================
   BUTTONS
   ============================================================ */

.fh-profile-primary-button,
.fh-profile-secondary-button {

    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 18px;

    border-radius: 12px;

    font-size: 12px;
    font-weight: 750;

}

.fh-profile-primary-button {

    background:

        linear-gradient(
            135deg,
            var(--fh-profile-purple),
            var(--fh-profile-purple-dark)
        );

    color: #fff;

    box-shadow:
        0 10px 28px rgba(105,86,232,0.22);

}

.fh-profile-secondary-button {

    border: 1px solid var(--fh-profile-border);

    background: #fff;

    color: var(--fh-profile-navy);

}


/* ============================================================
   BOOKING CARD
   ============================================================ */

.fh-profile-booking-card {

    padding: 26px;

    border: 1px solid var(--fh-profile-border);

    border-radius: 23px;

    background: #fff;

    box-shadow:
        0 18px 50px rgba(16,42,67,0.08);

}

.fh-profile-booking-label {

    margin-bottom: 6px;

    color: var(--fh-profile-purple);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.09em;

}

.fh-profile-booking-card h2 {

    margin-bottom: 20px;

    font-size: 23px;

}

.fh-profile-availability-placeholder {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;

    padding: 14px;

    border-radius: 13px;

    background: var(--fh-profile-bg);

}

.fh-profile-availability-dot {

    width: 10px;
    height: 10px;

    flex: 0 0 10px;

    margin-top: 5px;

    border-radius: 50%;

    background: var(--fh-profile-turquoise);

    box-shadow:
        0 0 0 4px rgba(40,199,183,0.13);

}

.fh-profile-availability-placeholder strong,
.fh-profile-next-slot strong {

    display: block;

    margin-bottom: 4px;

    color: var(--fh-profile-navy);

    font-size: 12px;

}

.fh-profile-availability-placeholder span {

    display: block;

    color: var(--fh-profile-muted);

    font-size: 10px;
    line-height: 1.55;

}

.fh-profile-next-slot {

    margin-bottom: 20px;

    padding: 15px;

    border-radius: 13px;

    background: var(--fh-profile-turquoise-light);

}

.fh-profile-next-slot span {

    display: block;

    margin-bottom: 5px;

    color: var(--fh-profile-muted);

    font-size: 9px;

}

.fh-profile-booking-button {

    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 11px;

    background: var(--fh-profile-purple);

    color: #fff;

    font-size: 11px;
    font-weight: 750;

}


/* ============================================================
   CONTENT
   ============================================================ */

.fh-profile-content-section {

    padding: 70px 0 90px;

    background: var(--fh-profile-bg);

}

.fh-profile-content-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.6fr)
        minmax(280px, 0.7fr);

    gap: 25px;

    align-items: start;

}

.fh-profile-main,
.fh-profile-sidebar {

    display: flex;
    flex-direction: column;

    gap: 20px;

}


/* ============================================================
   PANELS
   ============================================================ */

.fh-profile-panel,
.fh-profile-sidebar-card {

    padding: 30px;

    border: 1px solid var(--fh-profile-border);

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 8px 30px rgba(16,42,67,0.035);

}

.fh-profile-panel h2 {

    margin-bottom: 20px;

    font-size: 25px;

    letter-spacing: -0.03em;

}

.fh-profile-sidebar-card h3 {

    margin-bottom: 15px;

    font-size: 18px;

}

.fh-profile-bio {

    margin: 0;

    color: var(--fh-profile-muted);

    font-size: 14px;
    line-height: 1.8;

}


/* ============================================================
   SPECIALISATIONS
   ============================================================ */

.fh-profile-specialisations {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 12px;

}

.fh-profile-specialisation-card {

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 15px;

    border-radius: 13px;

    background: var(--fh-profile-bg);

    color: var(--fh-profile-navy);

    font-size: 12px;
    font-weight: 700;

}

.fh-profile-specialisation-card > div {

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--fh-profile-purple-light);

    color: var(--fh-profile-purple);

    font-size: 10px;

}


/* ============================================================
   TREATMENTS
   ============================================================ */

.fh-profile-treatment-grid {

    display: flex;
    flex-wrap: wrap;

    gap: 10px;

}

.fh-profile-treatment-item {

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 11px 14px;

    border: 1px solid var(--fh-profile-border);

    border-radius: 999px;

    color: var(--fh-profile-navy);

    font-size: 11px;
    font-weight: 650;

}

.fh-profile-treatment-check {

    color: var(--fh-profile-turquoise-dark);

    font-weight: 900;

}


/* ============================================================
   LOCATION
   ============================================================ */

.fh-profile-location-box {

    display: flex;

    gap: 14px;

    margin-bottom: 20px;

}

.fh-profile-location-icon {

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--fh-profile-purple-light);

    color: var(--fh-profile-purple);

}

.fh-profile-location-icon svg {

    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;

}

.fh-profile-location-box strong {

    display: block;

    margin-bottom: 5px;

    font-size: 13px;

}

.fh-profile-location-box span {

    color: var(--fh-profile-muted);

    font-size: 11px;

}

.fh-profile-map-placeholder {

    min-height: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:

        linear-gradient(
            135deg,
            var(--fh-profile-purple-light),
            var(--fh-profile-turquoise-light)
        );

    color: var(--fh-profile-muted);

    font-size: 11px;

}


/* ============================================================
   CONTACT
   ============================================================ */

.fh-profile-contact-list {

    display: flex;
    flex-direction: column;

}

.fh-profile-contact-list a {

    display: block;

    padding: 12px 0;

    border-top: 1px solid var(--fh-profile-border);

}

.fh-profile-contact-list span {

    display: block;

    margin-bottom: 4px;

    color: var(--fh-profile-muted);

    font-size: 9px;

}

.fh-profile-contact-list strong {

    display: block;

    overflow-wrap: anywhere;

    color: var(--fh-profile-navy);

    font-size: 11px;

}


/* ============================================================
   TRUST
   ============================================================ */

.fh-profile-trust-card {

    display: flex;

    gap: 14px;

}

.fh-profile-trust-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--fh-profile-turquoise-light);

    color: var(--fh-profile-turquoise-dark);

    font-weight: 900;

}

.fh-profile-trust-card p,
.fh-profile-sidebar-text {

    margin-bottom: 15px;

    color: var(--fh-profile-muted);

    font-size: 11px;
    line-height: 1.65;

}

.fh-profile-big {

    padding-top: 12px;

    border-top: 1px solid var(--fh-profile-border);

}

.fh-profile-big span {

    display: block;

    margin-bottom: 3px;

    color: var(--fh-profile-muted);

    font-size: 9px;

}

.fh-profile-big strong {

    font-size: 11px;

}


/* ============================================================
   CTA
   ============================================================ */

.fh-profile-bottom-cta-section {

    padding: 70px 0 100px;

    background: #fff;

}

.fh-profile-bottom-cta {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 50px 55px;

    border-radius: 30px;

    background:

        linear-gradient(
            135deg,
            var(--fh-profile-purple),
            var(--fh-profile-purple-dark)
        );

}

.fh-profile-label-light {

    color: #91EADF;

}

.fh-profile-bottom-cta h2 {

    margin-bottom: 10px;

    color: #fff;

    font-size: 36px;

}

.fh-profile-bottom-cta h2 span {

    color: #91EADF;

}

.fh-profile-bottom-cta p {

    margin: 0;

    color: rgba(255,255,255,0.72);

    font-size: 13px;

}

.fh-profile-cta-button {

    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    flex: 0 0 auto;

    padding: 0 19px;

    border-radius: 12px;

    background: #fff;

    color: var(--fh-profile-purple);

    font-size: 12px;
    font-weight: 750;

}


/* ============================================================
   NOT FOUND
   ============================================================ */

.fh-profile-not-found {

    min-height: 600px;

    display: flex;
    align-items: center;

    padding: 80px 0;

    background: var(--fh-profile-bg);

}

.fh-profile-not-found-card {

    max-width: 620px;

    margin: 0 auto;

    padding: 50px;

    border-radius: 25px;

    background: #fff;

    text-align: center;

}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1050px) {

    .fh-profile-hero-grid {

        grid-template-columns:
            250px
            1fr;

    }

    .fh-profile-booking-card {

        grid-column: 1 / -1;

    }

    .fh-profile-content-grid {

        grid-template-columns: 1fr;

    }

    .fh-profile-sidebar {

        display: grid;

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media (max-width: 750px) {

    .fh-profile-container {

        width: calc(100% - 30px);

    }

    .fh-profile-hero-grid {

        grid-template-columns: 1fr;

    }

    .fh-profile-photo-column {

        max-width: 330px;

        width: 100%;

        margin: 0 auto;

    }

    .fh-profile-hero-content {

        text-align: center;

    }

    .fh-profile-location,
    .fh-profile-hero-actions {

        justify-content: center;

    }

    .fh-profile-intro {

        margin-left: auto;
        margin-right: auto;

    }

    .fh-profile-sidebar {

        grid-template-columns: 1fr;

    }

    .fh-profile-specialisations {

        grid-template-columns: 1fr;

    }

    .fh-profile-bottom-cta {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 500px) {

    .fh-profile-hero {

        padding: 50px 0;

    }

    .fh-profile-panel,
    .fh-profile-sidebar-card {

        padding: 22px;

    }

    .fh-profile-bottom-cta {

        padding: 35px 25px;

    }

    .fh-profile-cta-button {

        width: 100%;

    }

}

/* ============================================================
   LIVE BESCHIKBAARHEID
   ============================================================ */

.fh-profile-live-slots {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 18px;

}


.fh-profile-live-slot {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 11px 12px;

    border-radius: 10px;

    background: #F7F9FC;

}


.fh-profile-live-slot span {

    color: #6B7C8F;

    font-size: 10px;

}


.fh-profile-live-slot strong {

    color: #6956E8;

    font-size: 11px;

}