/* Flying Mail Button */
.floating-mail-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #00b3a4;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Hover */
.floating-mail-btn:hover {
    background: #009688;
    color: #ffffff;
    text-decoration: none;
}

