/* Booking Page Styles */
body {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 50%, #fbbf24 100%);
    min-height: 100vh;
}

.booking-page {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 50%, #fbbf24 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.booking-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

/* Step Indicators */
.step-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

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

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #e5e7eb;
    color: #6b7280;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #fbbf24;
    color: #1f2937;
}

.step-label {
    font-weight: 500;
    color: #6b7280;
    font-size: 1rem;
}

.step.active .step-label {
    color: #1f2937;
}

.step-connector {
    width: 60px;
    height: 2px;
    background-color: #e5e7eb;
}

/* Form Container */
.booking-form-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 24px;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    color: #9ca3af;
    z-index: 1;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
}

.input-with-icon input {
    padding-left: 40px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
}

/* Continue Button */
.continue-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.continue-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-weight: 500;
}

.trust-badge i {
    font-size: 1.2rem;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.success-message h3 {
    color: #059669;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.success-message p {
    color: #065f46;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    border: 1px solid #d1fae5;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Error Messages */
.error-messages {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #dc2626;
}

.error-messages ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-container {
        padding: 0 16px;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .step-indicators {
        gap: 12px;
    }
    
    .step-connector {
        width: 40px;
    }
    
    .booking-form-container {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* Success Popup Modal */
.booking-modal-overlay{
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	display: grid;
	place-items: center;
	z-index: 2000;
	transition: opacity .2s ease, visibility .2s ease;
	opacity: 0;
	visibility: hidden;
}

.booking-modal-overlay[aria-hidden="false"]{
	opacity: 1;
	visibility: visible;
}

.booking-modal{
    background: #ffffff;
    border: 1px solid #e7eef7;
    border-radius: 24px;
    box-shadow: var(--shadow-lg, 0 20px 40px rgba(11,37,69,.25));
    max-width: 560px;
    width: calc(100% - 32px);
    padding: 28px 22px 22px 22px;
    text-align: center;
    position: relative;
}

.booking-modal-icon{
    width: 72px;
    height: 72px;
    margin: 0 auto 12px auto;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #0B2545;
    background: linear-gradient(135deg, #22c55e 0%, #bbf7d0 100%);
    border: 2px solid #22c55e;
    font-size: 36px;
    box-shadow: 0 6px 0 rgba(34,197,94,.35);
}

.booking-modal h3{
    margin: 6px 0 8px 0;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark, #0B2545);
}

.booking-modal p{
    margin: 0 0 14px 0;
    color: #0e1b2a;
}

.booking-modal-actions{
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 6px;
}

.booking-modal .btn{
    display: inline-block;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 800;
    border: 1px solid #dbe6f3;
    text-decoration: none;
    box-shadow: 0 3px 0 rgba(11,37,69,.18);
}

.booking-modal .btn-primary{
    background: linear-gradient(135deg, #ff6b35 0%, #ffbb11 50%, #ffd700 100%);
    color: #0B2545;
    border-color: #e1c200;
}

.booking-modal .btn-outline{
    background: #ffffff;
    color: #0B2545;
    border-color: #dbe6f3;
}

.booking-modal-close{
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: #0B2545;
    color: #ffd700;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

