/* =========================================================
   COACH PROFILE
   ========================================================= */

.coach-profile-page {

    --coach-profile-primary: #6A4C93;
    --coach-profile-primary-dark: #5A3E7A;

    --coach-profile-secondary: #F8C8DC;
    --coach-profile-accent: #CDB4DB;

    --coach-profile-text: #2B2B2B;
    --coach-profile-muted: #817788;

    --coach-profile-border: #ECE5F1;

    direction: rtl;

    background:
            #FBF9FC;

}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.coach-profile-container {

    position: relative;

    z-index: 2;

}


/* =========================================================
   HERO
   ========================================================= */

.coach-profile-hero {

    position: relative;

    min-height: 520px;

    padding:
            70px 0 90px;

    overflow: hidden;

    background:
            linear-gradient(
                    135deg,
                    #F9F4FB 0%,
                    #FFF8FB 45%,
                    #F2E9F7 100%
            );

}


.coach-profile-hero-bg {

    position: absolute;

    width: 500px;
    height: 500px;

    right: -140px;
    top: -230px;

    border-radius: 50%;

    background:
            radial-gradient(
                    circle,
                    rgba(205,180,219,.35),
                    transparent 70%
            );

}


.coach-profile-content {

    max-width: 650px;

}


.coach-profile-label {

    display: inline-flex;

    align-items: center;

    margin-bottom: 12px;

    padding:
            7px 12px;

    border-radius: 30px;

    background:
            #EEE6F4;

    color:
            var(--coach-profile-primary);

    font-size: 10px;

    font-weight: 800;

}


.coach-profile-name {

    margin: 0 0 18px;

    color:
            var(--coach-profile-text);

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 900;

    line-height: 1.25;

}


.coach-profile-description,
.coach-profile-bio {

    color:
            #645B69;

    font-size: 13px;

    line-height: 2.2;

}


.coach-profile-bio {

    margin-top: 10px;

}


/* =========================================================
   CONTACT
   ========================================================= */

.coach-profile-contact {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;

}


.coach-profile-contact-btn {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 180px;

    padding: 10px 13px;

    border:
            1px solid var(--coach-profile-border);

    border-radius: 14px;

    background: #fff;

    color:
            var(--coach-profile-text);

    text-decoration: none !important;

    box-shadow:
            0 6px 18px rgba(106,76,147,.05);

    transition:
            transform .2s ease,
            box-shadow .2s ease;

}


.coach-profile-contact-btn:hover {

    transform:
            translateY(-2px);

    box-shadow:
            0 10px 25px rgba(106,76,147,.10);

}


.coach-profile-contact-icon {

    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 16px;

}


.coach-profile-contact-btn small {

    display: block;

    margin-bottom: 2px;

    color:
            #968D9B;

    font-size: 9px;

}


.coach-profile-contact-btn strong {

    display: block;

    font-size: 10px;

    font-weight: 800;

}


.coach-profile-instagram
.coach-profile-contact-icon {

    background: #FCEBF4;

    color: #B84D78;

}


.coach-profile-phone
.coach-profile-contact-icon {

    background: #ECE8F6;

    color: var(--coach-profile-primary);

}


/* =========================================================
   PROFILE IMAGE
   ========================================================= */

.coach-profile-image-area {

    position: relative;

    width: min(390px, 100%);

    height: 390px;

    margin:
            0 auto;

}


.coach-profile-image-glow {

    position: absolute;

    width: 320px;
    height: 320px;

    top: 35px;
    left: 35px;

    border-radius: 50%;

    background:
            radial-gradient(
                    circle,
                    rgba(106,76,147,.20),
                    transparent 70%
            );

    filter: blur(10px);

}


.coach-profile-image-ring {

    position: absolute;

    inset: 18px;

    border:
            1px dashed rgba(106,76,147,.25);

    border-radius: 50%;

}


.coach-profile-avatar {

    position: absolute;

    inset: 48px;

    overflow: hidden;

    border:
            10px solid rgba(255,255,255,.90);

    border-radius: 50%;

    background:
            linear-gradient(
                    135deg,
                    #EADFF0,
                    #F9DCE8
            );

    box-shadow:
            0 20px 50px rgba(106,76,147,.16);

}


.coach-profile-avatar img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

}


.coach-profile-floating {

    position: absolute;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
            1px solid rgba(255,255,255,.9);

    border-radius: 15px;

    background: rgba(255,255,255,.88);

    color:
            var(--coach-profile-primary);

    box-shadow:
            0 10px 25px rgba(106,76,147,.10);

    font-size: 19px;

}


.coach-profile-floating-1 {

    top: 45px;
    right: 12px;

}


.coach-profile-floating-2 {

    top: 120px;
    left: 0;

}


.coach-profile-floating-3 {

    right: 20px;
    bottom: 60px;

}


.coach-profile-floating-4 {

    bottom: 15px;
    left: 55px;

}


/* =========================================================
   PACKAGES SECTION
   ========================================================= */

.coach-profile-packages {

    padding:
            65px 0 90px;

    background:
            #fff;

}


.coach-profile-section-head {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;

}


.coach-profile-section-eyebrow {

    display: block;

    margin-bottom: 6px;

    color:
            var(--coach-profile-primary);

    font-size: 10px;

    font-weight: 800;

}


.coach-profile-section-head h2 {

    margin: 0 0 7px;

    color:
            var(--coach-profile-text);

    font-size: 26px;

    font-weight: 900;

}


.coach-profile-section-head p {

    margin: 0;

    color:
            var(--coach-profile-muted);

    font-size: 11px;

}


.coach-profile-view-all {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
            10px 15px;

    border:
            1px solid #E3D9EA;

    border-radius: 11px;

    background:
            #FAF7FC;

    color:
            var(--coach-profile-primary);

    text-decoration: none !important;

    font-size: 10px;

    font-weight: 800;

    transition: .2s ease;

}


.coach-profile-view-all:hover {

    background:
            #F2EAF7;

    transform:
            translateY(-1px);

}


/* =========================================================
   CATEGORY
   ========================================================= */

.coach-profile-category {

    margin-bottom: 45px;

}


.coach-profile-category-head {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

}


.coach-profile-category-head::before {

    content: "";

    width: 5px;
    height: 33px;

    border-radius: 10px;

    background:
            linear-gradient(
                    to bottom,
                    var(--coach-profile-primary),
                    var(--coach-profile-secondary)
            );

}


.coach-profile-category-head span {

    display: block;

    margin-bottom: 2px;

    color: #9A909F;

    font-size: 8px;

}


.coach-profile-category-head h3 {

    margin: 0;

    color:
            var(--coach-profile-text);

    font-size: 17px;

    font-weight: 850;

}


/* =========================================================
   PACKAGE CARD
   ========================================================= */

.coach-package-card {

    height: 100%;

    overflow: hidden;

    border:
            1px solid var(--coach-profile-border);

    border-radius: 20px;

    background: #fff;

    box-shadow:
            0 9px 28px rgba(106,76,147,.07);

    transition:
            transform .25s ease,
            box-shadow .25s ease;

}


.coach-package-card:hover {

    transform:
            translateY(-5px);

    box-shadow:
            0 17px 38px rgba(106,76,147,.12);

}


/* =========================================================
   PACKAGE IMAGE
   ========================================================= */

.coach-package-image {

    position: relative;

    height: 220px;

    overflow: hidden;

    background:
            linear-gradient(
                    135deg,
                    #F2EAF6,
                    #FBE9F0
            );

}


.coach-package-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
            transform .4s ease;

}


.coach-package-card:hover
.coach-package-image img {

    transform:
            scale(1.05);

}


.coach-package-image-overlay {

    position: absolute;

    inset: 0;

    background:
            linear-gradient(
                    to top,
                    rgba(35,25,42,.25),
                    transparent 45%
            );

    pointer-events: none;

}


.coach-package-discount {

    position: absolute;

    z-index: 2;

    top: 13px;
    left: 13px;

    display: flex;

    align-items: center;

    gap: 3px;

    padding:
            7px 10px;

    border-radius: 10px;

    background:
            #fff;

    color:
            #B54869;

    box-shadow:
            0 6px 16px rgba(0,0,0,.10);

    font-size: 11px;

    font-weight: 900;

}


.coach-package-discount span {

    font-size: 8px;

    font-weight: 700;

}


/* =========================================================
   PACKAGE BODY
   ========================================================= */

.coach-package-body {

    display: flex;

    flex-direction: column;

    height: calc(100% - 220px);

    padding:
            20px;

}


.coach-package-category-tag {

    align-self: flex-start;

    margin-bottom: 9px;

    padding:
            5px 9px;

    border-radius: 7px;

    background:
            #F5EFF9;

    color:
            var(--coach-profile-primary);

    font-size: 8px;

    font-weight: 800;

}


.coach-package-title {

    margin: 0 0 8px;

    color:
            var(--coach-profile-text);

    font-size: 17px;

    font-weight: 900;

    line-height: 1.6;

}


.coach-package-motive {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 14px;

    color:
            #35815A;

    font-size: 10px;

    font-weight: 700;

}


.coach-package-features {

    display: flex;

    flex-direction: column;

    gap: 8px;

    padding-top: 13px;

    border-top:
            1px solid #F1EBF4;

}


.coach-package-feature {

    display: flex;

    align-items: flex-start;

    gap: 7px;

    color:
            #655D6A;

    font-size: 10px;

    line-height: 1.8;

}


.coach-package-feature i {

    flex: 0 0 auto;

    margin-top: 3px;

    color:
            #6A4C93;

    font-size: 11px;

}


.coach-package-feature span {

    display: -webkit-box;

    overflow: hidden;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

}


/* =========================================================
   FOOTER
   ========================================================= */

.coach-package-footer {

    margin-top: auto;

    padding-top: 18px;

}


.coach-package-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: 100%;

    min-height: 45px;

    border-radius: 11px;

    background:
            var(--coach-profile-primary);

    color: #fff !important;

    text-decoration: none !important;

    font-size: 11px;

    font-weight: 800;

    transition:
            background .2s ease,
            transform .2s ease;

}


.coach-package-btn:hover {

    background:
            var(--coach-profile-primary-dark);

    transform:
            translateY(-1px);

}


/* =========================================================
   EMPTY
   ========================================================= */

.coach-profile-empty {

    padding:
            70px 30px;

    text-align: center;

    border:
            1px dashed #DED3E4;

    border-radius: 20px;

    background:
            #FCFAFD;

}


.coach-profile-empty-icon {

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
            0 auto 18px;

    border-radius: 20px;

    background:
            #F1EAF5;

    color:
            #8A7599;

    font-size: 30px;

}


.coach-profile-empty h3 {

    margin: 0 0 7px;

    color:
            var(--coach-profile-text);

    font-size: 17px;

    font-weight: 850;

}


.coach-profile-empty p {

    max-width: 450px;

    margin:
            0 auto;

    color:
            var(--coach-profile-muted);

    font-size: 10px;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .coach-profile-hero {

        padding-top: 50px;

    }

    .coach-profile-image-area {

        margin-top: 15px;

    }

}


@media (max-width: 767px) {

    .coach-profile-hero {

        padding:
                40px 0 60px;

    }

    .coach-profile-name {

        font-size: 30px;

    }

    .coach-profile-image-area {

        width: 300px;
        height: 300px;

    }

    .coach-profile-avatar {

        inset: 38px;

    }

    .coach-profile-image-ring {

        inset: 10px;

    }

    .coach-profile-section-head {

        align-items: flex-start;

        flex-direction: column;

    }

    .coach-profile-view-all {

        width: 100%;

        justify-content: center;

    }

    .coach-package-image {

        height: 210px;

    }

}
/* =========================================================
   COACH PACKAGES PAGE
   ========================================================= */

.coach-packages-page {

    --coach-pack-primary: #6A4C93;
    --coach-pack-primary-dark: #5A3E7A;

    --coach-pack-secondary: #F8C8DC;
    --coach-pack-accent: #CDB4DB;

    --coach-pack-text: #2B2B2B;
    --coach-pack-muted: #817788;

    --coach-pack-border: #ECE5F1;

    direction: rtl;

    padding:
            45px 0 80px;

    background:
            linear-gradient(
                    180deg,
                    #FBF9FC 0%,
                    #FFFFFF 100%
            );

}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.coach-packages-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 45px;

    padding:
            28px 30px;

    border:
            1px solid var(--coach-pack-border);

    border-radius: 22px;

    background:
            linear-gradient(
                    135deg,
                    #FFFFFF,
                    #FBF7FD
            );

    box-shadow:
            0 10px 30px rgba(106,76,147,.06);

}


.coach-packages-eyebrow {

    display: inline-block;

    margin-bottom: 7px;

    padding:
            6px 10px;

    border-radius: 20px;

    background:
            #F0E9F5;

    color:
            var(--coach-pack-primary);

    font-size: 9px;

    font-weight: 800;

}


.coach-packages-header h1 {

    margin: 0 0 7px;

    color:
            var(--coach-pack-text);

    font-size: 25px;

    font-weight: 900;

}


.coach-packages-header p {

    margin: 0;

    color:
            var(--coach-pack-muted);

    font-size: 11px;

}


.coach-packages-total {

    min-width: 100px;

    padding:
            14px 20px;

    border-radius: 15px;

    background:
            var(--coach-pack-primary);

    color: #fff;

    text-align: center;

    box-shadow:
            0 8px 20px rgba(106,76,147,.18);

}


.coach-packages-total span {

    display: block;

    margin-bottom: 3px;

    color:
            rgba(255,255,255,.75);

    font-size: 9px;

}


.coach-packages-total strong {

    display: block;

    font-size: 23px;

    font-weight: 900;

}


/* =========================================================
   CATEGORY
   ========================================================= */

.coach-packages-category {

    margin-bottom: 48px;

}


.coach-packages-category-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;

}


.coach-packages-category-head > div:first-child {

    position: relative;

    padding-right: 15px;

}


.coach-packages-category-head > div:first-child::before {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    width: 4px;
    height: 100%;

    border-radius: 10px;

    background:
            linear-gradient(
                    to bottom,
                    var(--coach-pack-primary),
                    var(--coach-pack-secondary)
            );

}


.coach-packages-category-head span {

    display: block;

    margin-bottom: 3px;

    color:
            #9D939F;

    font-size: 8px;

}


.coach-packages-category-head h2 {

    margin: 0;

    color:
            var(--coach-pack-text);

    font-size: 18px;

    font-weight: 900;

}


.coach-packages-category-count {

    padding:
            7px 12px;

    border-radius: 20px;

    background:
            #F7F2FA;

    color:
            var(--coach-pack-primary);

    font-size: 10px;

    font-weight: 800;

}


.coach-packages-category-count span {

    display: inline;

    margin: 0;

    font-size: 9px;

    color:
            var(--coach-pack-primary);

}


/* =========================================================
   PACKAGE CARD
   ========================================================= */

.coach-package-card {

    height: 100%;

    overflow: hidden;

    border:
            1px solid var(--coach-pack-border);

    border-radius: 20px;

    background: #fff;

    box-shadow:
            0 10px 30px rgba(106,76,147,.07);

    transition:
            transform .25s ease,
            box-shadow .25s ease;

}


.coach-package-card:hover {

    transform:
            translateY(-6px);

    box-shadow:
            0 18px 40px rgba(106,76,147,.12);

}


/* =========================================================
   IMAGE
   ========================================================= */

.coach-package-card-image {

    position: relative;

    height: 220px;

    overflow: hidden;

    background:
            linear-gradient(
                    135deg,
                    #F1EAF5,
                    #FBE8EF
            );

}


.coach-package-card-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
            transform .4s ease;

}


.coach-package-card:hover
.coach-package-card-image img {

    transform:
            scale(1.05);

}


.coach-package-image-shade {

    position: absolute;

    inset: 0;

    background:
            linear-gradient(
                    to top,
                    rgba(34,25,40,.35),
                    transparent 55%
            );

    pointer-events: none;

}


/* =========================================================
   DISCOUNT
   ========================================================= */

.coach-package-discount {

    position: absolute;

    z-index: 3;

    top: 13px;

    left: 13px;

    display: flex;

    align-items: baseline;

    gap: 4px;

    padding:
            7px 11px;

    border-radius: 10px;

    background:
            #fff;

    color:
            #B54767;

    box-shadow:
            0 6px 18px rgba(0,0,0,.10);

}


.coach-package-discount strong {

    font-size: 13px;

    font-weight: 900;

}


.coach-package-discount span {

    font-size: 8px;

    font-weight: 700;

}


/* =========================================================
   CATEGORY FLOAT
   ========================================================= */

.coach-package-category-floating {

    position: absolute;

    z-index: 3;

    right: 13px;

    bottom: 13px;

    padding:
            6px 10px;

    border:
            1px solid rgba(255,255,255,.25);

    border-radius: 8px;

    background:
            rgba(255,255,255,.17);

    color: #fff;

    backdrop-filter: blur(8px);

    font-size: 8px;

    font-weight: 800;

}


/* =========================================================
   BODY
   ========================================================= */

.coach-package-card-body {

    display: flex;

    flex-direction: column;

    min-height: 300px;

    padding:
            20px;

}


.coach-package-card-title {

    margin: 0 0 8px;

    color:
            var(--coach-pack-text);

    font-size: 17px;

    font-weight: 900;

    line-height: 1.6;

}


.coach-package-motive {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 14px;

    color:
            #3A8A61;

    font-size: 10px;

    font-weight: 700;

}


/* =========================================================
   FEATURES
   ========================================================= */

.coach-package-features {

    display: flex;

    flex-direction: column;

    gap: 8px;

    padding-top: 14px;

    border-top:
            1px solid #F1EBF4;

}


.coach-package-feature {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color:
            #665D6B;

    font-size: 10px;

    line-height: 1.8;

}


.coach-package-feature-icon {

    width: 19px;
    height: 19px;

    display: flex !important;

    align-items: center;

    justify-content: center;

    margin-top: 1px;

    border-radius: 6px;

    background:
            #F0EAF5;

    color:
            var(--coach-pack-primary);

}


.coach-package-feature-icon i {

    font-size: 12px !important;

}


/* =========================================================
   FOOTER
   ========================================================= */

.coach-package-card-footer {

    margin-top: auto;

    padding-top: 20px;

}


.coach-package-detail-btn {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    min-height: 45px;

    padding:
            9px 13px;

    border-radius: 11px;

    background:
            var(--coach-pack-primary);

    color: #fff !important;

    text-decoration: none !important;

    font-size: 10px;

    font-weight: 800;

    transition:
            background .2s ease,
            transform .2s ease;

}


.coach-package-detail-btn:hover {

    background:
            var(--coach-pack-primary-dark);

    transform:
            translateY(-1px);

}


.coach-package-detail-btn i {

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
            rgba(255,255,255,.12);

}


/* =========================================================
   EMPTY
   ========================================================= */

.coach-packages-empty {

    max-width: 550px;

    margin:
            50px auto;

    padding:
            60px 30px;

    text-align: center;

    border:
            1px dashed #DED4E5;

    border-radius: 22px;

    background:
            #FCFAFD;

}


.coach-packages-empty-icon {

    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
            0 auto 18px;

    border-radius: 22px;

    background:
            #F1EAF5;

    color:
            #897897;

    font-size: 31px;

}


.coach-packages-empty h2 {

    margin: 0 0 8px;

    color:
            var(--coach-pack-text);

    font-size: 18px;

    font-weight: 850;

}


.coach-packages-empty p {

    margin: 0;

    color:
            var(--coach-pack-muted);

    font-size: 10px;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .coach-packages-page {

        padding:
                25px 0 60px;

    }

    .coach-packages-header {

        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 35px;

        padding: 22px;

    }

    .coach-packages-total {

        width: 100%;

    }

    .coach-packages-header h1 {

        font-size: 22px;

    }

    .coach-packages-category-head {

        align-items: flex-end;

    }

    .coach-packages-category-count {

        white-space: nowrap;

    }

}
/* =========================================================
   COACH DIRECTORY
   ========================================================= */

.coach-directory {

    --coach-directory-primary: #6A4C93;
    --coach-directory-primary-dark: #5A3E7A;

    --coach-directory-secondary: #F8C8DC;
    --coach-directory-accent: #CDB4DB;

    --coach-directory-text: #2B2B2B;
    --coach-directory-muted: #817788;

    --coach-directory-border: #ECE5F1;

    direction: rtl;

    background:
            linear-gradient(
                    180deg,
                    #FBF9FC 0%,
                    #FFFFFF 100%
            );

}


/* =========================================================
   HERO
   ========================================================= */

.coach-directory-hero {

    position: relative;

    min-height: 270px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
            linear-gradient(
                    135deg,
                    #6A4C93 0%,
                    #7D5AAA 50%,
                    #CDB4DB 100%
            );

    color: #fff;

}


.coach-directory-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(255,255,255,.10),
                    transparent 30%
            ),
            radial-gradient(
                    circle at 85% 80%,
                    rgba(255,255,255,.08),
                    transparent 30%
            );

}


.coach-directory-hero-shape {

    position: absolute;

    border-radius: 50%;

    background:
            rgba(255,255,255,.07);

}


.coach-directory-shape-1 {

    width: 300px;
    height: 300px;

    top: -170px;
    left: -80px;

}


.coach-directory-shape-2 {

    width: 220px;
    height: 220px;

    right: 12%;
    bottom: -160px;

}


.coach-directory-hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

    padding:
            48px 0;

}


.coach-directory-eyebrow {

    display: inline-flex;

    align-items: center;

    margin-bottom: 12px;

    padding:
            7px 12px;

    border:
            1px solid rgba(255,255,255,.18);

    border-radius: 30px;

    background:
            rgba(255,255,255,.10);

    color:
            rgba(255,255,255,.85);

    font-size: 10px;

    font-weight: 800;

}


.coach-directory-hero h1 {

    margin: 0 0 10px;

    font-size: 40px;

    font-weight: 900;

}


.coach-directory-hero p {

    margin: 0;

    color:
            rgba(255,255,255,.88);

    font-size: 13px;

    line-height: 2;

}


.coach-directory-hero p i {

    margin-right: 5px;

    color:
            #FFD7E6;

}


/* =========================================================
   LIST
   ========================================================= */

.coach-directory-list {

    padding:
            45px 0 80px;

}


.coach-directory-topbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

    padding:
            17px 20px;

    border:
            1px solid var(--coach-directory-border);

    border-radius: 16px;

    background: #fff;

    box-shadow:
            0 7px 22px rgba(106,76,147,.05);

}


.coach-directory-topbar > div {

    display: flex;

    align-items: center;

    gap: 10px;

}


.coach-directory-topbar > div span {

    color:
            var(--coach-directory-muted);

    font-size: 10px;

}


.coach-directory-topbar > div strong {

    min-width: 34px;
    min-height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
            #F2EAF7;

    color:
            var(--coach-directory-primary);

    font-size: 11px;

}


.coach-directory-topbar p {

    margin: 0;

    color:
            var(--coach-directory-muted);

    font-size: 10px;

}


/* =========================================================
   CARD
   ========================================================= */

.coach-directory-card {

    height: 100%;

    overflow: hidden;

    border:
            1px solid var(--coach-directory-border);

    border-radius: 21px;

    background: #fff;

    box-shadow:
            0 10px 30px rgba(106,76,147,.065);

    transition:
            transform .25s ease,
            box-shadow .25s ease;

}


.coach-directory-card:hover {

    transform:
            translateY(-6px);

    box-shadow:
            0 18px 42px rgba(106,76,147,.12);

}


/* =========================================================
   IMAGE
   ========================================================= */

.coach-directory-image-wrap {

    position: relative;

    height: 280px;

    overflow: hidden;

    background:
            linear-gradient(
                    135deg,
                    #F2EAF6,
                    #FCEBF1
            );

}


.coach-directory-image {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
            transform .4s ease;

}


.coach-directory-card:hover
.coach-directory-image {

    transform:
            scale(1.05);

}


.coach-directory-image-overlay {

    position: absolute;

    inset: 0;

    background:
            linear-gradient(
                    to top,
                    rgba(31,23,38,.28),
                    transparent 55%
            );

}


.coach-directory-online {

    position: absolute;

    top: 14px;
    right: 14px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
            7px 10px;

    border:
            1px solid rgba(255,255,255,.25);

    border-radius: 20px;

    background:
            rgba(255,255,255,.16);

    color: #fff;

    backdrop-filter:
            blur(9px);

    font-size: 8px;

    font-weight: 800;

}


.coach-directory-online span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
            #5DE09A;

    box-shadow:
            0 0 0 4px rgba(93,224,154,.12);

}


/* =========================================================
   BODY
   ========================================================= */

.coach-directory-body {

    padding:
            20px;

}


/* =========================================================
   PROFILE
   ========================================================= */

.coach-directory-profile {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    margin-bottom: 17px;

}


.coach-directory-label {

    display: block;

    margin-bottom: 4px;

    color:
            #A098A5;

    font-size: 8px;

}


.coach-directory-profile h2 {

    margin: 0;

    color:
            var(--coach-directory-text);

    font-size: 17px;

    font-weight: 900;

}


.coach-directory-user-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
            #F2EBF7;

    color:
            var(--coach-directory-primary);

    font-size: 17px;

}


/* =========================================================
   CONTACT
   ========================================================= */

.coach-directory-contact {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
            12px;

    margin-bottom: 16px;

    border:
            1px solid #F0EAF3;

    border-radius: 12px;

    background:
            #FCFAFD;

}


.coach-directory-contact-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 34px;

    border-radius: 9px;

    background:
            #F2EAF7;

    color:
            var(--coach-directory-primary);

}


.coach-directory-contact span {

    display: block;

    margin-bottom: 3px;

    color:
            #9B929F;

    font-size: 8px;

}


.coach-directory-contact a,
.coach-directory-contact strong {

    color:
            var(--coach-directory-text);

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   ACTIONS
   ========================================================= */

.coach-directory-actions {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 8px;

}


.coach-directory-btn {

    min-height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border-radius: 11px;

    text-decoration: none !important;

    font-size: 9px;

    font-weight: 800;

    transition:
            transform .2s ease,
            background .2s ease;

}


.coach-directory-btn:hover {

    transform:
            translateY(-2px);

}


.coach-directory-btn i {

    font-size: 11px;

}


.coach-directory-btn-primary {

    background:
            var(--coach-directory-primary);

    color: #fff !important;

}


.coach-directory-btn-primary:hover {

    background:
            var(--coach-directory-primary-dark);

}


.coach-directory-btn-secondary {

    background:
            #F1EAF5;

    color:
            var(--coach-directory-primary) !important;

}


.coach-directory-btn-secondary:hover {

    background:
            #E8DDED;

}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.coach-directory-empty {

    max-width: 550px;

    margin:
            40px auto;

    padding:
            65px 30px;

    text-align: center;

    border:
            1px dashed #DDD2E4;

    border-radius: 22px;

    background:
            #FCFAFD;

}


.coach-directory-empty-icon {

    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
            0 auto 17px;

    border-radius: 22px;

    background:
            #F1EAF5;

    color:
            #8B7798;

    font-size: 31px;

}


.coach-directory-empty h2 {

    margin: 0 0 8px;

    color:
            var(--coach-directory-text);

    font-size: 18px;

    font-weight: 850;

}


.coach-directory-empty p {

    margin: 0;

    color:
            var(--coach-directory-muted);

    font-size: 10px;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .coach-directory-hero {

        min-height: 230px;

    }

    .coach-directory-hero-content {

        padding:
                40px 15px;

    }

    .coach-directory-hero h1 {

        font-size: 29px;

    }

    .coach-directory-hero p {

        font-size: 11px;

    }

    .coach-directory-list {

        padding-top: 25px;

    }

    .coach-directory-topbar {

        align-items: flex-start;

        flex-direction: column;

    }

    .coach-directory-image-wrap {

        height: 250px;

    }

}