/* Booking Form Styles */
.travelink-info-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.travelink-info-header {
    text-align: center;
    margin-bottom: 40px;
}

.travelink-info-title {
    color: #045594;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.travelink-info-subtitle {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
}

.travelink-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.travelink-booking-summary-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.travelink-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.travelink-summary-item:last-child {
    border-bottom: none;
}

.travelink-summary-item strong {
    color: #333;
}

.travelink-form-row {
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group.has-error label {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.travelink-field:focus {
    outline: none;
    border-color: #045594;
}

.travelink-field[type="textarea"] {
    resize: vertical;
    min-height: 100px;
}

/* Required field indicator */
.required {
    color: #dc3545;
    margin-left: 3px;
}

/* Select input specific styles */
select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.travelink-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.travelink-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.travelink-btn-primary {
    background: linear-gradient(135deg, #045594, #0066cc);
    color: white;
}

.travelink-btn-primary:hover {
    background: linear-gradient(135deg, #034a7a, #0052a3);
    transform: translateY(-2px);
}

.travelink-btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.travelink-btn-secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.travelink-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.travelink-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.travelink-contact-item i {
    color: #045594;
    font-size: 1.5rem;
    width: 30px;
}

.travelink-contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.travelink-contact-item p {
    margin: 0;
    color: #666;
}

.travelink-success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.travelink-success-message i {
    color: #28a745;
    margin-right: 10px;
}

.travelink-success-message strong {
    display: block;
    margin-bottom: 10px;
}

.travelink-success-message ul {
    margin: 15px 0;
    padding-left: 20px;
}

.travelink-success-message a {
    color: #045594;
    text-decoration: underline;
    font-weight: bold;
}

.form-group.has-error .form-control {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.travelink-error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

@media (max-width: 768px) {
    .travelink-booking-form-wrapper {
        padding: 20px 15px;
    }

    .travelink-booking-info-title h1 {
        font-size: 2rem;
    }

    .travelink-form-actions {
        flex-direction: column;
    }

    .travelink-btn {
        width: 100%;
    }

    .travelink-summary-item {
        flex-direction: column;
        gap: 5px;
    }
}