/* ================= FLOATING FAB ================= */
.floating-wrap{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:999;
}

.fab{
    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    font-size:22px;
    color:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
}

.main-fab{
    background:#2563eb;
}

.ig-fab{
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
    text-decoration:none;
    position:absolute;
    bottom:0;
    right:0;
    opacity:0;
    transform:scale(0);
}

.saran-fab{
    background:#16a34a;
    position:absolute;
    bottom:0;
    right:0;
    opacity:0;
    transform:scale(0);
}

.floating-wrap.active .ig-fab{
    bottom:70px;
    opacity:1;
    transform:scale(1);
}

.floating-wrap.active .saran-fab{
    bottom:140px;
    opacity:1;
    transform:scale(1);
}

.fab:hover{
    transform:scale(1.1);
}

/* ================= MODAL SARAN ================= */
.saran-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.4);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:1000;
}

.saran-box{
    background:#fff;
    width:90%;
    max-width:380px;
    border-radius:18px;
    padding:25px;
    animation:pop .4s ease;
}

@keyframes pop{
    from{transform:scale(.7);opacity:0}
    to{transform:scale(1);opacity:1}
}

.saran-box h3{
    margin:0 0 15px;
    text-align:center;
}

.saran-box textarea{
    width:100%;
    height:120px;
    padding:12px;
    border-radius:10px;
    border:1px solid #ddd;
    resize:none;
}

.saran-action{
    display:flex;
    justify-content:space-between;
    margin-top:15px;
}

.saran-action button{
    flex:1;
    padding:10px;
    border:none;
    border-radius:25px;
    font-weight:600;
    cursor:pointer;
}

.saran-action .cancel{
    background:#e5e7eb;
    margin-right:10px;
}

.saran-action .send{
    background:#2563eb;
    color:#fff;
}
.ig-fab::after{
    content:"Follow Instagram";
    position:absolute;
    right:70px;
    background:#111827;
    color:#fff;
    font-size:12px;
    padding:6px 10px;
    border-radius:6px;
    opacity:0;
    white-space:nowrap;
    transition:.3s ease;
    pointer-events:none;
}

.ig-fab:hover::after{
    opacity:1;
    right:65px;
}
.saran-box input{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border-radius:10px;
    border:1px solid #ddd;
}

