/* --- Gyorshívás lebegő ikon --- */
.quick-call {
    position: fixed;
    bottom: 110px; /* az üzenet ikon fölött */
    right: 25px;
    z-index: 999;
}

.call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    background-color: #28a745; /* zöld */
    color: white;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    background-color: #2ecc71; /* világosabb zöld */
}
