* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #0b1120;
    color: #ffffff;
}

/* =========================
   LOGIN PAGE DESIGN
========================= */

.login-page {
    min-height: 100vh;
    background:
        linear-gradient(rgba(11, 17, 32, 0.88), rgba(11, 17, 32, 0.92)),
        radial-gradient(circle at top left, #ef4444 0%, transparent 30%),
        radial-gradient(circle at bottom right, #06b6d4 0%, transparent 25%),
        #0b1120;
}

.login-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

/* LEFT SIDE */

.login-left {
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(127, 29, 29, 0.45));
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.login-left::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 2px solid rgba(6, 182, 212, 0.18);
    border-radius: 50%;
    bottom: -80px;
    left: -60px;
}

.brand-box,
.hero-text,
.feature-list {
    position: relative;
    z-index: 2;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-mark {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ef4444, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.35);
}

.brand-box h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-box p {
    color: #cbd5e1;
    font-size: 14px;
    margin-top: 4px;
}

.hero-text {
    max-width: 680px;
}

.hero-text h2 {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

.hero-text p {
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
}

.feature-list {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.feature-item {
    padding: 12px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 600;
}

/* RIGHT SIDE */

.login-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
}

.login-card {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    color: #111827;
    padding: 38px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.mobile-brand {
    display: none;
    text-align: center;
    margin-bottom: 25px;
}

.mobile-brand .logo-mark {
    margin: 0 auto 12px;
}

.mobile-brand h1 {
    font-size: 25px;
    color: #111827;
}

.login-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111827;
}

.login-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input {
    width: 100%;
    height: 50px;
    border: 1px solid #d1d5db;
    outline: none;
    border-radius: 14px;
    padding: 0 15px;
    font-size: 14px;
    transition: 0.2s ease;
}

.form-group input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.login-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 12px 25px rgba(220, 38, 38, 0.35);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(220, 38, 38, 0.45);
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 18px;
}

.default-account {
    margin-top: 24px;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    padding: 15px;
    border-radius: 14px;
}

.default-account p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #111827;
}

.default-account span {
    display: block;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }

    .login-left {
        display: none;
    }

    .login-right {
        min-height: 100vh;
    }

    .mobile-brand {
        display: block;
    }
}

@media (max-width: 500px) {
    .login-right {
        padding: 20px;
    }

    .login-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .login-card h2 {
        font-size: 27px;
    }
}
/* =========================
   ADMIN DASHBOARD DESIGN
========================= */

.dashboard-body {
    background: #f3f4f6;
    color: #111827;
    font-family: 'Montserrat', Arial, sans-serif;
}

.dashboard-layout {
    min-height: 100vh;
    display: flex;
}

/* Sidebar */

.sidebar {
    width: 280px;
    background: #0b1120;
    color: #ffffff;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 35px;
}

.sidebar-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ef4444, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.35);
}

.sidebar-brand h2 {
    font-size: 19px;
    line-height: 1.2;
    margin: 0;
}

.sidebar-brand p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #94a3b8;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.logout-btn {
    margin-top: auto;
    text-decoration: none;
    color: white;
    background: #7f1d1d;
    padding: 13px 15px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    transition: 0.2s ease;
}

.logout-btn:hover {
    background: #991b1b;
}

/* Main Dashboard */

.dashboard-main {
    flex: 1;
    padding: 28px;
}

.dashboard-header {
    background: #ffffff;
    padding: 24px;
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    margin-bottom: 24px;
}

.dashboard-header h1 {
    font-size: 30px;
    margin-bottom: 6px;
    color: #111827;
}

.dashboard-header p {
    color: #6b7280;
    font-size: 14px;
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111827, #ef4444);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.admin-profile strong {
    display: block;
    font-size: 14px;
}

.admin-profile span {
    font-size: 12px;
    color: #6b7280;
}

/* Stats Cards */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.stat-card {
    background: white;
    padding: 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
}

.stat-icon.red {
    background: #dc2626;
}

.stat-icon.blue {
    background: #1d4ed8;
}

.stat-icon.aqua {
    background: #0891b2;
}

.stat-icon.dark {
    background: #111827;
}

.stat-card p {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-card h2 {
    color: #111827;
    font-size: 28px;
}

/* Content Boxes */

.dashboard-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 20px;
}

.dashboard-box {
    background: white;
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.dashboard-box h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #111827;
}

.dashboard-box p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 18px;
}

.quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.quick-actions button {
    border: none;
    background: #e5e7eb;
    color: #6b7280;
    padding: 11px 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: not-allowed;
}

.dashboard-box small {
    color: #9ca3af;
}

.module-list {
    list-style: none;
}

.module-list li {
    padding: 13px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
}

.module-list li:last-child {
    border-bottom: none;
}

/* Responsive Dashboard */

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .dashboard-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .logout-btn {
        margin-top: 20px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .dashboard-main {
        padding: 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header h1 {
        font-size: 25px;
    }
}
/* =========================
   MANAGEMENT PAGES
========================= */

.management-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 22px;
    align-items: start;
}

.admin-form {
    margin-top: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    outline: none;
    border-radius: 13px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #ffffff;
    color: #111827;
    transition: 0.2s ease;
}

.form-field textarea {
    min-height: 88px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.form-field input:disabled {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.primary-btn,
.secondary-btn {
    border: none;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 13px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
}

.primary-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.25);
}

.primary-btn:hover {
    transform: translateY(-1px);
}

.secondary-btn {
    background: #e5e7eb;
    color: #374151;
}

.success-message,
.error-message {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
}

.success-message {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Table */

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.data-table th {
    background: #f9fafb;
    color: #374151;
    text-align: left;
    padding: 14px;
    font-size: 13px;
    border-bottom: 1px solid #e5e7eb;
}

.data-table td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    font-size: 13px;
    vertical-align: middle;
}

.data-table tr:hover {
    background: #f9fafb;
}

.status-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.status-badge.expired {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.inactive {
    background: #e5e7eb;
    color: #374151;
}

.table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.edit-btn,
.delete-btn {
    text-decoration: none;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
}

.edit-btn {
    background: #dbeafe;
    color: #1d4ed8;
}

.delete-btn {
    background: #fee2e2;
    color: #991b1b;
}

.empty-table {
    text-align: center;
    color: #9ca3af;
    padding: 25px;
}

/* Responsive Management */

@media (max-width: 1200px) {
    .management-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* =========================
   WORKOUT PLAN DESIGN
========================= */

.section-subtitle {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #111827;
    font-size: 18px;
}

.exercise-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 16px;
    border-radius: 18px;
    margin-bottom: 16px;
}

.exercise-box strong {
    display: block;
    margin-bottom: 12px;
    color: #dc2626;
    font-size: 14px;
}
/* =========================
   PROGRESS / BMI DESIGN
========================= */

.bmi-badge {
    display: inline-block;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.bmi-badge.underweight {
    background: #dbeafe;
    color: #1d4ed8;
}

.bmi-badge.normal {
    background: #dcfce7;
    color: #166534;
}

.bmi-badge.overweight {
    background: #fef3c7;
    color: #92400e;
}

.bmi-badge.obese {
    background: #fee2e2;
    color: #991b1b;
}

.bmi-badge.invalid {
    background: #e5e7eb;
    color: #374151;
}
/* =========================
   REPORTS DESIGN
========================= */

.report-filter-form {
    display: flex;
    align-items: end;
    gap: 15px;
    flex-wrap: wrap;
}

.report-filter-form .form-field {
    min-width: 220px;
    margin-bottom: 0;
}

.mini-report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.mini-report-table td {
    padding: 13px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: #374151;
}

.mini-report-table td:last-child {
    text-align: right;
    font-weight: 800;
    color: #111827;
}

.print-header {
    display: none;
    text-align: center;
    margin-bottom: 25px;
}

.print-header h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.print-header p {
    color: #4b5563;
    font-size: 14px;
}

@media print {
    body {
        background: #ffffff;
        color: #000000;
    }

    .no-print,
    .sidebar,
    .dashboard-header {
        display: none !important;
    }

    .dashboard-layout {
        display: block;
    }

    .dashboard-main {
        padding: 0;
    }

    .print-header {
        display: block;
    }

    .dashboard-box,
    .stat-card {
        box-shadow: none;
        border: 1px solid #d1d5db;
        page-break-inside: avoid;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .dashboard-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .data-table th,
    .data-table td {
        font-size: 11px;
        padding: 8px;
    }
}
/* =========================
   IMPROVED DASHBOARD
========================= */

.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.quick-action-card {
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    padding: 20px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.quick-action-card:hover {
    transform: translateY(-3px);
    border-color: #fecaca;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.12);
}

.quick-action-card span {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
}

.quick-action-card h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #111827;
}

.quick-action-card p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.dashboard-lower-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 22px;
    margin-bottom: 24px;
}

.box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.box-header h3 {
    margin: 0;
}

.box-header a {
    text-decoration: none;
    color: #dc2626;
    font-size: 13px;
    font-weight: 800;
}

.compact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compact-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f9fafb;
}

.compact-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111827, #ef4444);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.compact-item strong {
    display: block;
    color: #111827;
    font-size: 14px;
    margin-bottom: 4px;
}

.compact-item span {
    display: block;
    color: #6b7280;
    font-size: 12px;
}

.empty-note {
    color: #9ca3af;
    font-size: 14px;
    padding: 14px 0;
}

.today-box {
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .quick-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-lower-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .quick-action-grid {
        grid-template-columns: 1fr;
    }

    .quick-action-card {
        align-items: flex-start;
    }
}
/* =========================
   SEARCH AND PAGINATION
========================= */

.filter-form {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 18px;
    padding: 15px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

.filter-form .form-field {
    margin-bottom: 0;
}

.filter-form .form-actions {
    margin-top: 0;
}

.pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.pagination a {
    text-decoration: none;
    padding: 9px 13px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #374151;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid #e5e7eb;
}

.pagination a:hover,
.pagination a.active {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
}

.box-header small {
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .filter-form {
        grid-template-columns: 1fr;
    }
}
.payments-filter-form {
    grid-template-columns: 1.2fr 0.7fr 0.8fr 0.8fr auto;
}

@media (max-width: 1200px) {
    .payments-filter-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .payments-filter-form {
        grid-template-columns: 1fr;
    }
}
/* =========================
   RECEIPT BUTTON
========================= */

.receipt-btn {
    text-decoration: none;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    background: #dcfce7;
    color: #166534;
}
/* =========================
   CHANGE PASSWORD PAGE
========================= */

.password-box {
    max-width: 560px;
}
/* =========================
   LOGIN LOGO DESIGN
========================= */

.login-logo-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    padding: 18px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.login-logo-panel img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.login-card-logo {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 24px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
}

.login-card-logo img {
    width: 100%;
    display: block;
}

.login-card h2 {
    text-align: center;
}

.login-subtitle {
    text-align: center;
}

/* Hide old mobile brand if it still exists from previous design */
.mobile-brand {
    display: none !important;
}/* =========================================
   LOGIN PAGE - FIT IN ONE LAPTOP SCREEN
========================================= */

* {
    box-sizing: border-box;
}

.login-page {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #08142c, #0f274a, #123561);
    min-height: 100vh;
    overflow: hidden;
}

.login-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 24px;
    padding: 24px 40px;
}

.login-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    color: #ffffff;
    text-align: center;
    height: 100%;
}

.login-logo-panel {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    padding: 14px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
}

.login-logo-panel img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

.hero-text {
    max-width: 520px;
}

.hero-text h2 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.hero-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #dbeafe;
}

.login-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.login-card h2 {
    margin: 0 0 8px;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.login-subtitle {
    text-align: center;
    margin: 0 0 22px;
    color: #64748b;
    font-size: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.form-group input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    outline: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.form-group input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.login-btn {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(90deg, #ef4444, #0ea5e9);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 4px;
}

.login-btn:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
}

.default-account {
    margin-top: 18px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-align: center;
}

.default-account p {
    margin: 0 0 8px;
    color: #0f172a;
}

.default-account span {
    display: block;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .login-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
        overflow-y: auto;
    }

    .login-page {
        overflow: auto;
    }

    .login-left {
        padding-top: 10px;
    }

    .login-logo-panel {
        max-width: 380px;
    }

    .login-logo-panel img {
        max-height: 280px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .login-card {
        max-width: 460px;
    }
}
/* =========================================
   REFERENCE LOGIN STYLE - AQUA BLUE VERSION
========================================= */

.ref-login-page {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #dff9ff 0%, #9cefff 35%, #35c9ee 70%, #12a8df 100%);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.ref-login-wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 18px 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.ref-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ref-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ref-brand img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    background: #ffffff;
    padding: 2px;
    box-shadow: 0 6px 18px rgba(0, 79, 110, 0.18);
}

.ref-brand span {
    color: #053b5b;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ref-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ref-menu-icon span {
    width: 32px;
    height: 4px;
    background: #053b5b;
    border-radius: 20px;
    display: block;
}

.ref-login-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
    min-height: 0;
}

.ref-left-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.ref-hero-image {
    width: 100%;
    max-width: 650px;
    height: calc(100vh - 110px);
    max-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 35px rgba(4, 74, 108, 0.20));
}

.ref-right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-form-box {
    width: 100%;
    max-width: 420px;
    color: #053b5b;
    background: rgba(255, 255, 255, 0.78);
    padding: 34px 30px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(5, 59, 91, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
}

.ref-form-box h1 {
    margin: 0;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    color: #053b5b;
}

.ref-form-box h2 {
    margin: 6px 0 18px 0;
    font-size: 31px;
    font-weight: 600;
    color: #0ea5e9;
}

.ref-form-box p {
    margin: 0 0 28px 0;
    color: #335d73;
    font-size: 15px;
    line-height: 1.6;
    max-width: 360px;
}

.ref-alert-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
}

.ref-input-group {
    width: 100%;
    display: flex;
    align-items: center;
    background: #f8fdff;
    border: 2px solid #7dd3fc;
    border-radius: 40px;
    padding: 0 18px;
    margin-bottom: 18px;
    min-height: 58px;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.10);
}

.ref-input-icon {
    color: #06b6d4;
    font-size: 20px;
    margin-right: 12px;
    min-width: 22px;
    text-align: center;
}

.ref-input-group input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #053b5b;
    font-size: 16px;
    font-weight: 600;
    padding: 17px 0;
    font-family: 'Montserrat', sans-serif;
}

.ref-input-group input::placeholder {
    color: #5b8096;
    opacity: 1;
}

.ref-login-btn {
    width: 100%;
    border: none;
    background: linear-gradient(90deg, #06b6d4, #38bdf8, #0ea5e9);
    color: #ffffff;
    border-radius: 40px;
    min-height: 58px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 15px 28px rgba(14, 165, 233, 0.32);
}

.ref-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(14, 165, 233, 0.40);
}

.ref-login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 13px;
    color: #335d73;
}

.ref-default-admin {
    margin-top: 18px;
    color: #053b5b;
    font-size: 13px;
    line-height: 1.6;
    padding: 14px 16px;
    background: rgba(224, 250, 255, 0.88);
    border-radius: 14px;
    border: 1px solid rgba(14, 165, 233, 0.22);
}

@media (max-width: 1200px) {
    .ref-login-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .ref-form-box h1 {
        font-size: 38px;
    }

    .ref-form-box h2 {
        font-size: 27px;
    }

    .ref-hero-image {
        height: calc(100vh - 130px);
    }
}

@media (max-width: 900px) {
    .ref-login-page {
        overflow: auto;
    }

    .ref-login-wrapper {
        padding: 18px;
    }

    .ref-login-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ref-left-panel {
        order: 1;
    }

    .ref-right-panel {
        order: 2;
    }

    .ref-hero-image {
        max-width: 420px;
        height: auto;
    }

    .ref-hero-image img {
        height: auto;
        max-height: 420px;
    }

    .ref-form-box {
        max-width: 100%;
    }

    .ref-form-box h1 {
        font-size: 32px;
    }

    .ref-form-box h2 {
        font-size: 24px;
    }
}
/* =========================================
   GLOBAL AQUA BLUE DASHBOARD THEME
   Applies to Admin, Member, and Trainer Panels
========================================= */

:root {
    --aqua-primary: #06b6d4;
    --aqua-secondary: #38bdf8;
    --aqua-dark: #075985;
    --aqua-deep: #053b5b;
    --aqua-light: #e0faff;
    --aqua-soft: #f0fdff;
    --aqua-border: #bae6fd;
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

/* Main dashboard background */

.dashboard-body {
    background: linear-gradient(135deg, #f0fdff 0%, #e0faff 45%, #dff7ff 100%) !important;
    color: var(--text-dark) !important;
}

/* Sidebar */

.sidebar {
    background: linear-gradient(180deg, #053b5b 0%, #075985 55%, #0891b2 100%) !important;
    color: #ffffff !important;
    box-shadow: 8px 0 30px rgba(5, 59, 91, 0.18);
}

.sidebar-brand {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 22px;
}

.sidebar-logo {
    background: #ffffff !important;
    color: var(--aqua-dark) !important;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35) !important;
}

.sidebar-brand h2 {
    color: #ffffff !important;
}

.sidebar-brand p {
    color: #dff7ff !important;
}

.sidebar-menu a {
    color: #e0faff !important;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: linear-gradient(135deg, #06b6d4, #38bdf8) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.30);
}

/* Logout button */

.logout-btn {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.logout-btn:hover {
    background: #06b6d4 !important;
    color: #ffffff !important;
}

/* Main content cards */

.dashboard-header,
.dashboard-box,
.stat-card,
.quick-action-card,
.content-box {
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(186, 230, 253, 0.75) !important;
    box-shadow: 0 12px 28px rgba(7, 89, 133, 0.08) !important;
}

.dashboard-header h1,
.dashboard-box h3,
.content-box h2,
.quick-action-card h3 {
    color: var(--aqua-deep) !important;
}

.dashboard-header p,
.dashboard-box p,
.quick-action-card p {
    color: var(--text-muted) !important;
}

/* Admin/member/trainer profile avatar */

.admin-avatar {
    background: linear-gradient(135deg, #06b6d4, #075985) !important;
    color: #ffffff !important;
}

.admin-profile strong {
    color: var(--aqua-deep) !important;
}

.admin-profile span {
    color: var(--text-muted) !important;
}

/* Statistic icons */

.stat-icon,
.stat-icon.red,
.stat-icon.blue,
.stat-icon.aqua,
.stat-icon.dark {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(6, 182, 212, 0.28);
}

.stat-card p {
    color: var(--text-muted) !important;
}

.stat-card h2 {
    color: var(--aqua-deep) !important;
}

/* Quick action cards */

.quick-action-card {
    border-color: rgba(186, 230, 253, 0.75) !important;
}

.quick-action-card:hover {
    border-color: #38bdf8 !important;
    box-shadow: 0 16px 35px rgba(6, 182, 212, 0.18) !important;
}

.quick-action-card span {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    color: #ffffff !important;
}

/* Buttons */

.primary-btn,
.login-btn {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9, #0284c7) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(6, 182, 212, 0.28) !important;
}

.primary-btn:hover,
.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(6, 182, 212, 0.36) !important;
}

.secondary-btn {
    background: #e0faff !important;
    color: var(--aqua-dark) !important;
    border: 1px solid #bae6fd !important;
}

/* Forms */

.form-field label,
.form-group label {
    color: var(--aqua-deep) !important;
}

.form-field input,
.form-field select,
.form-field textarea,
.form-group input {
    border-color: #bae6fd !important;
    background: #ffffff !important;
    color: var(--aqua-deep) !important;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-group input:focus {
    border-color: #06b6d4 !important;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14) !important;
}

/* Filter/search boxes */

.filter-form,
.report-filter-form {
    background: #f0fdff !important;
    border-color: #bae6fd !important;
}

/* Tables */

.data-table th {
    background: #e0faff !important;
    color: var(--aqua-deep) !important;
    border-bottom: 1px solid #bae6fd !important;
}

.data-table td {
    color: #334155 !important;
    border-bottom: 1px solid #e0f2fe !important;
}

.data-table tr:hover {
    background: #f0fdff !important;
}

/* Mini report tables */

.mini-report-table td {
    border-bottom: 1px solid #e0f2fe !important;
}

.mini-report-table td:last-child {
    color: var(--aqua-deep) !important;
}

/* Status badges */

.status-badge.active {
    background: #cffafe !important;
    color: #0e7490 !important;
}

.status-badge.expired {
    background: #e0f2fe !important;
    color: #0369a1 !important;
}

.status-badge.inactive {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

/* Payment status badges */

.status-badge.paid {
    background: #cffafe !important;
    color: #0e7490 !important;
}

.status-badge.pending {
    background: #fef9c3 !important;
    color: #854d0e !important;
}

/* BMI badges - still color-coded but aqua friendly */

.bmi-badge.underweight {
    background: #dbeafe !important;
    color: #1d4ed8 !important;
}

.bmi-badge.normal {
    background: #cffafe !important;
    color: #0e7490 !important;
}

.bmi-badge.overweight {
    background: #fef9c3 !important;
    color: #854d0e !important;
}

.bmi-badge.obese {
    background: #fee2e2 !important;
    color: #991b1b !important;
}

/* Action buttons */

.edit-btn {
    background: #e0faff !important;
    color: #0284c7 !important;
}

.delete-btn {
    background: #fee2e2 !important;
    color: #991b1b !important;
}

.receipt-btn {
    background: #cffafe !important;
    color: #0e7490 !important;
}

/* Pagination */

.pagination a {
    background: #ffffff !important;
    color: var(--aqua-dark) !important;
    border: 1px solid #bae6fd !important;
}

.pagination a:hover,
.pagination a.active {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    color: #ffffff !important;
    border-color: #06b6d4 !important;
}

/* Section subtitles and exercise boxes */

.section-subtitle {
    color: var(--aqua-deep) !important;
}

.exercise-box {
    background: #f0fdff !important;
    border-color: #bae6fd !important;
}

.exercise-box strong {
    color: #0284c7 !important;
}

/* Success and error messages */

.success-message {
    background: #cffafe !important;
    color: #0e7490 !important;
    border: 1px solid #67e8f9 !important;
}

.error-message {
    background: #fee2e2 !important;
    color: #991b1b !important;
    border: 1px solid #fecaca !important;
}

/* Compact list */

.compact-item {
    background: #f0fdff !important;
    border-color: #bae6fd !important;
}

.compact-avatar {
    background: linear-gradient(135deg, #06b6d4, #075985) !important;
}

.compact-item strong {
    color: var(--aqua-deep) !important;
}

.compact-item span {
    color: var(--text-muted) !important;
}

/* Box header links */

.box-header a {
    color: #0284c7 !important;
}

/* Print mode should stay clean */

@media print {
    .dashboard-body {
        background: #ffffff !important;
    }

    .dashboard-box,
    .stat-card {
        box-shadow: none !important;
        border: 1px solid #d1d5db !important;
    }
}

/* =========================================================
   PUBLIC WEBSITE — THE BALCONY GYM MAIGO
   ========================================================= */

.public-site-body {
    --public-navy: #053b5b;
    --public-navy-deep: #032c45;
    --public-aqua: #06b6d4;
    --public-sky: #38bdf8;
    --public-red: #cf102d;
    --public-ink: #102235;
    --public-muted: #607889;
    --public-soft: #eefbfe;
    --public-border: #cbeaf1;
    margin: 0;
    min-height: 100vh;
    color: var(--public-ink);
    background: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.5;
}

.public-site-body img { max-width: 100%; }
.public-site-body a,
.public-site-body button { font: inherit; }

.public-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.public-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(203, 234, 241, 0.9);
    backdrop-filter: blur(18px);
}

.public-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--public-navy);
    text-decoration: none;
}

.public-brand img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--public-border);
}

.public-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.public-brand strong {
    font-size: 16px;
    font-weight: 900;
}

.public-brand small {
    margin-top: 4px;
    color: var(--public-aqua);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.public-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.public-navigation > a {
    color: #385467;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
}

.public-navigation > a:hover { color: var(--public-aqua); }

.public-navigation .public-nav-login {
    padding: 12px 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--public-navy), #087a9a);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(5, 59, 91, 0.18);
}

.public-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--public-border);
    border-radius: 13px;
    background: #ffffff;
    cursor: pointer;
}

.public-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--public-navy);
}

.public-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 82px;
    background:
        radial-gradient(circle at 8% 15%, rgba(56, 189, 248, 0.25), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(207, 16, 45, 0.14), transparent 24%),
        linear-gradient(135deg, #f7fdff 0%, #eafaff 52%, #d7f4fb 100%);
}

.public-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 72px;
    align-items: center;
}

.public-eyebrow,
.public-section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--public-aqua);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.public-eyebrow::before,
.public-section-label::before {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: var(--public-red);
}

.public-hero h1 {
    margin: 0;
    color: var(--public-navy-deep);
    font-size: clamp(48px, 6.5vw, 82px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.public-hero h1 span { color: var(--public-aqua); }

.public-hero-copy {
    max-width: 680px;
    margin: 28px 0 0;
    color: #4f6979;
    font-size: 17px;
    line-height: 1.85;
}

.public-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.public-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: 0.2s ease;
}

.public-button.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--public-red), #e1334d);
    box-shadow: 0 14px 28px rgba(207, 16, 45, 0.22);
}

.public-button.secondary {
    color: var(--public-navy);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--public-border);
}

.public-button:hover { transform: translateY(-2px); }
.public-button.full { width: 100%; }

.public-location-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 650px;
    margin-top: 30px;
    padding: 17px 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(203, 234, 241, 0.95);
    border-radius: 16px;
}

.public-location-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--public-navy);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 900;
}

.public-location-card strong,
.public-location-card span { display: block; }
.public-location-card strong { color: var(--public-navy); font-size: 13px; }
.public-location-card span { margin-top: 4px; color: var(--public-muted); font-size: 12px; line-height: 1.6; }

.public-hero-visual {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.public-poster-frame {
    width: min(490px, 100%);
    padding: 15px;
    background: #ffffff;
    border: 1px solid var(--public-border);
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(5, 59, 91, 0.18);
    transform: rotate(1.2deg);
}

.public-poster-topline {
    padding: 4px 2px 13px;
    color: var(--public-navy);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.public-poster-frame img { display: block; width: 100%; border-radius: 16px; }

.public-floating-card {
    position: absolute;
    max-width: 230px;
    padding: 14px 16px;
    color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(5, 59, 91, 0.22);
}

.public-floating-card strong,
.public-floating-card span { display: block; }
.public-floating-card strong { font-size: 13px; }
.public-floating-card span { margin-top: 4px; color: rgba(255,255,255,0.8); font-size: 11px; }
.public-floating-card-one { left: -20px; top: 110px; background: var(--public-navy); }
.public-floating-card-two { right: -12px; bottom: 110px; background: var(--public-red); }

.public-trust-strip { padding: 22px 0; background: var(--public-navy-deep); }
.public-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.public-trust-item { padding: 8px 24px; border-right: 1px solid rgba(255,255,255,0.14); }
.public-trust-item:last-child { border-right: 0; }
.public-trust-item strong,
.public-trust-item span { display: block; }
.public-trust-item strong { color: #ffffff; font-size: 12px; }
.public-trust-item span { margin-top: 5px; color: #a7dbe7; font-size: 11px; }

.public-section { padding: 96px 0; }

.public-about-grid,
.public-contact-grid {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(320px,0.85fr);
    gap: 70px;
    align-items: center;
}

.public-section-title {
    margin: 0;
    max-width: 820px;
    color: var(--public-navy-deep);
    font-size: clamp(34px, 4.4vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.public-section-copy {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--public-muted);
    font-size: 15px;
    line-height: 1.85;
}

.public-feature-list { display: grid; gap: 14px; margin-top: 28px; }
.public-feature-row {
    display: grid;
    grid-template-columns: 50px minmax(0,1fr);
    gap: 16px;
    padding: 17px;
    background: #f8fdff;
    border: 1px solid var(--public-border);
    border-radius: 16px;
}

.public-feature-row > span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--public-aqua), var(--public-sky));
    border-radius: 14px;
    font-size: 12px;
    font-weight: 900;
}

.public-feature-row strong,
.public-feature-row small { display: block; }
.public-feature-row strong { color: var(--public-navy); font-size: 14px; }
.public-feature-row small { margin-top: 5px; color: var(--public-muted); font-size: 12px; line-height: 1.6; }

.public-about-card {
    padding: 32px;
    color: #ffffff;
    background: linear-gradient(150deg, var(--public-navy-deep), #087d9d);
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(5, 59, 91, 0.18);
}

.public-about-card-label {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 7px 11px;
    color: var(--public-navy);
    background: #ffffff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.public-about-card h3 { margin: 0; font-size: 30px; line-height: 1.2; }
.public-about-card p { margin: 18px 0 0; color: #cdeff6; font-size: 13px; line-height: 1.8; }
.public-inline-link { display: inline-block; margin-top: 24px; color: #ffffff; font-size: 12px; font-weight: 900; text-decoration: none; border-bottom: 2px solid var(--public-red); }

.public-rates-section { background: #f3fcfe; }
.public-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.public-section-heading > p { max-width: 430px; margin: 0; color: var(--public-muted); font-size: 13px; line-height: 1.75; }
.public-section-heading.centred { justify-content: center; text-align: center; }

.public-rate-category {
    margin-bottom: 26px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid var(--public-border);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(5, 59, 91, 0.06);
}

.public-rate-category-header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.public-rate-category-header h3 { margin: 0; color: var(--public-navy); font-size: 20px; }
.public-rate-category-header span { color: var(--public-muted); font-size: 11px; }
.public-rate-grid { display: grid; gap: 14px; }
.public-rate-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }

.public-rate-card {
    position: relative;
    min-height: 170px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: linear-gradient(145deg, #f9feff, #e9fafe);
    border: 1px solid var(--public-border);
    border-radius: 18px;
}

.public-rate-card.featured { color: #ffffff; background: linear-gradient(145deg, var(--public-red), #ed405b); border-color: transparent; }
.public-rate-card span,
.public-rate-card strong,
.public-rate-card small { display: block; }
.public-rate-card span { color: var(--public-navy); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.public-rate-card strong { margin-top: 15px; color: var(--public-navy-deep); font-size: 34px; line-height: 1; }
.public-rate-card small { margin-top: 8px; color: var(--public-muted); font-size: 10px; font-weight: 700; }
.public-rate-card.featured span,
.public-rate-card.featured strong,
.public-rate-card.featured small { color: #ffffff; }

.public-rate-columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.public-rate-list > div { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 15px 0; border-bottom: 1px solid #e5f2f5; }
.public-rate-list > div:last-child { border-bottom: 0; }
.public-rate-list span { color: #456173; font-size: 13px; }
.public-rate-list strong { color: var(--public-navy); font-size: 18px; }

.public-walkin-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 26px;
    padding: 24px 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--public-navy-deep), #087d9d);
    border-radius: 20px;
}

.public-walkin-banner span { font-size: 18px; font-weight: 900; }
.public-walkin-banner p { margin: 5px 0 0; color: #c9edf4; font-size: 12px; }
.public-walkin-banner > strong { font-size: 24px; white-space: nowrap; }
.public-rate-note { margin: 20px auto 0; max-width: 940px; color: var(--public-muted); font-size: 11px; line-height: 1.7; text-align: center; }

.public-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.public-process-card { min-height: 250px; padding: 24px; background: #ffffff; border: 1px solid var(--public-border); border-radius: 20px; box-shadow: 0 14px 30px rgba(5, 59, 91, 0.06); }
.public-process-card > span { width: 46px; height: 46px; display: grid; place-items: center; color: #ffffff; background: var(--public-red); border-radius: 13px; font-size: 14px; font-weight: 900; }
.public-process-card h3 { margin: 48px 0 0; color: var(--public-navy); font-size: 17px; }
.public-process-card p { margin: 12px 0 0; color: var(--public-muted); font-size: 12px; line-height: 1.75; }

.public-safety-section { padding: 74px 0; color: #ffffff; background: linear-gradient(135deg, var(--public-navy-deep), #075985); }
.public-safety-grid { display: grid; grid-template-columns: minmax(0,0.95fr) minmax(0,1.05fr); gap: 70px; align-items: center; }
.public-section-label.light { color: #7cecff; }
.public-safety-section h2 { margin: 0; font-size: clamp(30px,4vw,48px); line-height: 1.12; }
.public-safety-copy { display: grid; gap: 15px; }
.public-safety-copy p { margin: 0; padding: 18px; color: #d2edf3; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.13); border-radius: 16px; font-size: 12px; line-height: 1.8; }

.public-contact-section { background: linear-gradient(180deg, #ffffff, #f3fcfe); }
.public-contact-card { padding: 28px; background: #ffffff; border: 1px solid var(--public-border); border-radius: 22px; box-shadow: 0 22px 48px rgba(5, 59, 91, 0.1); }
.public-contact-card > div { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid #e7f2f5; }
.public-contact-card small,
.public-contact-card strong,
.public-contact-card a { display: block; }
.public-contact-card small { color: var(--public-muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.public-contact-card strong,
.public-contact-card > div a { margin-top: 6px; color: var(--public-navy); font-size: 13px; line-height: 1.6; text-decoration: none; }

.public-footer { padding: 30px 0; color: #ffffff; background: #021f31; }
.public-footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.public-footer-brand { display: flex; align-items: center; gap: 12px; }
.public-footer-brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 12px; }
.public-footer-brand strong,
.public-footer-brand span { display: block; }
.public-footer-brand strong { font-size: 13px; }
.public-footer-brand span { margin-top: 4px; color: #8fcbd8; font-size: 10px; }
.public-footer p { margin: 0; color: #8fcbd8; font-size: 10px; }

@media (max-width: 1100px) {
    .public-hero-grid,
    .public-about-grid,
    .public-contact-grid { grid-template-columns: 1fr; }
    .public-hero-visual { min-height: auto; padding-top: 30px; }
    .public-rate-grid.four,
    .public-process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .public-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .public-safety-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .public-menu-button { display: block; }
    .public-navigation {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: #ffffff;
        border: 1px solid var(--public-border);
        border-radius: 16px;
        box-shadow: 0 20px 45px rgba(5,59,91,0.18);
    }
    .public-navigation.open { display: flex; }
    .public-navigation > a { padding: 13px 14px; border-radius: 10px; }
    .public-navigation .public-nav-login { margin-top: 6px; text-align: center; }
    .public-section-heading { align-items: flex-start; flex-direction: column; }
    .public-rate-columns { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 650px) {
    .public-container { width: min(100% - 28px, 1180px); }
    .public-hero { padding: 58px 0 60px; }
    .public-hero h1 { font-size: 48px; }
    .public-hero-copy { font-size: 14px; }
    .public-hero-actions { flex-direction: column; }
    .public-button { width: 100%; }
    .public-floating-card { position: static; max-width: none; margin-top: 12px; }
    .public-trust-grid,
    .public-rate-grid.four,
    .public-process-grid { grid-template-columns: 1fr; }
    .public-trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 14px 0; }
    .public-section { padding: 70px 0; }
    .public-section-title { font-size: 34px; }
    .public-rate-category { padding: 19px; }
    .public-rate-category-header { align-items: flex-start; flex-direction: column; gap: 5px; }
    .public-walkin-banner { align-items: flex-start; flex-direction: column; }
    .public-footer-grid { align-items: flex-start; flex-direction: column; }
}


/* ============================================================
   PUBLIC WEBSITE V2 — EDITORIAL / NON-GENERIC GYM FRONTEND
   No decorative blobs, no glassmorphism, no gradient surfaces.
   ============================================================ */

.gym-site {
    --gym-navy: #062f49;
    --gym-navy-dark: #021f31;
    --gym-aqua: #119fc1;
    --gym-aqua-light: #dceff3;
    --gym-red: #cf1236;
    --gym-paper: #f4f1ea;
    --gym-white: #ffffff;
    --gym-ink: #14232e;
    --gym-muted: #63737d;
    --gym-line: #cad6da;
    margin: 0;
    min-height: 100vh;
    color: var(--gym-ink);
    background: var(--gym-white);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.55;
}

.gym-site *,
.gym-site *::before,
.gym-site *::after {
    box-sizing: border-box;
}

.gym-site a {
    color: inherit;
}

.gym-site img {
    display: block;
    max-width: 100%;
}

.gym-shell {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.gym-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--gym-white);
    border-bottom: 1px solid var(--gym-line);
}

.gym-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.gym-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.gym-brand img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border: 1px solid var(--gym-line);
}

.gym-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.gym-brand-copy strong {
    color: var(--gym-navy);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.gym-brand-copy small {
    margin-top: 5px;
    color: var(--gym-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.gym-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.gym-navigation > a {
    position: relative;
    color: #40535f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gym-navigation > a:not(.gym-login-link)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--gym-red);
    transition: right 0.2s ease;
}

.gym-navigation > a:not(.gym-login-link):hover::after {
    right: 0;
}

.gym-login-link {
    padding: 12px 18px;
    color: var(--gym-white) !important;
    background: var(--gym-navy);
    border: 1px solid var(--gym-navy);
}

.gym-login-link:hover {
    background: var(--gym-red);
    border-color: var(--gym-red);
}

.gym-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gym-line);
    background: var(--gym-white);
    cursor: pointer;
}

.gym-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--gym-navy);
}

.gym-hero {
    min-height: 710px;
    display: flex;
    align-items: stretch;
    background: var(--gym-paper);
    border-bottom: 1px solid var(--gym-line);
}

.gym-hero-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 1.08fr);
    min-height: 710px;
}

.gym-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 78px 0;
    border-right: 1px solid var(--gym-line);
}

.gym-kicker,
.gym-overline {
    margin: 0 0 18px;
    color: var(--gym-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.gym-hero h1,
.gym-section-heading h2,
.gym-security h2,
.gym-contact h2 {
    margin: 0;
    color: var(--gym-navy-dark);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.gym-hero h1 {
    max-width: 680px;
    font-size: clamp(66px, 7vw, 112px);
}

.gym-hero h1 em {
    display: block;
    color: var(--gym-aqua);
    font-style: normal;
}

.gym-hero-copy > p {
    max-width: 640px;
    margin: 28px 0 0;
    color: #4f626d;
    font-size: 16px;
    line-height: 1.8;
}

.gym-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.gym-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.gym-button-primary {
    color: var(--gym-white);
    background: var(--gym-red);
    border-color: var(--gym-red);
}

.gym-button-primary:hover {
    background: var(--gym-navy);
    border-color: var(--gym-navy);
}

.gym-button-outline {
    color: var(--gym-navy);
    background: transparent;
    border-color: var(--gym-navy);
}

.gym-button-outline:hover {
    color: var(--gym-white);
    background: var(--gym-navy);
}

.gym-hero-facts {
    display: grid;
    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(180px, 0.8fr);
    gap: 24px;
    margin: 40px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--gym-line);
}

.gym-hero-facts div {
    min-width: 0;
}

.gym-hero-facts dt {
    color: var(--gym-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gym-hero-facts dd {
    margin: 6px 0 0;
    color: var(--gym-navy);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.6;
}

.gym-hero-facts a {
    text-decoration: none;
}

.gym-hero-media {
    position: relative;
    display: flex;
    align-items: center;
    padding: 56px 0 56px 56px;
    overflow: hidden;
}

.gym-photo-window {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
    border: 1px solid var(--gym-navy);
    background: var(--gym-navy);
}

.gym-photo-window > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.92) contrast(1.02);
}

.gym-photo-window::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 12px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.gym-photo-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 62%;
    padding: 18px 20px;
    color: var(--gym-white);
    background: var(--gym-navy);
    border-top: 4px solid var(--gym-red);
}

.gym-photo-caption span,
.gym-photo-caption strong {
    display: block;
}

.gym-photo-caption span {
    color: #9ad7e4;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gym-photo-caption strong {
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.gym-hero-index {
    position: absolute;
    right: -5px;
    top: 12px;
    color: rgba(6, 47, 73, 0.08);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 190px;
    font-weight: 900;
    line-height: 1;
}

.gym-service-band {
    color: var(--gym-white);
    background: var(--gym-navy);
    border-bottom: 5px solid var(--gym-red);
}

.gym-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gym-service-grid > div {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.gym-service-grid > div:last-child {
    border-right: 0;
}

.gym-service-grid span {
    color: #7ed7e8;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.gym-service-grid strong {
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gym-section {
    padding: 110px 0;
    background: var(--gym-white);
}

.gym-about-layout {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.72fr)
        minmax(0, 1.28fr);
    gap: 78px;
}

.gym-section-heading {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 56px;
}

.gym-about-layout > .gym-section-heading {
    margin-bottom: 0;
}

.gym-section-number {
    padding-top: 6px;
    color: var(--gym-red);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 29px;
    font-weight: 800;
    border-top: 4px solid var(--gym-red);
}

.gym-section-heading h2 {
    max-width: 850px;
    font-size: clamp(46px, 5vw, 72px);
}

.gym-about-content {
    padding-top: 62px;
}

.gym-lead {
    margin: 0;
    color: #374e5b;
    font-size: 18px;
    line-height: 1.9;
}

.gym-principles {
    margin-top: 38px;
    border-top: 1px solid var(--gym-line);
}

.gym-principles article {
    display: grid;
    grid-template-columns:
        52px minmax(180px, 0.6fr)
        minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--gym-line);
}

.gym-principles article > strong {
    color: var(--gym-aqua);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 23px;
}

.gym-principles h3 {
    margin: 0;
    color: var(--gym-navy);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.gym-principles p {
    margin: 1px 0 0;
    color: var(--gym-muted);
    font-size: 13px;
    line-height: 1.7;
}

.gym-rates {
    padding: 110px 0;
    color: var(--gym-white);
    background: var(--gym-navy-dark);
}

.gym-section-heading-light h2 {
    color: var(--gym-white);
}

.gym-section-heading-light .gym-overline {
    color: #83d7e7;
}

.gym-section-heading-light .gym-section-number {
    color: var(--gym-red);
}

.gym-rate-explainer {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        70px
        minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gym-rate-explainer > div:not(.gym-rate-plus) {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
}

.gym-rate-explainer span {
    color: #7ed7e8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gym-rate-explainer p {
    margin: 0;
    color: #c0d5dc;
    font-size: 12px;
    line-height: 1.7;
}

.gym-rate-plus {
    color: var(--gym-red);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 44px;
    font-weight: 800;
    text-align: center;
}

.gym-rate-table {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.gym-rate-table-head,
.gym-rate-row {
    display: grid;
    grid-template-columns:
        minmax(220px, 1.3fr)
        repeat(3, minmax(150px, 0.9fr));
    gap: 18px;
    align-items: center;
    min-height: 76px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gym-rate-table-head {
    min-height: 54px;
    color: #7ed7e8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gym-rate-row > span {
    color: var(--gym-white);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.gym-rate-row span small {
    display: block;
    margin-top: 3px;
    color: #9ab3bc;
    font-family: "Inter", Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.gym-rate-row > strong {
    color: var(--gym-white);
    font-size: 14px;
}

.gym-rate-row-foundation {
    background: var(--gym-red);
    margin: 0 -22px;
    padding: 0 22px;
    border-bottom-color: var(--gym-red);
}

.gym-rate-row-foundation span small {
    color: #ffd8df;
}

.gym-walkin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 32px;
    padding: 24px 0;
    border-top: 4px solid var(--gym-aqua);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gym-walkin span {
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.gym-walkin p {
    margin: 4px 0 0;
    color: #a9c0c8;
    font-size: 11px;
}

.gym-walkin > strong {
    font-size: 25px;
}

.gym-rate-footnote {
    max-width: 900px;
    margin: 22px 0 0;
    color: #8faab4;
    font-size: 10px;
    line-height: 1.7;
}

.gym-process {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--gym-line);
}

.gym-process li {
    display: grid;
    grid-template-columns:
        110px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--gym-line);
}

.gym-process li > span {
    color: var(--gym-red);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 40px;
    font-weight: 800;
}

.gym-process h3 {
    margin: 0;
    color: var(--gym-navy);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.gym-process p {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--gym-muted);
    font-size: 13px;
    line-height: 1.75;
}

.gym-security {
    padding: 88px 0;
    color: var(--gym-white);
    background: var(--gym-aqua);
    border-top: 8px solid var(--gym-red);
}

.gym-security-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
}

.gym-security .gym-overline {
    color: var(--gym-navy);
}

.gym-security h2 {
    color: var(--gym-navy-dark);
    font-size: clamp(46px, 5vw, 70px);
}

.gym-security-copy {
    border-top: 1px solid rgba(2, 31, 49, 0.35);
}

.gym-security-copy p {
    margin: 0;
    padding: 22px 0;
    color: #07364e;
    font-size: 13px;
    line-height: 1.8;
    border-bottom: 1px solid rgba(2, 31, 49, 0.35);
}

.gym-contact {
    padding: 110px 0;
    background: var(--gym-paper);
}

.gym-contact-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.7fr);
    gap: 90px;
    align-items: end;
}

.gym-contact h2 {
    font-size: clamp(66px, 7vw, 110px);
}

.gym-contact > .gym-shell > div:first-child > p:last-child {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--gym-muted);
    font-size: 15px;
    line-height: 1.8;
}

.gym-contact-details {
    border-top: 4px solid var(--gym-red);
}

.gym-contact-details > div {
    padding: 22px 0;
    border-bottom: 1px solid var(--gym-line);
}

.gym-contact-details span,
.gym-contact-details strong,
.gym-contact-details a {
    display: block;
}

.gym-contact-details span {
    color: var(--gym-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gym-contact-details strong,
.gym-contact-details > div a {
    margin-top: 7px;
    color: var(--gym-navy);
    font-size: 13px;
    line-height: 1.7;
    text-decoration: none;
}

.gym-contact-details > .gym-button {
    width: 100%;
    margin-top: 22px;
}

.gym-footer {
    padding: 28px 0;
    color: var(--gym-white);
    background: var(--gym-navy-dark);
}

.gym-footer-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.gym-footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.gym-footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gym-footer-brand strong,
.gym-footer-brand span {
    display: block;
}

.gym-footer-brand strong {
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 19px;
    text-transform: uppercase;
}

.gym-footer-brand span {
    margin-top: 4px;
    color: #88a8b3;
    font-size: 9px;
}

.gym-footer p {
    margin: 0;
    color: #88a8b3;
    font-size: 10px;
}

@media (max-width: 1080px) {
    .gym-hero-layout,
    .gym-about-layout,
    .gym-security-layout,
    .gym-contact-layout {
        grid-template-columns: 1fr;
    }

    .gym-hero-copy {
        padding: 70px 0 50px;
        border-right: 0;
        border-bottom: 1px solid var(--gym-line);
    }

    .gym-hero-media {
        padding: 40px 0 60px;
    }

    .gym-about-content {
        padding-top: 0;
    }

    .gym-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gym-service-grid > div:nth-child(2) {
        border-right: 0;
    }

    .gym-rate-explainer {
        grid-template-columns: 1fr;
    }

    .gym-rate-plus {
        text-align: left;
        line-height: 0.7;
    }
}

@media (max-width: 860px) {
    .gym-menu-button {
        display: block;
    }

    .gym-navigation {
        position: absolute;
        left: 24px;
        right: 24px;
        top: calc(100% + 1px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: var(--gym-white);
        border: 1px solid var(--gym-line);
    }

    .gym-navigation.is-open {
        display: flex;
    }

    .gym-navigation > a {
        padding: 13px;
    }

    .gym-navigation > a:not(.gym-login-link)::after {
        display: none;
    }

    .gym-login-link {
        margin-top: 6px;
        text-align: center;
    }

    .gym-rate-table-head {
        display: none;
    }

    .gym-rate-row {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(150px, 0.65fr);
        gap: 10px 18px;
        padding: 18px 0;
    }

    .gym-rate-row > span {
        grid-row: span 3;
    }

    .gym-rate-row > strong::before {
        display: block;
        margin-bottom: 2px;
        color: #79cddd;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .gym-rate-row > strong:nth-child(2)::before {
        content: "Membership";
    }

    .gym-rate-row > strong:nth-child(3)::before {
        content: "Monthly";
    }

    .gym-rate-row > strong:nth-child(4)::before {
        content: "Per session";
    }

    .gym-principles article {
        grid-template-columns: 45px minmax(0, 1fr);
    }

    .gym-principles article p {
        grid-column: 2;
    }
}

@media (max-width: 620px) {
    .gym-shell {
        width: min(100% - 28px, 1240px);
    }

    .gym-brand-copy small {
        display: none;
    }

    .gym-hero {
        min-height: auto;
    }

    .gym-hero-layout {
        min-height: auto;
    }

    .gym-hero h1 {
        font-size: 64px;
    }

    .gym-hero-copy > p {
        font-size: 14px;
    }

    .gym-hero-actions {
        flex-direction: column;
    }

    .gym-button {
        width: 100%;
    }

    .gym-hero-facts {
        grid-template-columns: 1fr;
    }

    .gym-photo-window {
        height: 400px;
    }

    .gym-hero-index {
        display: none;
    }

    .gym-service-grid {
        grid-template-columns: 1fr;
    }

    .gym-service-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .gym-service-grid > div:last-child {
        border-bottom: 0;
    }

    .gym-section,
    .gym-rates,
    .gym-contact {
        padding: 78px 0;
    }

    .gym-section-heading {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }

    .gym-section-heading h2,
    .gym-security h2 {
        font-size: 46px;
    }

    .gym-lead {
        font-size: 16px;
    }

    .gym-rate-explainer > div:not(.gym-rate-plus) {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .gym-rate-row {
        grid-template-columns: 1fr;
    }

    .gym-rate-row > span {
        grid-row: auto;
        margin-bottom: 8px;
    }

    .gym-rate-row-foundation {
        margin: 0 -14px;
        padding: 18px 14px;
    }

    .gym-walkin {
        align-items: flex-start;
        flex-direction: column;
    }

    .gym-process li {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 14px;
    }

    .gym-contact h2 {
        font-size: 72px;
    }

    .gym-footer-layout {
        align-items: flex-start;
        flex-direction: column;
    }
}