/* Get Quote Section */
.get-quote-section {
    background-color: #f9f9f9;
    padding-top: 120px;
    padding-bottom: 120px;
}

    .get-quote-section .sec-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fc8a29; /* matching your theme */
    }

    .get-quote-section .sec-title p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
    }

    .get-quote-section .list-style-one {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        font-size: 14px;
        color: #555;
    }

        .get-quote-section .list-style-one li {
            margin-bottom: 10px;
        }

    /* Form Styling */
    .get-quote-section .form-inner {
        background: #fff;
        padding: 40px 30px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    }

        .get-quote-section .form-inner .form-group {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
        }

        .get-quote-section .form-inner label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        .get-quote-section .form-inner input[type="text"],
        .get-quote-section .form-inner input[type="email"],
        .get-quote-section .form-inner input[type="file"],
        .get-quote-section .form-inner textarea {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 14px;
            color: #333;
            width: 100%;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

            .get-quote-section .form-inner input[type="text"]:focus,
            .get-quote-section .form-inner input[type="email"]:focus,
            .get-quote-section .form-inner textarea:focus {
                border-color: #fc8a29;
                outline: none;
            }

        .get-quote-section .form-inner textarea {
            resize: vertical;
            min-height: 120px;
        }

        .get-quote-section .form-inner small {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
        }

        .get-quote-section .form-inner .form-check {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

            .get-quote-section .form-inner .form-check input[type="checkbox"] {
                margin-right: 10px;
                width: 18px;
                height: 18px;
            }

            .get-quote-section .form-inner .form-check label {
                font-size: 14px;
                color: #555;
            }

        .get-quote-section .form-inner .message-btn {
            margin-top: 10px;
        }

            .get-quote-section .form-inner .message-btn .theme-btn.btn-one {
                background-color: #fc8a29;
                color: #fff;
                padding: 14px 30px;
                font-size: 16px;
                font-weight: 600;
                border-radius: 8px;
                border: none;
                cursor: pointer;
                transition: all 0.3s ease;
            }

                .get-quote-section .form-inner .message-btn .theme-btn.btn-one:hover {
                    background-color: #e87c23;
                }

/* Responsive */
@media (max-width: 991px) {
    .get-quote-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .get-quote-section .form-inner {
        padding: 30px 20px;
    }
}
