.live-chat {
    transition: transform 0.3s ease, opacity 0.3s ease;
    bottom: 5.5rem;
}
/* Consolidated Contact FAB */
.contact-fab-main {
    width: 3.5rem; height: 3.5rem; border-radius: 50%;
    background: var(--gold); color: #000; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 20px rgba(212,175,55,0.4);
    transition: transform 0.3s, background 0.3s;
}
.contact-fab-main:active { transform: scale(0.95); background: var(--gold-cream); }
.contact-fab-options {
    position: absolute; bottom: 4.25rem; right: 0;
    display: flex; flex-direction: column; gap: 0.5rem;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.contact-fab-options.show {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.fab-option {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--gray-900); border: 1px solid rgba(212,175,55,0.3);
    padding: 0.5rem 0.75rem; white-space: nowrap;
    color: #fff; text-decoration: none; font-size: 0.75rem;
    transition: background 0.3s; border-radius: 8px;
}
.fab-option:hover { background: rgba(212,175,55,0.15); }
.fab-whatsapp svg { color: #25D366; }
.fab-phone svg { color: var(--gold); }
.fab-text svg { color: #06B6D4; }
@media (max-width: 767px) {
    .live-chat { bottom: 4rem; }
}
