/* Floating phone button */
.floating-phone-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 10000;
}

.floating-phone-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-phone-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.floating-phone-button .phone-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.floating-phone-button .phone-number {
    font-weight: 600;
    white-space: nowrap;
}

/* Compact variant on very small screens */
@media (max-width: 500px) {
    .floating-phone-button a {
        width: 60px;
        height: 60px;
        padding: 0;
        text-align: center;
        justify-content: center;
    }
    .floating-phone-button .phone-number {
        font-size: 14px;
    }
    .floating-phone-button .phone-number {
        display: none;
    }
}
