.contact-us-container {
    display: flex;

    .contact-left-col {
        width: 50%;
        padding: 40px;

        .section_title_text {
            font-size: 36px;
            line-height: 43px;
            font-weight: 600;
            margin-bottom: 30px;

            span {
                color: #007b8e;
            }
        }

        .form-group {
            margin-bottom: 16px;
            .contact-input-field {
                width: 100%;
                border: 0;
                outline: 0;
                background-color: white;
                color: #4e4e4d;
                font-weight: 400;
                font-size: 16px;
                line-height: 19px;
                padding: 16px 20px;
            }
        }

        #submit-wrapper-contactForm {
            padding-top: 50px;

            .contact-submit-btn {
                background-color: #007b8e;
                color: white;
                padding: 13px 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                font-size: 18px;
                line-height: 22px;
                font-weight: 500;
                border: 1px solid transparent;
                transition: all 0.3s ease;

                &::after {
                    content: "";
                    background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7 17L17 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M7 7H17V17' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
                    width: 24px;
                    height: 24px;
                }

                &:hover {
                        background-color: #ffffff;
                        color: #007b8e;
                        border: 1px solid #007b8e;

                        &::after {
                            background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7 17L17 7' stroke='%23007b8e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M7 7H17V17' stroke='%23007b8e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
                        }
        }
            }
        }
    }
    .contact-right-col {
        width: 50%;
        padding: 40px;

        .map-wrapper {
            position: relative;
            padding-top: 56.2%;

            iframe {
                border: 0;
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        .contact-field-details {
            display: flex;
            flex-direction: column;
            gap: 13px;
            margin-top: 58px;

            .contact-fields {
                display: flex;
                align-items: center;
                gap: 18px;

                span {
                    background: rgba(0, 0, 0, 0.1);
                    color: black;
                    padding: 7px;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    svg {
                        width: 24px;
                        height: 24px;
                    }
                }

                a {
                    color: #000;
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 19px;
                }
            }
        }
    }
}

@media only screen and (max-width: 1024px) {
    .contact-us-container {
        flex-direction: column;
        .contact-left-col {
            width: 100%;
        }
        .contact-right-col {
            width: 100%;
        }
    }
}

@media only screen and (max-width: 768px) {
    .contact-us-container {
        .contact-left-col {
            padding: 0;
            padding-bottom: 20px;

            .section_title_text{
                font-size: 30px;
                line-height: 34px;
            }
            #submit-wrapper-contactForm{
                padding-top: 20px;

                .contact-submit-btn{
                    font-size: 16px;
                    line-height: 19px;
                    padding: 10px 20px;
                    border: 1px solid transparent;
                     transition: all 0.3s ease;
                }
            }
        }
        .contact-right-col {
            padding: 0;
            padding-bottom: 20px;

            .contact-field-details{
                margin-top: 30px;
            }
        }
    }
}

.download_brochure {
    background: #e0f2fe; /* light blue */
    border-left: 4px solid #0284c7; /* strong blue accent */
    color: #075985; /* darker blue text */
    padding: 16px 20px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* subtle depth */
}
.download_brochure p {
    margin: 0;
    font-weight: 500;
}

.contact-submit-btn:hover {
    background-color: #ffffff !important;
    color: #007b8e !important;
    border: 1px solid #007b8e !important;
}
