:root {
    --primary: #94a3b8;
    --bg-dark: #0a0c10;
    --bg-card: #11151c;
    --bg-input: #1a1f26;
    --text-main: #f8fafc;
    --text-muted: #64748b;
    --border: rgba(148, 163, 184, 0.1);
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.booking-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.booking-tabs {
    display: flex;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--primary);
    color: black;
}

.app-item {
    background: var(--bg-input);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-align: right;
    border: 1px solid var(--border);
}

header {
    margin-bottom: 30px;
}

.logo-img-main {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 auto 15px;
    border-radius: 25px;
    border: 2px solid var(--primary);
    display: block;
}



.booking-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.grid-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.option-item {
    background: var(--bg-input);
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: 0.2s;
}

.option-item:hover,
.option-item.selected {
    border-color: var(--primary);
    background: rgba(148, 163, 184, 0.1);
}

.option-item.selected {
    position: relative;
    border-width: 2px;
}

.check-mark {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: black;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.option-item.busy {
    opacity: 0.3;
    cursor: not-allowed;
    background: #000;
}

.input-field {
    width: 100%;
    padding: 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.btn-confirm {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: black;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 10px;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--text-muted);
    margin-top: 15px;
    cursor: pointer;
    text-decoration: underline;
}

.summary-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 15px;
    text-align: right;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.summary-box span {
    color: var(--primary);
    font-weight: 700;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

footer {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-pending {
    background: rgba(255, 165, 0, 0.1);
    color: orange;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.status-confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-pay {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-pay:hover {
    background: #128c7e;
    transform: translateY(-2px);
}