.atomy-enquiry-form-wrapper {
    max-width: 600px;
    margin: 30px auto;
}

.atomy-enquiry-form {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.atomy-enquiry-form h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.required {
    color: #d32f2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    box-shadow: 0 2px 8px rgba(69, 160, 73, 0.3);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary.loading::after {
    content: " ...";
}

#enquiry-message-alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    border-left: 4px solid transparent;
}

.message-success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.message-error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #d32f2f;
}

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

    .atomy-enquiry-form {
        padding: 20px;
    }

    .atomy-enquiry-form h2 {
        font-size: 24px;
    }
}
