/* تنظیم سایز فونت پیش‌فرض */
html {
    font-size: 14px;
}

body {
    font-size: 14px;
}

/* استایل دکمه برو به بالا */
#scroll-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0d6efd;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#scroll-top:hover {
    background-color: #0b5ed7;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#scroll-top:active {
    transform: translateY(-1px);
}

#scroll-top i {
    line-height: 1;
}

/* استایل دکمه شناور واتساپ */
#whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    animation: whatsapp-pulse 2s infinite;
}

#whatsapp-float:hover {
    background-color: #20BA5A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

#whatsapp-float:active {
    transform: translateY(-3px) scale(1.05);
}

#whatsapp-float i {
    line-height: 1;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* تنظیم فاصله بین دکمه‌ها در موبایل */
@media (max-width: 768px) {
    #scroll-top {
        bottom: 50px; /* بالاتر از دکمه واتساپ */
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    #whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    #whatsapp-float i {
        font-size: 24px !important;
    }
}

