/* ===== FOOTER STYLES ===== */

/* Target footer by ID to be more specific */
#main-footer {
    display: flex !important;
    justify-content: center !important;
    margin-top: 30px !important;
    padding: 0 20px 14px !important;
    background: transparent !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* SPECIFICALLY TARGET FOOTER CONTAINER */
#main-footer .footer-inner {
    background: white !important;
    color: #1a1a1a !important;
    max-width: 800px !important;
    width: 100% !important;
    padding: 22px 36px !important;
    border-radius: 20px !important;
    text-align: center !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.5) inset !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    display: block !important;
}

/* Update the copyright text specifically */
#main-footer .footer-copy {
    color: #111827 !important;
    font-size: 0.9rem !important;
    margin-top: 18px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

/* Adjust social buttons spacing */
#main-footer .social-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    margin: 25px 0 30px !important;
    flex-wrap: wrap !important;
    position: relative !important;
}

/* Make social buttons slightly smaller */
#main-footer .svg-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.1) inset !important;
    min-width: 140px !important;
    height: 52px !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
}

/* Adjust footer title */
#main-footer .footer-title {
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    color: #1a1a1a !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    display: inline-block !important;
    padding: 0 15px !important;
    text-align: center !important;
}

/* Add the sparkle emojis */
#main-footer .footer-title::before {
    content: '✨' !important;
    position: absolute !important;
    left: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1rem !important;
    animation: sparkle 2s ease-in-out infinite !important;
}

#main-footer .footer-title::after {
    content: '✨' !important;
    position: absolute !important;
    right: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1rem !important;
    animation: sparkle 2s ease-in-out infinite !important;
    animation-delay: 1s !important;
}

/* Platform Background Colors - Force with !important */
#main-footer .svg-button.facebook {
    background: #3b5998 !important;
    border-color: #3b5998 !important;
}

#main-footer .svg-button.x {
    background: #000000 !important;
    border-color: #000000 !important;
    font-size: 1.15rem !important;
    letter-spacing: 1px !important;
}

#main-footer .svg-button.whatsapp {
    background: #25d366 !important;
    border-color: #25d366 !important;
}

#main-footer .svg-button.linkedin {
    background: #0077b5 !important;
    border-color: #0077b5 !important;
}

/* Stylish hover effect */
#main-footer .svg-button::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.35)
    ) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 1 !important;
}

#main-footer .svg-button:hover::before {
    opacity: 1 !important;
}

#main-footer .svg-button:hover {
    transform: translateY(-3px) scale(1.06) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
}

/* Add sparkle animation */
@keyframes sparkle {
    0%, 100% { 
        opacity: 1 !important;
        transform: translateY(-50%) scale(1) !important;
    }
    50% { 
        opacity: 0.5 !important;
        transform: translateY(-50%) scale(0.9) !important;
    }
}

/* IMPORTANT: Reset any potential overrides from other CSS */
#main-footer * {
    box-sizing: border-box !important;
}

#main-footer .footer-inner * {
    box-sizing: border-box !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure social buttons are properly displayed */
@media (max-width: 768px) {
    #main-footer .social-buttons {
        gap: 10px !important;
    }
    
    #main-footer .svg-button {
        min-width: 120px !important;
        height: 48px !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    #main-footer .footer-title::before,
    #main-footer .footer-title::after {
        display: none !important; /* Hide sparkles on mobile for better spacing */
    }
}
/* ===== STRONG TAG STYLES FOR FOOTER ===== */

/* Add blue color and underline effect to strong tags in footer */
#main-footer strong {
    color: #1e40af !important;
    font-weight: 700 !important;
    position: relative !important;
    display: inline-block !important;
}

#main-footer strong::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, #2563eb, transparent) !important;
    border-radius: 1.5px !important;
    transform: scaleX(0) !important;
    transition: transform 0.3s ease !important;
}

#main-footer strong:hover::after {
    transform: scaleX(1) !important;
}

/* Specifically for footer title strong tag */
#main-footer .footer-title strong {
    color: #1e40af !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: none !important;
}

#main-footer .footer-title strong::after {
    background: linear-gradient(90deg, #2563eb, transparent) !important;
}