/* Floating Contact Buttons */
.contact-float {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.contact-float .item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-float .item:hover {
    transform: scale(1.1);
}

.contact-float .item span {
    display: none;
}

.contact-float .call { background: #f57c00; }
.contact-float .whatsapp { background: #25D366; }
.contact-float .message { background: #5a8f1b; }
.contact-float .inquiry { background: #5a8f1b; }

@@media (max-width: 768px) {
    .contact-float {
        flex-direction: row;
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        transform: none;
        width: 100%;
        background: #5a8f1b;
        gap: 0;
    }
    .contact-float .item {
        width: 33.33%;
        height: auto;
        border-radius: 0;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: none;
        font-size: 20px;
    }
    .contact-float .item span {
        display: block;
        font-size: 11px;
        margin-top: 3px;
        font-weight: 600;
    }
    body {
        padding-bottom: 60px;
    }
}
