/* Mobile Links  */
.mobile-link {
    @apply block py-3 px-4 text-gray-800 font-semibold rounded-lg hover:bg-gray-100 transition-colors;
}
.mobile-accordion {
    @apply border rounded-lg overflow-hidden mb-2;
}
.mobile-accordion-btn {
    @apply w-full flex justify-between items-center py-3 px-4 text-gray-800 font-semibold hover:bg-gray-50;
}
.mobile-accordion-content {
    @apply border-t bg-gray-50;
}
.mobile-accordion-content a {
    @apply block py-2 px-6 text-gray-700 hover:bg-gray-100 hover:text-blue-600;
}

/* WhatsApp Icon */
 .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}