/*
Theme Name: Blocksy Child
Theme URI: https://securevisionsolutions.ae
Description: Custom child theme for Blocksy
Author: Abid Hussain
Author URI: https://securevisionsolutions.ae
Template: blocksy
Version: 1.0.0
*/
/* SECURE VISION - AGGRESSIVE CSS OVERRIDES 
   These selectors are designed to beat Blocksy's default link behavior
*/

/* 1. Target links inside any footer widget area specifically */
.ct-footer .widget-area a,
.footer-widget-area a,
.ct-footer ul li a { 
    color: #f1f1f2 !important; 
    text-decoration: none !important; 
    transition: all 0.3s ease !important;
    display: inline-block !important; /* Required for transform to work */
}

/* 2. FORCED HOVER STATE */
/* We target the hover state specifically to ensure the blue appears */
.ct-footer .widget-area a:hover,
.footer-widget-area a:hover,
.ct-footer ul li a:hover,
.footer-widget-area ul li a:hover { 
    color: #069AE2 !important; /* Secure Vision Blue */
    padding-left: 8px !important;
    transform: translateX(2px) !important;
}

/* 3. Ensure the background stays dark tech-blue */
.ct-footer {
    background-color: #0A3D62 !important;
}

/* 4. Custom Widget Title Styling */
.footer-widget-title,
.ct-footer .widget-title { 
    color: #ffffff !important; 
    font-size: 1.1rem !important; 
    font-weight: 600 !important; 
    border-bottom: 1px solid rgba(255,255,255,0.1) !important; 
    padding-bottom: 8px !important; 
    margin-bottom: 16px !important; 
}

/* 5. WhatsApp Button fix to prevent it turning blue on hover */
.whatsapp-btn, 
.whatsapp-btn:hover {
    background-color: #25D366 !important;
    color: white !important;
    padding-left: 15px !important;
    transform: scale(1.05) !important;
}