/* ============================= */
/* REQUEST QUOTE FORM SECTION */
/* ============================= */

.request-quote-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.request-quote-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Form Box Styling */
.request-quote-section form {
    background: transparent;
}

/* Rows */
.request-quote-section .form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    background: #efefef;
    padding: 30px;
    border-radius: 6px;
}

/* Form Group */
.request-quote-section .form-group {
    display: flex;
    flex-direction: column;
}

.request-quote-section .form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

/* Inputs & Select */
.request-quote-section input,
.request-quote-section select {
    height: 48px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: #ffffff;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.request-quote-section input:focus,
.request-quote-section select:focus {
    border-color: #c7a54a;
}

/* Submit Area */
.request-quote-section .submit-area {
    text-align: center;
    margin-top: 40px;
}

/* Gold Button */
.request-quote-section .gold-btn {
    background: #c7a54a;
    color: #fff;
    padding: 14px 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.request-quote-section .gold-btn:hover {
    background: #b89333;
}

/* Responsive */
@media (max-width: 992px) {
    .request-quote-section .form-row {
        grid-template-columns: 1fr;
    }
}