.hotengine-ve-contacts-style-11 {
    padding: 100px 20px;
    background: #0f172a;
    font-family: sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

.hotengine-ve-contacts-style-11 .ve-glow-box {
    max-width: 900px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 40px;
    padding: 50px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
}

.hotengine-ve-contacts-style-11 .ve-glow-box::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--ve-cont11-accent), transparent, var(--ve-cont11-accent));
    border-radius: 42px;
    z-index: -1;
    opacity: 0.3;
}

.hotengine-ve-contacts-style-11 .ve-content-side {
    flex: 1;
}

.hotengine-ve-contacts-style-11 .ve-info-unit { 
    margin-bottom: 25px; 
}

.hotengine-ve-contacts-style-11 .ve-label { 
    color: var(--ve-cont11-accent); 
    font-size: 12px; 
    font-weight: 800; 
    text-transform: uppercase; 
    margin-bottom: 5px; 
}

.hotengine-ve-contacts-style-11 .ve-value { 
    color: #fff; 
    font-size: 18px; 
    font-weight: 500; 
}

.hotengine-ve-contacts-style-11 .ve-contacts-row {
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    gap: 30px; 
    margin-top: 30px;
}

.hotengine-ve-contacts-style-11 .ve-main-phone {
    color: #fff; 
    text-decoration: none; 
    font-size: 24px; 
    font-weight: 800; 
    white-space: nowrap;
}

.hotengine-ve-contacts-style-11 .ve-messengers { 
    display: flex; 
    gap: 15px; 
    align-items: center; 
}

.hotengine-ve-contacts-style-11 .ve-messenger-link {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.hotengine-ve-contacts-style-11 .ve-messenger-link img { 
    width: 32px;
    border-radius: 20%;
}

.hotengine-ve-contacts-style-11 .ve-messenger-link:hover {
    transform: scale(1.2);
}

.hotengine-ve-contacts-style-11 .ve-circle-btn {
    width: 140px;
    height: 140px;
    background: var(--ve-cont11-accent);
    border-radius: 50%;
    border: none;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    padding: 20px;
    box-shadow: 0 0 30px var(--ve-cont11-accent-alpha);
    box-sizing: border-box;
}

.hotengine-ve-contacts-style-11 .ve-circle-btn:hover {
    transform: rotate(-15deg) scale(1.1);
    box-shadow: 0 0 50px var(--ve-cont11-accent);
}

.hotengine-ve-darkmode.hotengine-ve-contacts-style-11 .ve-label { color: #ffffff !important; }


@media (max-width: 768px) {
    .hotengine-ve-contacts-style-11 .ve-glow-box { 
        flex-direction: column; 
        text-align: center; 
        padding: 40px 20px; 
    }
    .hotengine-ve-contacts-style-11 .ve-circle-btn { 
        width: 100px; 
        height: 100px; 
        font-size: 12px; 
    }
    .hotengine-ve-contacts-style-11 .ve-contacts-row {
        justify-content: center;
    }
    .hotengine-ve-contacts-style-11 .ve-messengers { 
        justify-content: center; 
    }
}