/* ===== Professional Payment Page Styling ===== */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary: #64748b;
    --accent: #f59e0b;
    --light: #f8fafc;
    --dark: #1e293b;
    --success: #059669;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.payment-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.payment-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: none;
    overflow: hidden;
}

.payment-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem 2rem;
}

.payment-header h4 {
    margin: 0;
    font-weight: 600;
}

.booking-summary {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.summary-item {
    display: flex;
    justify-content: between;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.summary-label {
    color: var(--secondary);
    font-weight: 500;
    min-width: 140px;
}

.summary-value {
    color: var(--dark);
    font-weight: 600;
}

.amount-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.amount-label {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 500;
}

.payment-action {
    padding: 2rem;
}

.payment-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.security-badge {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.payment-methods {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.method-badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    font-size: 0.875rem;
    color: var(--secondary);
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    border: 3px solid white;
}

.step.active .step-circle {
    background: var(--primary);
    color: white;
}

.step.completed .step-circle {
    background: var(--success);
    color: white;
}

.step-label {
    font-size: 0.875rem;
    color: var(--secondary);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .payment-container {
        padding: 1rem 0;
    }
    
    .payment-header,
    .booking-summary,
    .amount-section,
    .payment-action {
        padding: 1rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .step {
        margin: 0 1rem;
    }
}