.booking-page-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

.booking-page-title {
    text-align: center;
    margin-bottom: 40px;
    color: #003366;
    font-size: 2rem;
    font-weight: 700;
}

.booking-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: start;
}

.car-preview-sidebar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: sticky;
    top: 20px;
}

.car-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
}
.car-image img { max-width: 100%; max-height: 100%; object-fit: contain; }

.car-info h3 { margin: 0 0 10px 0; color: #333; font-size: 1.4rem; }
.car-specs { font-size: 0.9rem; color: #666; margin-bottom: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.car-specs span { background: #f1f5f9; padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; }

.price-highlight {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: #003366;
    font-weight: 700;
    font-size: 1.5rem;
    border: 1px solid #cce5ff;
}
.price-highlight small { font-size: 0.9rem; font-weight: 400; color: #666; }

.booking-form-main {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.form-section-title {
    margin: 0 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    color: #003366;
    font-size: 1.2rem;
    font-weight: 600;
}

.form-section { margin-bottom: 40px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }
.form-group { width: 100%; margin-bottom: 15px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; color: #444; }

.split-input { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; }

input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
input:focus { border-color: #003366; outline: none; }

.choices__inner { min-height: 50px !important; background: white; border-radius: 8px !important; border: 1px solid #dee2e6 !important; display: flex; align-items: center; }

.field-notice {
    font-size: 0.8rem;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    display: none; 
    line-height: 1.4;
    border: 1px solid transparent;
}

.notice-info {
    background-color: #e0f2fe; 
    color: #0369a1; 
    border-color: #bae6fd;
}

.notice-warning {
    background-color: #fffbeb; 
    color: #92400e; 
    border-color: #fde68a;
}

.promo-section { display: flex; gap: 10px; margin-bottom: 5px; }
#apply-promo-btn { background: #333; color: white; border: none; padding: 0 25px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: 0.2s; height: 50px; }
#apply-promo-btn:hover { background: #000; }


.price-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid #eee;
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 1rem; color: #555; }
.summary-total { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px solid #ddd; font-weight: 700; font-size: 1.4rem; color: #003366; }

.fee-row { display: none; color: #b45309; font-weight: 500; } /* Dark Orange/Gold */
.discount-row { display: none; color: #15803d; font-weight: 600; }

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 30px;
    cursor: pointer;
    transition: background 0.2s;
}
.submit-btn:disabled { background: #ccc; cursor: not-allowed; }
.submit-btn:hover:not(:disabled) { background: #002244; }

.payment-notice {
    text-align: right;
    font-size: 0.9rem;
    color: #0f5132; 
    background-color: #d1e7dd;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); justify-content: center; align-items: center; z-index: 2000; }
.modal-overlay.show { display: flex; }

.modal-content.success-modern {
    background: white;
    padding: 0;
    text-align: center;
    border-radius: 16px;
    width: 420px;
    max-width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    position: relative;
    border: none;
}

.modal-header-banner {
    background: #003366; 
    height: 120px;
    width: 100%;
}

.modal-body {
    padding: 0 30px 30px 30px;
    margin-top: -50px; 
}

.icon-container {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.success-checkmark {
    width: 50px;
    height: 50px;
    fill: #28a745; 
}

.modal-content h2 {
    color: #003366;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.account-prompt-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.account-prompt-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
}

.modal-btn-primary {
    display: block;
    width: 100%;
    padding: 12px;
    background: #003366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.modal-btn-primary:hover {
    background: #002244;
}

.social-section span {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links-modal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-icon.fb:hover { background: #1877F2; color: white; }
.social-icon.insta:hover { background: #E1306C; color: white; }
.social-icon.tiktok:hover { background: #000000; color: white; }

.return-link {
    color: #6c757d;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}
.return-link:hover { color: #333; }

@media (max-width: 900px) {
    .booking-grid { grid-template-columns: 1fr; }
    .car-preview-sidebar { display: none; } 
    .form-row { grid-template-columns: 1fr; }
}

.flatpickr-calendar {
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    border-radius: 12px !important;
    font-family: inherit !important;
    width: 300px !important;
    margin: 5px auto 0;
}
.flatpickr-months { background: #003366 !important; border-radius: 12px 12px 0 0 !important; padding: 10px 0; }
.flatpickr-current-month .flatpickr-monthDropdown-months, .flatpickr-current-month input.cur-year { color: #fff !important; font-weight: 700; }
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month { fill: #fff !important; }
.flatpickr-day.selected { background: #003366 !important; border-color: #003366 !important; }