/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 150px;
    right: 10px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulse-1 2s infinite;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.7);
}
.icon-whatsapp{
 font-size: 32px !important;
    color: white !important;
}

/* Pulse animation for the WhatsApp icon */
@keyframes pulse-1 {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 10px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
    }
    
    .icon-whatsapp {
        font-size: 28px;
    }
}
@media (max-width: 576px) {
    .whatsapp-float {
        right: 15px;
        bottom: 10px;
        width: 55px;
        height: 55px;
    }
    
    .icon-whatsapp {
        font-size: 28px
    }
}
/* Floating Phone Button */
.floating-phone {
    position: fixed;
    right: 10px;
    bottom: 80px;
    width: 60px;
    height: 60px;
    background: #4a48a7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(13, 218, 255, 0.4);
    z-index: 1000;
    transition: all 0.7s ease;
    animation: pulse-2 2s infinite;
}

.floating-phone:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(105, 110, 184, 0.6);
}

.floating-phone i {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.floating-phone:hover i {
    transform: rotate(-180deg);
}

/* Pulse Animation */
@keyframes pulse-2 {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 218, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(13, 218, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 218, 255, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-phone {
        right: 20px;
        bottom: 70px;
        width: 55px;
        height: 55px;
    }
    
    .floating-phone i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .floating-phone {
        right: 15px;
        bottom: 70px;
        width: 50px;
        height: 50px;
    }
    
    .floating-phone i {
        font-size: 1.2rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(13, 218, 255, 0.3);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(13, 218, 255, 0.5);
}

.back-to-top i {
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        bottom: 130px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        right: 15px;
        bottom: 130px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top i {
        font-size: 1.1rem;
    }
}