/**
 * Delta Booking Pro - Frontend Styles
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --dbp-primary: #2563eb;
    --dbp-success: #10b981;
    --dbp-error: #ef4444;
    --dbp-bg: #ffffff;
    --dbp-border: #e2e8f0;
    --dbp-text: #0f172a;
    --dbp-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --dbp-radius: 0.75rem;
}

.dbp-booking-container {
    font-family: 'Inter', sans-serif;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.dbp-booking-header h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.dbp-progress-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.dbp-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dbp-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.dbp-progress-step.active .dbp-step-number {
    background: var(--dbp-primary);
    color: white;
}

.dbp-booking-form {
    background: white;
    border: 1px solid var(--dbp-border);
    border-radius: var(--dbp-radius);
    padding: 40px;
    box-shadow: var(--dbp-shadow);
}

.dbp-form-step {
    display: none;
}

.dbp-form-step.active {
    display: block;
}

.dbp-form-group {
    margin-bottom: 20px;
}

.dbp-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.dbp-form-group input,
.dbp-form-group select,
.dbp-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--dbp-border);
    border-radius: 8px;
    font-size: 16px;
}

.dbp-form-group input:focus {
    outline: none;
    border-color: var(--dbp-primary);
}

.dbp-error-message {
    color: var(--dbp-error);
    font-size: 13px;
    margin-top: 4px;
    display: none;
}

.dbp-error-message.show {
    display: block;
}

.dbp-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.dbp-btn {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.dbp-btn-primary {
    background: var(--dbp-primary);
    color: white;
}

.dbp-btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.dbp-success-message {
    text-align: center;
    padding: 40px;
    display: none;
}

.dbp-success-message.show {
    display: block;
}

.dbp-success-icon {
    width: 80px;
    height: 80px;
    background: var(--dbp-success);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}
