/* Floating Contact Buttons Container */
.floating-contact-buttons {
    position: fixed;
    right: 4px;
    top: 25%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* Floating Contact Button */
.floating-contact-button {
    width: 56px;
    height: 56px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Email button - blue on hover only */
.floating-contact-button-email:hover {
    background-color: var(--iux-color-primary, #0078d4);
}

/* Phone button - green on hover only */
.floating-contact-button-phone:hover {
    background-color: #28a745;
}

.floating-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.15);
}

.floating-contact-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.1);
}

.floating-contact-button .material-icons {
    font-size: 28px;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-contact-buttons {
        right: 16px;
        bottom: 16px;
        gap: 8px;
    }
    
    .floating-contact-button {
        width: 48px;
        height: 48px;
    }
    
    .floating-contact-button .material-icons {
        font-size: 24px;
    }
}
