.travel-enquiry-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.09);
    margin-top: 20px;
}

.te-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 15px;
}

.travel-enquiry-form input,
.travel-enquiry-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: 0.2s;
}

.travel-enquiry-form input:focus,
.travel-enquiry-form select:focus {
    border-color: #00a869;
    box-shadow: 0 0 5px rgba(0,168,105,0.3);
}

/* Submit button takes full width row */
.travel-enquiry-form button {
    grid-column: span 3;
    padding: 14px;
    background: #00a869;
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s;
}

.travel-enquiry-form button:hover {
    background: #008a56;
}

.te-success {
    color: #008a56;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

.te-error {
    color: red;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

/* Mobile View (1 control per row) */
@media(max-width: 768px) {
    .te-row {
        grid-template-columns: 1fr !important;
    }
}
