/* =========================================================
   BEASTMUSCLE UI THEME
   Version: 1.0
   Theme: Dark / Premium / Athletic
   Primary: Deep Red
   Compatible: Bootstrap 5 / AdminLTE 4
   ========================================================= */


/* =========================================================
   01. GOOGLE FONTS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');


/* =========================================================
   02. ROOT VARIABLES
   ========================================================= */

:root {

    /* -----------------------------------------
       Brand
       ----------------------------------------- */

    --bm-primary: #F6080F;
    --bm-primary-hover: #FF3B42;
    --bm-primary-dark: #C40810;

    --bm-black: #080A0B;
    --bm-black-2: #0B0D0F;

    /* -----------------------------------------
       Backgrounds
       ----------------------------------------- */

    --bm-bg: #080A0B;
    --bm-bg-secondary: #101315;
    --bm-bg-tertiary: #13171A;

    --bm-surface: #161A1D;
    --bm-surface-hover: #1D2226;
    --bm-surface-light: #20262A;

    /* -----------------------------------------
       Borders
       ----------------------------------------- */

    --bm-border: #272D31;
    --bm-border-light: #32393E;
    --bm-border-primary: rgba(246, 8, 15, 0.45);

    /* -----------------------------------------
       Text
       ----------------------------------------- */

    --bm-white: #F5F7F2;
    --bm-text: #D9DDDA;
    --bm-text-secondary: #B2B8BC;
    --bm-muted: #9AA1A6;
    --bm-muted-dark: #656C71;

    /* -----------------------------------------
       Status
       ----------------------------------------- */

    --bm-success: #22C55E;
    --bm-warning: #F59E0B;
    --bm-danger: #EF4444;
    --bm-info: #38BDF8;

    /* -----------------------------------------
       Shadows
       ----------------------------------------- */

    --bm-shadow-sm:
        0 4px 16px rgba(0, 0, 0, 0.22);

    --bm-shadow:
        0 18px 45px rgba(0, 0, 0, 0.32);

    --bm-shadow-lg:
        0 32px 80px rgba(0, 0, 0, 0.45);

    --bm-glow:
        0 0 30px rgba(246, 8, 15, 0.18);

    --bm-glow-strong:
        0 0 45px rgba(246, 8, 15, 0.28);

    /* -----------------------------------------
       Radius
       ----------------------------------------- */

    --bm-radius-sm: 8px;
    --bm-radius: 14px;
    --bm-radius-lg: 20px;
    --bm-radius-xl: 28px;

    /* -----------------------------------------
       Typography
       ----------------------------------------- */

    --bm-font-body: 'Inter', sans-serif;
    --bm-font-display: 'Bebas Neue', sans-serif;

    /* -----------------------------------------
       Layout
       ----------------------------------------- */

    --bm-sidebar-width: 250px;
    --bm-navbar-height: 64px;

    /* -----------------------------------------
       Transitions
       ----------------------------------------- */

    --bm-transition:
        all 0.2s ease;

}


/* =========================================================
   03. GLOBAL
   ========================================================= */

html {
    background: var(--bm-bg);
}

body {
    margin: 0;
    padding: 0;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(246, 8, 15, 0.025),
            transparent 35%
        ),
        var(--bm-bg);

    color: var(--bm-text);

    font-family: var(--bm-font-body);

    font-size: 14px;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* =========================================================
   04. SELECTION
   ========================================================= */

::selection {
    background: var(--bm-primary);
    color: var(--bm-black);
}


/* =========================================================
   05. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bm-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bm-border-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bm-primary-dark);
}


/* =========================================================
   06. LINKS
   ========================================================= */

a {
    color: var(--bm-primary);
    text-decoration: none;

    transition: var(--bm-transition);
}

a:hover {
    color: var(--bm-primary-hover);
}


/* =========================================================
   07. DISPLAY TYPOGRAPHY
   ========================================================= */

.bm-display {
    font-family: var(--bm-font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bm-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--bm-white);
    margin-bottom: 5px;
}

.bm-section-title {
    font-family: var(--bm-font-display);

    font-size: 42px;

    color: var(--bm-white);

    text-transform: uppercase;

    letter-spacing: 1px;

    line-height: 1;
}

.bm-section-title span {
    color: var(--bm-primary);
}

.bm-eyebrow {
    display: inline-block;

    color: var(--bm-primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


/* =========================================================
   08. BRAND
   ========================================================= */

.bm-logo {
    display: inline-flex;
    align-items: center;

    font-family: var(--bm-font-display);

    font-size: 30px;

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: .5px;

    color: var(--bm-white);

    white-space: nowrap;
}

.bm-logo:hover {
    color: var(--bm-white);
}

.bm-logo strong {
    color: var(--bm-primary);
}


/* =========================================================
   09. PRIMARY BUTTON
   ========================================================= */

.btn-beast {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 44px;

    padding: 11px 24px;

    border: 1px solid var(--bm-primary);

    border-radius: var(--bm-radius-sm);

    background: var(--bm-primary);

    color: var(--bm-black);

    font-family: var(--bm-font-body);

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

    cursor: pointer;

    transition: var(--bm-transition);
}

.btn-beast:hover {
    background: var(--bm-primary-hover);

    border-color: var(--bm-primary-hover);

    color: var(--bm-black);

    transform: translateY(-1px);

    box-shadow: var(--bm-glow);
}

.btn-beast:active {
    transform: translateY(0);
}


/* =========================================================
   10. OUTLINE BUTTON
   ========================================================= */

.btn-beast-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 44px;

    padding: 11px 24px;

    border: 1px solid var(--bm-primary);

    border-radius: var(--bm-radius-sm);

    background: transparent;

    color: var(--bm-white);

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

    transition: var(--bm-transition);
}

.btn-beast-outline:hover {
    background: var(--bm-primary);

    color: var(--bm-black);

    box-shadow: var(--bm-glow);
}


/* =========================================================
   11. DARK BUTTON
   ========================================================= */

.btn-beast-dark {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 20px;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    color: var(--bm-white);

    border-radius: var(--bm-radius-sm);

    font-weight: 700;

    transition: var(--bm-transition);
}

.btn-beast-dark:hover {
    background: var(--bm-surface-hover);

    border-color: var(--bm-primary);

    color: var(--bm-primary);
}


/* =========================================================
   12. CARDS
   ========================================================= */

.bm-card {
    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);

    box-shadow: var(--bm-shadow-sm);

    overflow: hidden;

    transition: var(--bm-transition);
}

.bm-card:hover {
    border-color: var(--bm-border-light);
}

.bm-card-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    border-bottom: 1px solid var(--bm-border);

    background: rgba(255,255,255,.01);
}

.bm-card-title {
    margin: 0;

    color: var(--bm-white);

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.bm-card-body {
    padding: 20px;
}


/* =========================================================
   13. STAT / KPI CARDS
   ========================================================= */

.bm-stat {
    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 110px;

    padding: 20px;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);

    overflow: hidden;

    transition: var(--bm-transition);
}

.bm-stat:hover {
    border-color: var(--bm-border-primary);

    transform: translateY(-2px);

    box-shadow: var(--bm-glow);
}

.bm-stat::after {
    content: "";

    position: absolute;

    right: -30px;
    bottom: -40px;

    width: 100px;
    height: 100px;

    background: rgba(246, 8, 15, .035);

    border-radius: 50%;
}

.bm-stat-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(246, 8, 15, .10);

    color: var(--bm-primary);

    font-size: 21px;
}

.bm-stat-label {
    display: block;

    margin-bottom: 2px;

    color: var(--bm-muted);

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.bm-stat-value {
    display: block;

    color: var(--bm-white);

    font-size: 25px;

    font-weight: 800;

    line-height: 1.2;
}

.bm-stat-change {
    font-size: 11px;

    font-weight: 600;
}

.bm-stat-change.up {
    color: var(--bm-success);
}

.bm-stat-change.down {
    color: var(--bm-danger);
}


/* =========================================================
   14. FORMS
   ========================================================= */

.form-label {
    color: var(--bm-text);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .4px;

    margin-bottom: 7px;
}

.form-control,
.form-select {
    min-height: 43px;

    background-color: var(--bm-bg-secondary) !important;

    border: 1px solid var(--bm-border) !important;

    border-radius: var(--bm-radius-sm);

    color: var(--bm-white) !important;

    font-family: var(--bm-font-body);

    font-size: 13px;

    transition: var(--bm-transition);
}

.form-control::placeholder {
    color: var(--bm-muted-dark);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bm-primary) !important;

    box-shadow:
        0 0 0 2px rgba(246, 8, 15, .10) !important;

    outline: none;
}

.form-select option {
    background: var(--bm-surface);

    color: var(--bm-white);
}


/* =========================================================
   15. CHECKBOX / RADIO
   ========================================================= */

.form-check-input {
    background-color: var(--bm-bg-secondary);

    border-color: var(--bm-border-light);
}

.form-check-input:checked {
    background-color: var(--bm-primary);

    border-color: var(--bm-primary);
}

.form-check-input:focus {
    box-shadow:
        0 0 0 2px rgba(246, 8, 15, .15);
}


/* =========================================================
   16. TABLE
   ========================================================= */

.bm-table-wrapper {
    overflow-x: auto;

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);
}

.table {
    margin-bottom: 0;

    color: var(--bm-text);

    vertical-align: middle;
}

.table > :not(caption) > * > * {
    background: transparent;

    border-bottom-color: var(--bm-border);

    color: var(--bm-text);

    padding: 13px 15px;
}

.table thead th {
    background: var(--bm-bg-secondary);

    color: var(--bm-muted);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;

    white-space: nowrap;
}

.table tbody tr {
    transition: var(--bm-transition);
}

.table tbody tr:hover {
    background: rgba(246, 8, 15, .025);
}

.table tbody td {
    font-size: 13px;
}

.table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================================
   16b. RESPONSIVE TABLE -> MOBILE CARDS
   Opt in with class="bm-table-responsive" on the <table>, and a
   data-label="Column Name" attribute on every <td>. Below 767px each row
   becomes a stacked card with the column name as a left-aligned label —
   no JS, no duplicated markup for a separate mobile view.
   ========================================================= */

@media (max-width: 767px) {

    .bm-table-responsive thead {
        display: none;
    }

    .bm-table-responsive,
    .bm-table-responsive tbody,
    .bm-table-responsive tr,
    .bm-table-responsive td {
        display: block;
        width: 100%;
    }

    .bm-table-responsive tr {
        margin-bottom: 12px;
        padding: 6px 15px;
        background: var(--bm-surface);
        border: 1px solid var(--bm-border);
        border-radius: var(--bm-radius);
    }

    .bm-table-responsive tr:last-child {
        margin-bottom: 0;
    }

    .bm-table-responsive td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid var(--bm-border);
        text-align: right;
    }

    .bm-table-responsive td:last-child {
        border-bottom: 0;
    }

    .bm-table-responsive td::before {
        content: attr(data-label);
        flex-shrink: 0;
        margin-right: auto;
        color: var(--bm-muted);
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-align: left;
    }

    .bm-table-responsive td[data-label=""]::before,
    .bm-table-responsive td:not([data-label])::before {
        content: none;
    }
}


/* =========================================================
   17. MEMBER AVATAR
   ========================================================= */

.bm-avatar {
    width: 38px;
    height: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: var(--bm-surface-light);

    border: 1px solid var(--bm-border);

    color: var(--bm-primary);

    font-size: 13px;

    font-weight: 800;
}

.bm-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   17b. PHOTO PICKER (upload + camera capture)
   Markup contract: .bm-photo-picker containing .bm-photo-preview-img,
   .bm-photo-preview-placeholder, .bm-photo-file-input, and optionally
   .bm-photo-camera-toggle / .bm-camera-panel / .bm-camera-video /
   .bm-camera-canvas / .bm-camera-capture / .bm-camera-cancel. See the
   shared initPhotoPicker() JS in views/pages/members.php.
   ========================================================= */

.bm-photo-picker {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;
}

.bm-photo-preview {
    position: relative;

    flex-shrink: 0;

    width: 84px;
    height: 84px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--bm-surface-light);

    border: 1px solid var(--bm-border);

    border-radius: 50%;
}

.bm-photo-preview-img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.bm-photo-preview-placeholder {
    color: var(--bm-muted);

    font-size: 32px;
}

.bm-photo-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 10px;
}

.bm-photo-upload-label {
    margin: 0;

    cursor: pointer;
}

.bm-camera-panel {
    width: 100%;

    margin-top: 14px;

    padding: 14px;

    background: var(--bm-bg-secondary);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);
}

.bm-camera-video {
    width: 100%;
    max-width: 320px;

    background: #000;

    border-radius: var(--bm-radius-sm);
}


/* =========================================================
   18. STATUS BADGES
   ========================================================= */

.bm-badge {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 5px 9px;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .3px;

    white-space: nowrap;
}

.bm-badge::before {
    content: "";

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: currentColor;
}

.bm-badge-active {
    color: var(--bm-success);

    background: rgba(34,197,94,.10);
}

.bm-badge-expiring {
    color: var(--bm-warning);

    background: rgba(245,158,11,.10);
}

.bm-badge-expired {
    color: var(--bm-danger);

    background: rgba(239,68,68,.10);
}

.bm-badge-pending {
    color: var(--bm-info);

    background: rgba(56,189,248,.10);
}


/* =========================================================
   19. SIDEBAR
   ========================================================= */

.bm-sidebar {
    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    width: var(--bm-sidebar-width);

    z-index: 1030;

    background: var(--bm-bg-secondary);

    border-right: 1px solid var(--bm-border);

    overflow-y: auto;
}

.bm-sidebar-brand {
    height: var(--bm-navbar-height);

    display: flex;

    align-items: center;

    padding: 0 22px;

    border-bottom: 1px solid var(--bm-border);
}

.bm-sidebar-nav {
    padding: 15px 10px;
}

.bm-sidebar-section {
    margin: 18px 12px 7px;

    color: var(--bm-muted-dark);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.bm-sidebar-link {
    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 43px;

    margin-bottom: 2px;

    padding: 9px 13px;

    border-radius: var(--bm-radius-sm);

    color: var(--bm-text-secondary);

    font-size: 13px;

    font-weight: 600;

    transition: var(--bm-transition);
}

.bm-sidebar-link i {
    width: 20px;

    text-align: center;

    color: var(--bm-muted);
}

.bm-sidebar-link:hover {
    background: rgba(255,255,255,.035);

    color: var(--bm-white);
}

.bm-sidebar-link:hover i {
    color: var(--bm-primary);
}

.bm-sidebar-link.active {
    background: rgba(246, 8, 15, .10);

    color: var(--bm-primary);
}

.bm-sidebar-link.active::before {
    content: "";

    position: absolute;

    left: 0;
    top: 9px;
    bottom: 9px;

    width: 3px;

    background: var(--bm-primary);

    border-radius: 0 3px 3px 0;
}

.bm-sidebar-link.active i {
    color: var(--bm-primary);
}


/* =========================================================
   20. SIDEBAR USER
   ========================================================= */

.bm-sidebar-user {
    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 10px;

    padding: 12px;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);
}

.bm-sidebar-user-name {
    color: var(--bm-white);

    font-size: 12px;

    font-weight: 700;
}

.bm-sidebar-user-role {
    color: var(--bm-muted);

    font-size: 10px;
}


/* =========================================================
   21. MAIN CONTENT
   ========================================================= */

.bm-main {
    margin-left: var(--bm-sidebar-width);

    min-height: 100vh;
}


/* =========================================================
   22. NAVBAR
   ========================================================= */

.bm-navbar {
    position: sticky;

    top: 0;

    z-index: 1020;

    height: var(--bm-navbar-height);

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 25px;

    background: rgba(8,10,11,.92);

    border-bottom: 1px solid var(--bm-border);

    backdrop-filter: blur(12px);
}

.bm-navbar-title {
    color: var(--bm-white);

    font-size: 18px;

    font-weight: 700;
}

.bm-navbar-actions {
    display: flex;

    align-items: center;

    gap: 15px;
}


/* =========================================================
   23. SEARCH
   ========================================================= */

.bm-search {
    position: relative;

    width: 250px;
}

.bm-search input {
    width: 100%;

    height: 38px;

    padding: 0 40px 0 14px;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: 30px;

    color: var(--bm-white);

    outline: none;
}

.bm-search input:focus {
    border-color: var(--bm-primary);
}

.bm-search i {
    position: absolute;

    top: 50%;
    right: 14px;

    transform: translateY(-50%);

    color: var(--bm-muted);
}


/* =========================================================
   24. PAGE CONTENT
   ========================================================= */

.bm-content {
    padding: 25px;
}

.bm-page-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}


/* =========================================================
   25. MEMBERSHIP PLANS
   ========================================================= */

.bm-plan {
    position: relative;

    height: 100%;

    padding: 30px 25px;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius-lg);

    text-align: center;

    transition: var(--bm-transition);
}

.bm-plan:hover {
    transform: translateY(-5px);

    border-color: var(--bm-border-primary);

    box-shadow: var(--bm-glow);
}

.bm-plan.featured {
    border-color: var(--bm-primary);

    box-shadow: var(--bm-glow);
}

.bm-plan-ribbon {
    position: absolute;

    top: -12px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 20px;

    background: var(--bm-primary);

    color: var(--bm-black);

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;

    white-space: nowrap;

    clip-path: polygon(
        8% 0,
        92% 0,
        100% 50%,
        92% 100%,
        8% 100%,
        0 50%
    );
}

.bm-plan-name {
    font-family: var(--bm-font-display);

    color: var(--bm-white);

    font-size: 30px;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.bm-plan-duration {
    color: var(--bm-primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.bm-plan-price {
    margin: 15px 0 20px;

    color: var(--bm-white);

    font-size: 38px;

    font-weight: 800;

    line-height: 1;
}

.bm-plan-price small {
    color: var(--bm-muted);

    font-size: 11px;

    font-weight: 500;
}

.bm-plan-divider {
    height: 1px;

    margin: 20px 0;

    background: var(--bm-border);
}

.bm-plan-feature {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 10px;

    color: var(--bm-text-secondary);

    font-size: 12px;

    text-align: left;
}

.bm-plan-feature i {
    color: var(--bm-primary);

    font-size: 11px;
}


/* =========================================================
   26. WEBSITE HEADER
   ========================================================= */

.bm-site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1050;

    height: 72px;

    background: rgba(8,10,11,.75);

    border-bottom: 1px solid rgba(255,255,255,.06);

    backdrop-filter: blur(12px);
}

.bm-site-header .container {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.bm-site-nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.bm-site-nav a {
    position: relative;

    color: var(--bm-text-secondary);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.bm-site-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--bm-primary);

    transition: var(--bm-transition);
}

.bm-site-nav a:hover,
.bm-site-nav a.active {
    color: var(--bm-white);
}

.bm-site-nav a:hover::after,
.bm-site-nav a.active::after {
    width: 100%;
}


/* =========================================================
   27. HERO
   ========================================================= */

.bm-hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(8,10,11,.96) 0%,
            rgba(8,10,11,.78) 40%,
            rgba(8,10,11,.25) 75%,
            rgba(8,10,11,.8) 100%
        ),
        url('../images/gym-hero.jpg')
        center / cover no-repeat;
}

.bm-hero::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: 80px;

    width: 300px;
    height: 10px;

    background: var(--bm-primary);

    transform: rotate(-38deg);

    opacity: .9;
}

.bm-hero-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.bm-hero-title {
    margin: 0;

    font-family: var(--bm-font-display);

    font-size: clamp(80px, 11vw, 170px);

    line-height: .78;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--bm-white);
}

.bm-hero-title span {
    display: block;

    color: var(--bm-primary);
}

.bm-hero-subtitle {
    max-width: 500px;

    margin: 30px 0;

    color: var(--bm-text-secondary);

    font-size: 15px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   28. SECTION
   ========================================================= */

.bm-section {
    padding: 100px 0;

    background: var(--bm-bg);
}

.bm-section-dark {
    background: var(--bm-bg-secondary);
}


/* =========================================================
   29. SECTION DIVIDER
   ========================================================= */

.bm-divider {
    width: 45px;

    height: 3px;

    margin: 15px 0 25px;

    background: var(--bm-primary);

    transform: skewX(-25deg);
}


/* =========================================================
   30. FEATURE BOX
   ========================================================= */

.bm-feature {
    padding: 25px;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);

    transition: var(--bm-transition);
}

.bm-feature:hover {
    border-color: var(--bm-border-primary);

    transform: translateY(-3px);
}

.bm-feature-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: rgba(246, 8, 15, .10);

    color: var(--bm-primary);

    border-radius: var(--bm-radius);

    font-size: 20px;
}

.bm-feature h3 {
    margin-bottom: 8px;

    color: var(--bm-white);

    font-size: 16px;

    font-weight: 800;
}

.bm-feature p {
    margin: 0;

    color: var(--bm-muted);

    font-size: 13px;
}


/* =========================================================
   31. TRAINER CARD
   ========================================================= */

.bm-trainer {
    position: relative;

    overflow: hidden;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);

    transition: var(--bm-transition);
}

.bm-trainer:hover {
    border-color: var(--bm-primary);

    transform: translateY(-4px);
}

.bm-trainer-image {
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--bm-bg-secondary);
}

.bm-trainer-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.bm-trainer:hover .bm-trainer-image img {
    transform: scale(1.04);
}

.bm-trainer-info {
    padding: 18px;
}

.bm-trainer-name {
    margin: 0;

    color: var(--bm-white);

    font-size: 16px;

    font-weight: 800;
}

.bm-trainer-role {
    color: var(--bm-primary);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;
}


/* =========================================================
   32. GALLERY
   ========================================================= */

.bm-gallery-item {
    position: relative;

    overflow: hidden;

    aspect-ratio: 1 / 1;

    background: var(--bm-surface);
}

.bm-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.bm-gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent 50%,
            rgba(246, 8, 15, .15)
        );

    opacity: 0;

    transition: var(--bm-transition);
}

.bm-gallery-item:hover img {
    transform: scale(1.06);
}

.bm-gallery-item:hover::after {
    opacity: 1;
}


/* =========================================================
   33. TESTIMONIAL
   ========================================================= */

.bm-testimonial {
    padding: 30px;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);

    position: relative;
}

.bm-testimonial::before {
    content: "“";

    position: absolute;

    top: 5px;
    right: 20px;

    font-family: Georgia, serif;

    font-size: 80px;

    color: rgba(246, 8, 15, .15);

    line-height: 1;
}

.bm-testimonial p {
    color: var(--bm-text-secondary);

    font-size: 14px;

    line-height: 1.8;
}

.bm-testimonial-author {
    color: var(--bm-white);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;
}


/* =========================================================
   34. ALERTS
   ========================================================= */

.bm-alert {
    padding: 12px 15px;

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);

    background: var(--bm-surface);

    color: var(--bm-text);

    font-size: 13px;
}

.bm-alert-success {
    border-color: rgba(34,197,94,.3);

    background: rgba(34,197,94,.06);

    color: var(--bm-success);
}

.bm-alert-warning {
    border-color: rgba(245,158,11,.3);

    background: rgba(245,158,11,.06);

    color: var(--bm-warning);
}

.bm-alert-danger {
    border-color: rgba(239,68,68,.3);

    background: rgba(239,68,68,.06);

    color: var(--bm-danger);
}


/* =========================================================
   35. MODAL
   ========================================================= */

.modal-content {
    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius-lg);

    color: var(--bm-text);

    box-shadow: var(--bm-shadow-lg);
}

.modal-header {
    border-bottom-color: var(--bm-border);
}

.modal-footer {
    border-top-color: var(--bm-border);
}

.modal-title {
    color: var(--bm-white);

    font-size: 17px;

    font-weight: 800;
}

.btn-close {
    filter: invert(1);

    opacity: .6;
}

.btn-close:hover {
    opacity: 1;
}


/* =========================================================
   36. DROPDOWN
   ========================================================= */

.dropdown-menu {
    padding: 6px;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);

    box-shadow: var(--bm-shadow);

    color: var(--bm-text);
}

.dropdown-item {
    padding: 8px 11px;

    border-radius: var(--bm-radius-sm);

    color: var(--bm-text-secondary);

    font-size: 12px;
}

.dropdown-item:hover {
    background: rgba(246, 8, 15, .08);

    color: var(--bm-primary);
}


/* =========================================================
   37. PAGINATION
   ========================================================= */

.pagination .page-link {
    background: var(--bm-surface);

    border-color: var(--bm-border);

    color: var(--bm-text-secondary);

    font-size: 12px;
}

.pagination .page-link:hover {
    background: var(--bm-surface-hover);

    color: var(--bm-primary);

    border-color: var(--bm-border-primary);
}

.pagination .active .page-link {
    background: var(--bm-primary);

    border-color: var(--bm-primary);

    color: var(--bm-black);

    font-weight: 800;
}


/* =========================================================
   38. PROGRESS
   ========================================================= */

.progress {
    height: 6px;

    background: var(--bm-bg-secondary);

    border-radius: 20px;
}

.progress-bar-beast {
    background: var(--bm-primary);

    border-radius: 20px;
}


/* =========================================================
   39. CHART CONTAINER
   ========================================================= */

.bm-chart {
    min-height: 300px;

    padding: 20px;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);
}


/* =========================================================
   40. DASHBOARD QUICK ACTION
   ========================================================= */

.bm-quick-action {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px;

    background: var(--bm-bg-secondary);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius);

    color: var(--bm-text);

    transition: var(--bm-transition);
}

.bm-quick-action:hover {
    border-color: var(--bm-primary);

    color: var(--bm-primary);

    transform: translateY(-2px);
}

.bm-quick-action i {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(246, 8, 15, .10);

    color: var(--bm-primary);

    border-radius: var(--bm-radius);
}


/* =========================================================
   41. DATE / TIME
   ========================================================= */

.bm-date {
    color: var(--bm-muted);

    font-size: 11px;
}

.bm-time {
    color: var(--bm-white);

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   42. PRICE
   ========================================================= */

.bm-price {
    color: var(--bm-white);

    font-size: 30px;

    font-weight: 900;
}

.bm-price-currency {
    color: var(--bm-primary);

    font-size: .65em;

    vertical-align: top;
}


/* =========================================================
   43. GYM CTA
   ========================================================= */

.bm-cta {
    position: relative;

    padding: 70px 40px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(8,10,11,.95),
            rgba(8,10,11,.70)
        ),
        url('../images/gym-cta.jpg')
        center / cover;

    border: 1px solid var(--bm-border);
}

.bm-cta::before {
    content: "";

    position: absolute;

    right: -120px;
    top: -80px;

    width: 300px;
    height: 300px;

    border: 3px solid rgba(246, 8, 15, .2);

    transform: rotate(25deg);
}

.bm-cta-content {
    position: relative;

    z-index: 2;
}


/* =========================================================
   44. FOOTER
   ========================================================= */

.bm-footer {
    padding: 60px 0 25px;

    background: #050607;

    border-top: 1px solid var(--bm-border);
}

.bm-footer-title {
    color: var(--bm-white);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 15px;
}

.bm-footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.bm-footer-links li {
    margin-bottom: 7px;
}

.bm-footer-links a {
    color: var(--bm-muted);

    font-size: 12px;
}

.bm-footer-links a:hover {
    color: var(--bm-primary);
}

.bm-footer-bottom {
    margin-top: 40px;

    padding-top: 20px;

    border-top: 1px solid var(--bm-border);

    color: var(--bm-muted-dark);

    font-size: 11px;
}


/* =========================================================
   45. ICON BUTTON
   ========================================================= */

.bm-icon-btn {
    width: 38px;
    height: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius-sm);

    color: var(--bm-muted);

    transition: var(--bm-transition);
}

.bm-icon-btn:hover {
    color: var(--bm-primary);

    border-color: var(--bm-primary);

    background: rgba(246, 8, 15, .06);
}


/* =========================================================
   46. DATA TABLES
   ========================================================= */

.dataTables_wrapper {
    color: var(--bm-text);
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: var(--bm-muted) !important;

    font-size: 12px;
}

.dataTables_wrapper select,
.dataTables_wrapper input {
    background: var(--bm-bg-secondary) !important;

    border: 1px solid var(--bm-border) !important;

    color: var(--bm-white) !important;

    border-radius: var(--bm-radius-sm);

    padding: 5px 9px;
}

.dataTables_wrapper .paginate_button {
    color: var(--bm-text) !important;
}

.dataTables_wrapper .paginate_button:hover {
    background: var(--bm-primary) !important;

    border-color: var(--bm-primary) !important;

    color: var(--bm-black) !important;
}

.dataTables_wrapper .paginate_button.current {
    background: var(--bm-primary) !important;

    border-color: var(--bm-primary) !important;

    color: var(--bm-black) !important;
}


/* =========================================================
   47. ADMINLTE 4 OVERRIDES
   ========================================================= */

.app-wrapper,
.app-main,
.app-content {
    background: var(--bm-bg) !important;
}

.app-sidebar {
    background: var(--bm-bg-secondary) !important;

    border-right: 1px solid var(--bm-border) !important;
}

.app-header {
    background: rgba(8,10,11,.92) !important;

    border-bottom: 1px solid var(--bm-border) !important;
}

.app-sidebar .nav-link {
    color: var(--bm-text-secondary);
}

.app-sidebar .nav-link:hover {
    color: var(--bm-white);

    background: rgba(255,255,255,.035);
}

.app-sidebar .nav-link.active {
    color: var(--bm-primary) !important;

    background: rgba(246, 8, 15, .10) !important;
}

.card {
    background: var(--bm-surface);

    border: 1px solid var(--bm-border);

    color: var(--bm-text);

    box-shadow: var(--bm-shadow-sm);
}

.card-header {
    background: rgba(255,255,255,.01);

    border-bottom: 1px solid var(--bm-border);

    color: var(--bm-white);
}

.card-footer {
    background: transparent;

    border-top: 1px solid var(--bm-border);
}

.content-header h1 {
    color: var(--bm-white);

    font-weight: 700;
}


/* =========================================================
   48. ADMINLTE BUTTON OVERRIDES
   ========================================================= */

.btn-primary {
    background: var(--bm-primary) !important;

    border-color: var(--bm-primary) !important;

    color: var(--bm-black) !important;

    font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--bm-primary-hover) !important;

    border-color: var(--bm-primary-hover) !important;

    color: var(--bm-black) !important;
}

.btn-outline-primary {
    color: var(--bm-primary) !important;

    border-color: var(--bm-primary) !important;

    background: transparent !important;
}

.btn-outline-primary:hover {
    background: var(--bm-primary) !important;

    color: var(--bm-black) !important;
}


/* =========================================================
   49. ADMINLTE BREADCRUMB
   ========================================================= */

.breadcrumb {
    margin: 0;

    font-size: 11px;
}

.breadcrumb-item {
    color: var(--bm-muted);
}

.breadcrumb-item.active {
    color: var(--bm-primary);
}


/* =========================================================
   50. NOTIFICATION DOT
   ========================================================= */

.bm-notification {
    position: relative;
}

.bm-notification::after {
    content: "";

    position: absolute;

    top: 5px;
    right: 5px;

    width: 6px;
    height: 6px;

    background: var(--bm-danger);

    border: 1px solid var(--bm-bg);

    border-radius: 50%;
}


/* =========================================================
   51. LOGIN PAGE
   ========================================================= */

.bm-login-page {
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        linear-gradient(
            rgba(8,10,11,.90),
            rgba(8,10,11,.97)
        ),
        url('../images/gym-login.jpg')
        center / cover no-repeat;
}

.bm-login-card {
    width: 100%;

    max-width: 420px;

    padding: 35px;

    background: rgba(16,19,21,.96);

    border: 1px solid var(--bm-border);

    border-radius: var(--bm-radius-lg);

    box-shadow: var(--bm-shadow-lg);
}

.bm-login-logo {
    text-align: center;

    margin-bottom: 30px;
}


/* =========================================================
   52. EMPTY STATE
   ========================================================= */

.bm-empty {
    padding: 60px 20px;

    text-align: center;

    color: var(--bm-muted);
}

.bm-empty i {
    display: block;

    margin-bottom: 15px;

    color: var(--bm-muted-dark);

    font-size: 40px;
}

.bm-empty h4 {
    color: var(--bm-white);

    font-size: 16px;

    font-weight: 700;
}


/* =========================================================
   53. LOADING
   ========================================================= */

.bm-spinner {
    width: 22px;
    height: 22px;

    border: 2px solid rgba(246, 8, 15, .2);

    border-top-color: var(--bm-primary);

    border-radius: 50%;

    animation: bm-spin .7s linear infinite;
}

@keyframes bm-spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   54. GLOW TEXT
   ========================================================= */

.bm-glow-text {
    color: var(--bm-primary);

    text-shadow:
        0 0 20px rgba(246, 8, 15, .25);
}


/* =========================================================
   55. DIAGONAL BEAST ACCENT
   ========================================================= */

.bm-slash {
    position: relative;

    display: inline-block;
}

.bm-slash::after {
    content: "";

    position: absolute;

    right: -18px;
    bottom: -5px;

    width: 35px;
    height: 4px;

    background: var(--bm-primary);

    transform: skewX(-25deg);
}


/* =========================================================
   56. MOBILE MENU
   ========================================================= */

.bm-mobile-toggle {
    display: none;

    width: 40px;
    height: 40px;

    align-items: center;
    justify-content: center;

    background: transparent;

    border: 1px solid var(--bm-border);

    color: var(--bm-white);

    border-radius: var(--bm-radius-sm);
}


/* =========================================================
   57. RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    :root {
        --bm-sidebar-width: 220px;
    }

    .bm-site-nav {
        gap: 18px;
    }

    .bm-search {
        width: 200px;
    }

    .bm-hero-title {
        font-size: 110px;
    }
}


@media (max-width: 991px) {

    .bm-sidebar {
        transform: translateX(-100%);

        transition: transform .25s ease;
    }

    .bm-sidebar.show {
        transform: translateX(0);
    }

    .bm-main {
        margin-left: 0;
    }

    .bm-mobile-toggle {
        display: inline-flex;
    }

    .bm-site-nav {
        display: none;
    }

    .bm-hero-title {
        font-size: 95px;
    }

    .bm-search {
        display: none;
    }

    .bm-content {
        padding: 20px;
    }
}


@media (max-width: 767px) {

    .bm-navbar {
        padding: 0 15px;
    }

    .bm-content {
        padding: 15px;
    }

    .bm-page-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .bm-title {
        font-size: 25px;
    }

    .bm-hero {
        min-height: 750px;

        background-position: center;
    }

    .bm-hero-title {
        font-size: 75px;
    }

    .bm-hero-subtitle {
        font-size: 12px;
    }

    .bm-section {
        padding: 65px 0;
    }

    .bm-section-title {
        font-size: 35px;
    }

    .bm-site-header {
        height: 64px;
    }

    .bm-cta {
        padding: 50px 25px;
    }

}


@media (max-width: 575px) {

    .bm-hero-title {
        font-size: 62px;
    }

    .bm-stat {
        min-height: 90px;

        padding: 15px;
    }

    .bm-stat-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

    .bm-stat-value {
        font-size: 21px;
    }

    .bm-card-body {
        padding: 15px;
    }

    .bm-plan {
        padding: 25px 20px;
    }

}


/* =========================================================
   58. UTILITY CLASSES
   ========================================================= */

.text-beast {
    color: var(--bm-primary) !important;
}

.text-beast-white {
    color: var(--bm-white) !important;
}

.text-beast-muted {
    color: var(--bm-muted) !important;
}

.bg-beast {
    background: var(--bm-primary) !important;

    color: var(--bm-black) !important;
}

.bg-beast-dark {
    background: var(--bm-bg) !important;
}

.bg-beast-surface {
    background: var(--bm-surface) !important;
}

.border-beast {
    border-color: var(--bm-primary) !important;
}

.shadow-beast {
    box-shadow: var(--bm-shadow);
}

.glow-beast {
    box-shadow: var(--bm-glow);
}


/* =========================================================
   59. BODY ADMIN MODE
   ========================================================= */

body.bm-admin {
    background: var(--bm-bg);
}

body.bm-admin .container-fluid {
    max-width: 100%;
}


/* =========================================================
   60. PRINT
   ========================================================= */

@media print {

    body {
        background: #fff !important;

        color: #000 !important;
    }

    .bm-sidebar,
    .bm-navbar,
    .no-print {
        display: none !important;
    }

    .bm-main {
        margin-left: 0 !important;
    }

    .bm-card {
        background: #fff !important;

        border: 1px solid #ddd !important;

        color: #000 !important;

        box-shadow: none !important;
    }

}