
.hotengine-ve-contacts-style-4 {

    --ve-cont4-text: var(--ve-cont4-text-dynamic, #ffffff);
    --ve-cont4-bg: #111111;
    
    padding: 40px 20px;
    background: var(--ve-cont4-bg);
    color: var(--ve-cont4-text);
    font-family: sans-serif;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    box-sizing: border-box;
}


.hotengine-ve-darkmode.hotengine-ve-contacts-style-4,
.hotengine-ve-darkmode .hotengine-ve-contacts-style-4 {
    --ve-cont4-bg: #111111;

    --ve-cont4-text: var(--ve-block-text-color, #ffffff);
}

.hotengine-ve-contacts-style-4 .ve-contact-box {
    box-sizing: border-box;
}

.hotengine-ve-contacts-style-4 .ve-box-label {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ve-cont4-accent, #ffcc00);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.hotengine-ve-contacts-style-4 .ve-link-contact {
    color: var(--ve-cont4-text);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.hotengine-ve-contacts-style-4 .ve-link-contact:hover {
    color: var(--ve-cont4-accent, #ffcc00) !important;
    padding-left: 5px;
}

.hotengine-ve-contacts-style-4 .ve-social-flex {
    display: flex;
    gap: 15px;
}

.hotengine-ve-contacts-style-4 .ve-social-icon {
    background: #ffffff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hotengine-ve-contacts-style-4 .ve-social-icon img {
    width: 20px; 
    height: 20px;
    display: block;
}

.hotengine-ve-contacts-style-4 .ve-social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--ve-cont4-accent-alpha);
}

.hotengine-ve-darkmode.hotengine-ve-contacts-style-4 .ve-box-label { color: #ffffff !important; }
.hotengine-ve-darkmode.hotengine-ve-contacts-style-4 .ve-link-contact:hover {color: #ffffff !important;

@media (max-width: 768px) {
    .hotengine-ve-contacts-style-4 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 15px;
        gap: 40px;
    }
    .hotengine-ve-contacts-style-4 .ve-contact-box {
        width: 100%;
    }
    .hotengine-ve-contacts-style-4 .ve-social-flex {
        justify-content: center;
    }
    .hotengine-ve-contacts-style-4 .ve-link-contact {
        font-size: 18px;
        margin-bottom: 12px;
    }
}