﻿
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
.contact-info {
    position: relative;
    background: url('/images/system/contactus.jpg') no-repeat center/cover;
    padding: 25px;
    border-radius: 12px;
    color: #fff;
    overflow: hidden;
}

    .contact-info::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.9);
       
        z-index: 1;
    }

    .contact-info * {
        position: relative;
        z-index: 2;
    }


.contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.info-item {
    margin-bottom: 20px;
}

    .info-item h3 {
        margin: 0 0 5px;
        font-size: 18px;
    }

    .info-item p {
        margin: 0;
        color: #000000;
    }

.contact-button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: white;
    font-size: 17px;
    cursor: pointer;
}

    .contact-button:hover {
        background: #0b5ed7;
    }
