﻿/* Form Title */
.custom-form-title {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #333;
}

/* Input Field */
.custom-field {
    position: relative;
    margin-bottom: 1.5rem;
}

/* Inputs, Selects, Textareas */
.custom-input, .custom-select { 
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.custom-textarea {
    width: 100%;
    padding: 1.2rem; /* increased from 0.75rem */
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.custom-input:focus, .custom-select:focus, .custom-textarea:focus {
    border-color: #ff7b00;
    box-shadow: 0 0 10px rgba(255, 123, 0, 0.3);
    outline: none;
}

/* Label Styling */
.custom-field label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Placeholder effect */
.custom-input::placeholder,
.custom-textarea::placeholder {
    color: #aaa;
}

/* Dropdown Styling */
.custom-select {
    appearance: none;
    background-color: #fff;
    cursor: pointer;
}

/* Submit Button */
.custom-submit-button {
    background: #ff7b00;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.custom-submit-button:hover {
    background: #e66a00;
}

/* Container */
.enquiry_form {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem 3rem;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .enquiry_form {
        padding: 1.5rem;
        margin: 1rem;
    }

    .custom-form-container {
        padding: 1.5rem;
    }

    .custom-submit-button {
        font-size: 1rem;
    }
}

/* Radio Buttons Group Styling */
.radio-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.radio-group label {
    font-weight: normal;
    font-size: 0.95rem;
    color: #555;
}

.radio-group input[type="radio"] {
    margin-right: 0.25rem;
    accent-color: #ff7b00;
    transform: scale(1.2);
}
