/* ========================================================================
   Floating Contact Button
 ========================================================================== */

.leda-contact-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.leda-contact-btn {
    background: var(--leda-red);
    color: var(--leda-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(227, 0, 14, 0.3);
    transition: all 0.3s;
}

.leda-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(227, 0, 14, 0.4);
}

