/* Modern Bluewater-inspired Booking Form Styles */

.wpdirector-jetty-booking-wrapper {
    width: 100%;
    padding: 40px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
}

.wpdirector-jetty-booking-container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.booking-title {
    text-align: center;
    color: #0f172a;
    font-size: 32px;
    font-weight: 800;
    padding: 40px 20px 30px;
    margin: 0;
    letter-spacing: -0.025em;
}

/* Tab Navigation */
.booking-tabs {
    display: flex;
    background: #f8fafc;
    padding: 6px;
    margin: 0 30px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    color: #64748b;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.tab-btn:hover {
    color: #0f172a;
}

.tab-btn.active {
    background: #ffffff;
    color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 0 30px 40px;
}

.tab-content.active {
    display: block;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.form-group select,
.form-group input[type="date"],
.form-group input[type="text"] {
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: #ffffff;
    color: #0f172a;
    transition: all 0.2s ease;
    font-weight: 500;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Jetty Options */
.jetty-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.jetty-section label {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.jetty-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.jetty-option {
    position: relative;
}

.jetty-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.jetty-option label {
    display: block;
    padding: 12px 16px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s ease;
    text-transform: none;
    margin-bottom: 0;
    text-align: center;
}

.jetty-option input[type="radio"]:checked + label {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
}

.jetty-option:hover label {
    border-color: #cbd5e1;
}

/* Passengers Section */
.passengers-section {
    margin-bottom: 30px;
}

.passengers-section > label {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.passengers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.passenger-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    transition: all 0.2s ease;
}

.passenger-item:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.passenger-info {
    display: flex;
    flex-direction: column;
}

.passenger-type {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.passenger-desc {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.passenger-item input[type="number"] {
    width: 50px;
    border: none;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.passenger-item input[type="number"]:focus {
    outline: none;
    background: #e2e8f0;
}

/* Search Button */
.search-btn {
    width: 100%;
    padding: 18px;
    background: #1d4ed8;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px -1px rgba(29, 78, 216, 0.2);
}

.search-btn:hover {
    background: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(29, 78, 216, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .wpdirector-jetty-booking-container {
        margin: 0 15px;
    }
    
    .form-row, .passengers-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-tabs {
        margin: 0 20px 20px;
    }
    
    .tab-content {
        padding: 0 20px 30px;
    }
}

/* Selection Page Styles - Modern Design */
.wpdirector-selection-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.wpdirector-selection-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.selection-main {
    background: #fff;
    padding: 20px;
}

.selection-title {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Time Slots */
.times-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

/* No Trip Container */
.no-trip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #fff;
}

.no-trip-text {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.change-date-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.change-date-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.change-date-btn:active {
    transform: translateY(0);
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.time-slot:hover {
    border-color: #cbd5e1;
}

.time-slot.selected {
    border-color: #2563eb;
    background: #f8fafc;
    box-shadow: 0 0 0 1px #2563eb;
}

.time-slot.unavailable {
    cursor: not-allowed;
    opacity: 0.7;
}

.time-text {
    font-size: 24px;
    font-weight: 500;
    color: #1e293b;
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: #f87171;
}

/* Info Banner */
.travel-info-banner {
    background: #1e293b;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
}

.travel-info-banner .info-icon {
    background: #fff;
    color: #1e293b;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}

.see-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Jetty Dropdown */
.jetty-dropdown select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 16px;
    color: #64748b;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

/* Sidebar Summary */
.booking-summary-sidebar {
    background: #1e293b;
    border-radius: 4px;
    overflow: hidden;
    color: #fff;
}

.summary-title {
    background: #7dd3fc;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.summary-section {
    padding: 20px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.summary-section:last-of-type {
    border-bottom: none;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.summary-item .label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    text-transform: none;
    margin-bottom: 4px;
}

.summary-item .value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row .label {
    font-size: 13px;
    color: #94a3b8;
}

.summary-row .value {
    font-size: 15px;
    font-weight: 600;
}

.summary-total {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.1);
}

.total-label {
    font-size: 14px;
    color: #94a3b8;
}

.total-value {
    font-size: 20px;
    font-weight: 700;
}

.next-step-btn {
    width: 100%;
    padding: 18px;
    background: #1d4ed8;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.next-step-btn:hover:not(:disabled) {
    background: #1e40af;
}

.next-step-btn:disabled {
    background: #334155;
    cursor: not-allowed;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .wpdirector-selection-container {
        grid-template-columns: 1fr;
    }
}

/* Passenger Details Page */
.wpdirector-passenger-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.wpdirector-passenger-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.passenger-main {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.passenger-header {
    margin-bottom: 30px;
}

.passenger-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

.passenger-header p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.passenger-section {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.passenger-section h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.contact-section {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.contact-section h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

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

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

.form-field.half {
    grid-column: span 1;
}

.form-field label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    color: #1e293b;
    background: #fff;
    transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #475569;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #475569;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.special-requests textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    color: #1e293b;
    font-family: inherit;
    resize: vertical;
}

.special-requests textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.back-btn,
.continue-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn {
    background: #fff;
    color: #64748b;
    border: 1px solid #cbd5e1;
}

.back-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.continue-btn {
    background: #22c55e;
    color: #fff;
    flex: 1;
}

.continue-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.continue-btn:active {
    transform: translateY(0);
}

@media (max-width: 900px) {
    .wpdirector-passenger-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Payment Page */
.wpdirector-payment-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.payment-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 40px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.payment-header h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
}

.payment-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    background: #f8fafc;
}

.order-summary-section,
.payment-method-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.order-summary-section h2,
.payment-method-section h2 {
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

.summary-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.trip-section {
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.trip-section h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
}

.trip-detail {
    margin-bottom: 15px;
}

.trip-detail:last-child {
    margin-bottom: 0;
}

.trip-detail strong {
    display: block;
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 5px;
}

.trip-detail p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.passengers-pricing {
    padding: 20px;
}

.passengers-pricing h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.price-left {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
}

.price-detail {
    font-size: 13px;
    color: #64748b;
}

.price-amount {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
}

.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1e293b;
    color: white;
}

.total-label {
    font-size: 16px;
    font-weight: 600;
}

.total-amount {
    font-size: 28px;
    font-weight: 700;
    color: #60a5fa;
}

.method-instruction {
    color: #64748b;
    margin: 0 0 20px 0;
}

.payment-option {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-option:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.payment-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
}

.payment-option input[type="radio"]:checked ~ .payment-label {
    font-weight: 600;
}

.payment-option:has(input:checked) {
    border-color: #2563eb;
    background: #eff6ff;
}

.payment-label {
    flex: 1;
    font-size: 16px;
    color: #1e293b;
}

.payment-icon img {
    height: 30px;
    margin-left: 10px;
}

.payment-notice {
    margin-top: 20px;
    padding: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 13px;
    color: #475569;
    text-align: center;
}

.payment-actions {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background: #f8fafc;
    border-radius: 0 0 12px 12px;
}

.proceed-payment-btn {
    background: #22c55e;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proceed-payment-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.proceed-payment-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 900px) {
    .payment-container {
        grid-template-columns: 1fr;
    }
    
    .payment-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .back-btn,
    .proceed-payment-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Reminder Popup Modal */
.reminder-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.reminder-popup {
    background: #fff;
    border-radius: 8px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: popupSlideIn 0.3s ease-out;
    position: relative;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.reminder-content {
    padding: 35px 30px;
}

.reminder-content h3 {
    margin: 0 0 18px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

.reminder-content p {
    margin: 0 0 28px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.reminder-btn {
    width: 100%;
    padding: 16px 24px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reminder-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.reminder-btn:active {
    transform: translateY(0);
}

/* Payment Page Styles */
.wpdirector-payment-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
}

.payment-header {
    text-align: center;
    margin-bottom: 48px;
}

.payment-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.payment-header p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.order-summary-section,
.payment-method-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.order-summary-section h2,
.payment-method-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
}

.summary-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 24px;
}

.trip-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.trip-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.trip-detail {
    margin-bottom: 12px;
}

.trip-detail strong {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    display: block;
    margin-bottom: 4px;
}

.trip-detail p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.passengers-pricing {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.passengers-pricing h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.price-left {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

.price-detail {
    font-size: 13px;
    color: #64748b;
}

.price-amount {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.total-label {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.method-instruction {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px 0;
}

.payment-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover {
    border-color: #cbd5e1;
}

.payment-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
}

.payment-option input[type="radio"]:checked + .payment-label {
    font-weight: 600;
    color: #2563eb;
}

.payment-option:has(input:checked) {
    border-color: #2563eb;
    background: #eff6ff;
}

.payment-label {
    font-size: 15px;
    color: #1e293b;
    flex: 1;
}

.payment-notice {
    margin-top: 20px;
    padding: 12px 16px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    font-size: 13px;
    color: #78350f;
}

.payment-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.payment-actions .back-btn,
.payment-actions .proceed-payment-btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-actions .back-btn {
    background: #fff;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.payment-actions .back-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.payment-actions .proceed-payment-btn {
    background: #2563eb;
    color: #fff;
    flex: 1;
}

.payment-actions .proceed-payment-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.payment-actions .proceed-payment-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .payment-container {
        grid-template-columns: 1fr;
    }
    
    .payment-actions {
        flex-direction: column;
    }
}

/* Thank You Page Styles */
.wpdirector-thank-you-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

.thank-you-container {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease-out;
}

.success-icon svg {
    stroke: #fff;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.thank-you-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.thank-you-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 32px 0;
}

.booking-reference {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ref-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ref-number {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.confirmation-details {
    text-align: left;
    margin-bottom: 40px;
}

.confirmation-details > h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
    text-align: center;
}

.detail-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.detail-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.passengers-list {
    display: grid;
    gap: 12px;
}

.passenger-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
}

.passenger-name {
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 8px;
}

.passenger-name strong {
    font-weight: 600;
}

.passenger-info {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
}

.contact-item svg {
    flex-shrink: 0;
    stroke: #64748b;
}

.payment-info {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.payment-row.total {
    border-top: 2px solid #e2e8f0;
    padding-top: 16px;
    margin-top: 8px;
}

.payment-label {
    font-size: 15px;
    color: #64748b;
}

.payment-row.total .payment-label {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.payment-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

.payment-status.paid {
    background: #d1fae5;
    color: #065f46;
}

.payment-amount {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps > h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
}

.steps-list {
    display: grid;
    gap: 20px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.thank-you-actions .btn-primary {
    background: #2563eb;
    color: #fff;
}

.thank-you-actions .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.thank-you-actions .btn-secondary {
    background: #fff;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.thank-you-actions .btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.support-info {
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #64748b;
}

.support-info a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .thank-you-container {
        padding: 32px 24px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media print {
    .thank-you-actions,
    .support-info {
        display: none;
    }
}
