/* --- 1. GLOBAL RESET & UNDERLINE KILLER --- */
a, a:hover, a:active, a:focus, .footer-specific-call-btn, .contact-item a {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* --- 2. FOOTER CORE (80px bottom = 30px original + 50px requested) --- */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 80px; 
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; 
    gap: 45px;
    text-align: center;
}

/* --- 3. LOGO & SHARE (CENTERING FIX) --- */
.footer-center-logo { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.footer-share-wrapper { 
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    margin-bottom: 35px;
    width: 100%;
}

.share-magic-svg { 
    display: block !important;
    width: 120px !important; 
    height: auto; 
    margin: 0 auto 15px !important; 
}

.share-magic-text { 
    display: block; 
    color: #ffffff; 
    font-size: 16px; 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    font-weight: bold; 
}

.footer-main-logo-link img { max-width: 300px; height: auto; }

/* --- 4. NAVIGATION --- */
.footer-links { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.footer-links a { color: #ffffff; font-size: 22px; font-weight: bold; }
.footer-dot { display: none; }

/* --- 5. CONTACT INFO --- */
.footer-heading, .social-title { text-transform: uppercase; color: #cc0033; letter-spacing: 3px; font-size: 20px; font-weight: bold; margin: 20px 0 10px; }
.hq-text { font-size: 15px; line-height: 1.6; opacity: 0.9; margin-bottom: 25px; }
.contact-item { color: #ffffff; font-size: 18px; margin: 8px 0; display: block; }
.contact-item a { color: #ffffff !important; display: inline; }

/* --- 6. CALL NOW BUTTON --- */
.footer-call-wrapper { margin-top: 45px !important; }

.footer-specific-call-btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px;
    background-color: transparent !important; 
    color: #ffffff !important; 
    padding: 12px 35px; 
    border: 2px solid #ffffff !important; 
    border-radius: 8px; 
    text-transform: uppercase; 
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.footer-specific-call-btn:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.footer-shake-icon { width: 24px; height: auto; animation: footerIconShake 0.5s infinite ease-in-out; }

@keyframes footerIconShake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

/* --- 7. SOCIALS & BOTTOM --- */
.footer-social-section { margin-top: 40px; text-align: center; }
.social-icons-row { display: flex; justify-content: center; gap: 20px; }
.social-icon-img { width: 40px; height: 40px; cursor: pointer; }
.footer-bottom { text-align: center; margin-top: 40px; font-size: 14px; opacity: 0.6; }

@media (min-width: 768px) {
    .footer-links { flex-direction: row; justify-content: center; gap: 20px; }
    .footer-dot { display: inline; color: #cc0033; }
}