/* ---------- Page ---------- */

body {
    background: #eef2f7;
    font-family: Inter, sans-serif;
}

/* ---------- Cards ---------- */

.gym-card {

    border: none;
    border-radius: 20px;
    overflow: hidden;

    background: #111827;

    color: #fff;

    transition: .35s;

    cursor: pointer;

}

.gym-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);

}

.gym-card .card-body {

    padding: 28px;

}

.gym-card h5 {

    font-weight: 700;

    color: #fff;

}

.gym-card hr {

    border-color: rgba(255, 255, 255, .12);

}

.gym-card small {

    color: #cbd5e1 !important;

}

.gym-card .text-muted {

    color: #cbd5e1 !important;

}

.gym-card .text-primary {

    color: #60a5fa !important;

}

.gym-card .badge {

    background: #2563eb !important;

    border-radius: 40px;

    padding: 8px 16px;

}

.gym-card .btn {

    margin-top: 18px;

}

/* ---------- Buttons ---------- */

.btn-primary {

    background: #2563eb;

    border: none;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;

}

.btn-primary:hover {

    background: #1d4ed8;

}

.btn-success {

    background: #10b981;

    border: none;

    border-radius: 12px;

    font-weight: 600;

}

.btn-success:hover {

    background: #059669;

}

/* ---------- Modal ---------- */

.modal-content {

    border: none;

    border-radius: 24px;

    overflow: hidden;

}

.modal-header {

    background: #111827;

    color: #fff;

    border: none;

    padding: 20px 30px;

}

.modal-title {

    font-weight: 700;

}

.modal-body {

    padding: 35px;

}

/* ---------- Left Info Panel ---------- */

.info-box {

    background: #111827;

    color: #fff;

    border-radius: 18px;

    padding: 30px;

    height: 100%;

}

.info-box p {

    margin-bottom: 18px;

}

.info-box strong {

    color: #60a5fa;

}

.price-box {

    font-size: 34px;

    font-weight: 700;

    color: #38bdf8;

}

/* ---------- Form ---------- */

.form-label {

    font-weight: 600;

    color: #374151;

}

.form-control {

    border-radius: 12px;

    border: 1px solid #d1d5db;

    min-height: 48px;

    box-shadow: none;

}

.form-control:focus {

    border-color: #2563eb;

    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);

}

textarea.form-control {

    min-height: 130px;

}

.form-check-label {

    margin-left: 8px;

    font-weight: 600;

}

/* ---------- Loading ---------- */

.spinner-border {

    width: 3rem;

    height: 3rem;

}

/* ---------- Responsive ---------- */

@media(max-width:768px) {

    .modal-body {

        padding: 20px;

    }

    .info-box {

        margin-bottom: 20px;

    }

}


.gym-info-card {

    background: #111827;

    border-radius: 18px;

    padding: 30px;

    color: #fff;

}

.gym-badge {

    display: inline-block;

    background: #2563eb;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

}

.price-card {

    text-align: right;

}

.price-card small {

    display: block;

    color: #cbd5e1;

}

.price-card h2 {

    font-size: 38px;

    font-weight: 700;

    margin: 0;

    color: #60a5fa;

}

.info-item {

    background: rgba(255, 255, 255, .06);

    padding: 18px;

    border-radius: 12px;

    height: 100%;

}

.info-item small {

    color: #94a3b8;

    display: block;

    margin-bottom: 8px;

}

.info-item h5 {

    margin: 0;

    font-weight: 700;

}

.info-item p {

    color: #e2e8f0;

    line-height: 1.7;

}

.form-label {

    font-weight: 600;

    margin-bottom: 8px;

}

.form-control {

    height: 52px;

    border-radius: 12px;

}

textarea.form-control {

    height: auto;

}

.btn-dark {

    background: #111827;

    border: none;

    border-radius: 12px;

    font-size: 17px;

    font-weight: 600;

    transition: .3s;

}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}

.form-check-label {
    font-weight: 600;
}