/* =========================================
   FLOATING QUOTE BUTTON
========================================= */

.quote-floating{
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 999;
}

.quote-floating a{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #57c666;
    color: #fff;
    padding: 16px 22px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    box-shadow:
    0 10px 30px rgba(87,198,102,.35);
    transition: .3s ease;
}

.quote-floating a:hover{
    transform: translateY(-4px);
    background: #49b458;
    box-shadow:
    0 14px 40px rgba(87,198,102,.45);
}

.quote-floating i{
    font-size: 1.1rem;
}

/* RESPONSIVE */

@media(max-width:768px){

    .quote-floating{
        right: 18px;
        bottom: 85px;
    }

    .quote-floating a{
        padding: 14px 18px;
        font-size: .88rem;
    }

}