:root {
    --status-free: #198754;
    --status-busy: #dc3545;
    --status-cancelled: #6c757d;
    --status-pending: #ffc107;
    --status-confirmed: #0d6efd;
    --status-completed: #20c997;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.site-navbar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2rem;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

.hero-stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-stat-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.hero-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.85;
}

.section-title {
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    border-radius: 2px;
}

.stat-card {
    border-left: 4px solid #0d6efd;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.stat-card--desk { border-left-color: #0d6efd; }
.stat-card--open { border-left-color: #20c997; }
.stat-card--office { border-left-color: #6610f2; }
.stat-card--booking { border-left-color: #fd7e14; }

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.feature-card {
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}

.feature-icon {
    font-size: 2rem;
    line-height: 1;
}

.step-card {
    border: none;
    border-top: 3px solid #0d6efd;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.tariff-card {
    border: none;
    border-top: 3px solid #0d6efd;
    transition: transform 0.15s ease;
}

.tariff-card:hover {
    transform: translateY(-2px);
}

.tariff-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}

.tariff-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
}

.workspace-type-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.6rem;
    border-radius: 2rem;
    background: #e7f1ff;
    color: #0d6efd;
}

.workspace-type-badge--open-space {
    background: #d1f4ea;
    color: #0f5132;
}

.workspace-type-badge--fixed-desk {
    background: #e7f1ff;
    color: #0d6efd;
}

.workspace-type-badge--office {
    background: #e8daff;
    color: #6610f2;
}

.workspace-type-badge--meeting-room {
    background: #fff3cd;
    color: #856404;
}

.workspace-tags .badge {
    font-weight: 400;
    font-size: 0.75rem;
}

.cta-banner {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    margin-top: 2rem;
}


.card-workspace {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    height: 100%;
}

.card-workspace:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.badge-status {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.badge-free { background-color: var(--status-free) !important; }
.badge-busy { background-color: var(--status-busy) !important; }
.badge-cancelled { background-color: var(--status-cancelled) !important; }
.badge-pending { background-color: var(--status-pending) !important; color: #212529; }
.badge-confirmed { background-color: var(--status-confirmed) !important; }
.badge-completed { background-color: var(--status-completed) !important; }

#workspace-map {
    height: 360px;
    border-radius: 0.5rem;
    background: #e9ecef;
    border: 1px solid #dee2e6;
}

.workspace-grid-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.workspace-grid-cell {
    flex: 1;
    min-height: 72px;
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid #dee2e6;
}

.workspace-grid-cell.occupied {
    background: #e7f1ff;
    border-color: #0d6efd;
}

.workspace-grid-cell.empty {
    background: #f8f9fa;
}

.workspace-grid-cell--open-space {
    background: #d1f4ea;
    border-color: #20c997;
}

.workspace-grid-cell--fixed-desk {
    background: #e7f1ff;
    border-color: #0d6efd;
}

.workspace-grid-cell--office {
    background: #e8daff;
    border-color: #6610f2;
}

.workspace-grid-cell--meeting-room {
    background: #fff3cd;
    border-color: #ffc107;
}

.workspace-grid-cell small {
    display: block;
    color: #6c757d;
}

.footer {
    margin-top: 3rem;
    padding: 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.table-bookings td {
    vertical-align: middle;
}

.admin-sidebar-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.05em;
}
