.fct-contact-tiles {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px;
    background: #fff;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.fct-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.fct-phone {
    background-color: #007bff;
}

.fct-whatsapp {
    background-color: #25d366;
}

.fct-icon {
    font-size: 24px;
    margin-right: 8px;
}

.fct-text {
    font-size: 16px;
    font-weight: bold;
}

@media (min-width: 768px) {
    .fct-contact-tiles {
        flex-direction: column;
        bottom: 20px;
        right: 20px;
        left: auto;
        width: auto;
        background: none;
        box-shadow: none;
    }

    .fct-tile {
        margin-bottom: 10px;
        flex: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .fct-icon {
        margin-right: 0;
        font-size: 30px;
    }

    .fct-text {
        display: none;
    }

    .fct-tile:hover {
        opacity: 0.9;
    }
}