﻿.contact-section {
    background: linear-gradient(to right, #6edaff 50%, #fff 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    margin-top: 7rem;
}

.contact-container {
    width: 90%;
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-left,
.contact-right {
    flex: 1 1 500px;
    padding: 40px;
}

.contact-left {
    background: #f9f9f9;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.contact-left-title {
    font-size: 3rem;
    color: #0a3fa4;
    margin-bottom: 10px;
}

    .contact-left-title span {
        color: #f46300;
    }

.contact-left-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-form-group {
    margin-bottom: 15px;
}

    .contact-form-group input,
    .contact-form-group textarea {
        width: 100%;
        border: none;
        border-bottom: 1px solid #aaa;
        padding: 8px 4px;
        font-size: 14px;
        outline: none;
        resize: none;
        background: transparent;
    }

.contact-form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .contact-form-check label {
        font-size: 13px;
        color: #555;
        margin-left: 8px;
    }

.contact-submit-btn {
    background: #0a3fa4;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

    .contact-submit-btn:hover {
        background: #072c7a;
    }

/* Right Side */
.contact-right {
    background: #f46300;
    color: #fff;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.contact-right-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-right-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-map iframe {
    border-radius: 10px;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 20px;
}



.contact-socials {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

    .contact-socials i {
        color: white;
        font-size: 20px;
        transition: 0.3s;
        cursor: pointer;
    }

        .contact-socials i:hover {
            opacity: 0.8;
        }

.contact-note {
    font-size: 14px;
    margin-top: 15px;
    font-weight: 400;
    color: #0a3fa4;
    text-align: center;
}


.all-err {
    margin-top: 10px;
    margin-bottom: 10px;
}

.error-message {
    color: red;
    font-size: 0.9rem;
    margin-top: 4px;
    text-align: center;
}


/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        border-radius: 0;
    }

    .contact-section {
        background: #fff;
    }

    .contact-right {
        border-top: 2px solid #fff;
    }
}



@media (max-width: 375px) {

    .contact-left,
    .contact-right {
        padding: 20px;
    }
}
