﻿

.contact-wrapper {
    max-width: 1280px;
    margin: auto;
    
    display: flex;
    min-height: 700px;
}

.image-side {
    width: 42%;
    position: relative;
    overflow: hidden;
}

    .image-side img {
       
        height: 100%;
        object-fit: cover;
    }

    .image-side .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(255,133,67,.55) 0%, rgba(255,255,255,.85) 100% );
    }

.info-side {
    width: 58%;
    padding: 22px;
}

.info-card {
    background: #f8efea;
    border-radius: 14px;
    min-height: 102px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    margin-bottom: 18px;
}

    .info-card.active {
        background: #dfe2eb;
    }

    .info-card .icon {
        width: 72px;
        min-width: 72px;
        text-align: center;
    }

        .info-card .icon i {
            font-size: 25px;
            color: #efc3a8;
        }

    .info-card.active .icon i {
        color: #11b394;
    }

.content {
    flex: 1;
    text-align: right;
}

    .content h3 {
        color: #303030;
        font-size: 18px;
        margin-bottom: 6px;
        font-weight: 700;
    }

    .content p {
        color: #33425c;
        font-size: 18px;
        margin-bottom: 6px;
    }

    .content span {
        color: #4f5663;
        font-size: 18px;
    }

.warning {
    display: block;
    margin-top: 8px;
    color: #cb5314 !important;
    font-weight: 600;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 40px;
}

    .socials a {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #f8efea;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .socials i {
        font-size: 26px;
        color: #8a3f0f;
    }

    .socials a:last-child i {
        color: #11b394;
    }

@media(max-width:992px) {

    .contact-wrapper {
        flex-direction: column;
    }

    .image-side,
    .info-side {
        width: 100%;
    }

    .image-side {
        height: 450px;
    }

    .content h3 {
        font-size: 18px;
    }

    .content p {
        font-size: 18px;
    }

    .content span {
        font-size: 15px;
    }
}
