/* ========================================
   ANSWER ELECTRIC FOOTER STYLES - DARK THEME
   ======================================== */

/* Footer Base Styles */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Footer Logo */
.footer-logo {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.youtube:hover {
    background: #ff0000;
}

.social-link.instagram:hover {
    background: #e4405f;
}

.social-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-link.disabled:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: none;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-link:hover {
    color: white;
    padding-left: 8px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #fbbf24;
}

.footer-link:hover::before {
    opacity: 1;
    left: -12px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: white;
    text-decoration: underline;
}

/* CTA Message */
.cta-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

/* Footer Divider */
.border-secondary {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .cta-message {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        max-width: 120px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .cta-message {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}