.icon {
    height: 1.8rem;
    width: 1.8rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #f4f5f7;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.card-body:hover .icon {
    background-color: #d5d5d5;
    transform: scale(1.1);
}

.quick-contact-btn {
    background-color: rgba(255, 255, 255, 0.08);
    /* Transparenta subtila */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

/* Patratul alb pentru iconita */
.icon-square-white {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-icon {
    width: 20px;
    height: 20px;
    /* Daca iconita SVG este alba, folosim filter: invert ca sa o facem neagra pe fundal alb */
    filter: brightness(0);
}

/* Helper pentru text secundar */
.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}