/*
 * Yewodze Enterprise - Contact Buttons Enhancement
 * Improves styling and functionality of contact buttons
 */

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366 !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.whatsapp-btn:hover {
    background-color: #128C7E !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Enhance Call Button */
.call-btn {
    background-color: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    transition: all 0.3s ease !important;
}

.call-btn:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Enhance Contact Button */
.contact-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-cta .mt-4 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-cta .btn {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
}
