/* Contact Section */
.contact-section {
    padding-top: 100px;
}

.contact-details-div,
.contact-form-div {
    padding: 30px;
    border-radius: 18px;
    background-color: #F5F8FD;
}

.contact-details-div {
    min-width: 350px;
    width: fit-content;
}

.contact-form-div {
    width: 100%;
}

.contact-form-div h1 {
    font-size: 2.6rem;
}

.contact-form-div p {
    color: rgb(65, 65, 65);
    max-width: 90%;
}

.contact-details-item-div div h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details-item-div div p {
    color: rgb(59, 59, 59);
}

.contact-details-item-div div a {
    color: rgb(59, 59, 59);
}

.contact-details-item-div div a:hover {
    color: #007aff;
    opacity: 1;
}

.query-form input {
    height: 45px;
}

.query-form input:focus {
    border: 2px solid #007aff;
    box-shadow: none;
    transition: all 0.0s ease !important;
}

.query-form textarea {
    min-height: 150px;
}

.query-form textarea:focus {
    border: 2px solid #007aff;
    box-shadow: none;
    transition: all 0.0s ease !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.query-error {
    align-items: center;
    gap: 5px;
    color: #d93025;
    font-size: 15px;
    margin-top: 6px;
    display: none;
}

.query-error p {
    color: #d93025;
}

.query-input-error {
    border-color: #d93025;
}

.query-input-error:focus {
    border-color: #d93025 !important;
}

.invalid-query-error {
    display: flex;
}

@media (max-width: 991px) {
    .custom-container {
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-details-div {
        min-width: 250px !important;
        width: fit-content;
    }
}

@media (max-width: 767px) {
    .custom-container-inner {
        flex-direction: column;
    }

    .contact-details-div {
        width: 100%;
    }
}

@media (max-width: 415px) {
    .contact-form-div h1 {
        font-size: 2.1rem;
    }

    .contact-form-div p {
        width: 100%;
    }

    .contact-details-div,
    .contact-form-div {
        padding: 15px;
    }
}

@media (max-width: 340px) {
    .contact-form-div h1 {
        font-size: 1.8rem;
    }
}

input:focus {
    box-shadow: none !important;
}

textarea:focus {
    box-shadow: none !important;
}

/* Footer */
.footer {
    padding-top: 75px;
}