/* enquiry.css */
#enquiry-form-section {
    background-color: #f9fafb;
    /* bg-gray-50 */
    padding: 5rem 1rem;
}

#enquiry-form-container {
    max-width: 42rem;
    /* max-w-lg */
    margin: 0 auto;
    background-color: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* shadow-xl */
}

#enquiry-form h2 {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    /* font-bold */
    margin-bottom: 1rem;
    text-align: center;
    color: #1f2937;
    /* text-gray-900 */
}

#enquiry-form .form-group {
    margin-bottom: 1.5rem;
}

#enquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    /* font-medium */
    color: #374151;
    /* text-gray-700 */
}

#enquiry-form input,
#enquiry-form textarea,
#enquiry-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    /* border-gray-300 */
    border-radius: 0.375rem;
    /* rounded-md */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    /* shadow-sm */
}

#enquiry-form button {
    width: 100%;
    background-color: #10b981;
    /* bg-green-500 */
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.375rem;
    /* rounded-md */
    font-weight: 600;
    /* font-semibold */
    cursor: pointer;
    transition: background-color 0.3s;
}

#enquiry-form button:hover {
    background-color: #059669;
    /* bg-green-600 */
}

#enquiry-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.375rem;
    /* rounded-md */
    display: none;
}

#enquiry-response.success {
    background-color: #d1fae5;
    /* bg-green-100 */
    color: #065f46;
    /* text-green-800 */
}

#enquiry-response.error {
    background-color: #fee2e2;
    /* bg-red-100 */
    color: #991b1b;
    /* text-red-800 */
}