/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    color: #ffffff !important;
    padding: 3rem 0 1rem 0 !important;
    margin-top: 4rem !important;
    border-top: 3px solid #4ecdc4 !important;
    /* Debug: Footer CSS loaded */
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4ecdc4;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin: 0.5rem 0;
    color: #cccccc;
    line-height: 1.6;
}

.footer-section a {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #4ecdc4;
    transform: translateX(5px);
}

/* Social Media */
.social-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.3);
}

.social-link svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.social-link span {
    font-size: 1.1rem;
}

/* Facebook specific color */
.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
}

.social-link.facebook:hover svg {
    color: #1877F2;
}

/* Instagram specific color */
.social-link.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(193, 53, 132, 0.2), rgba(131, 58, 180, 0.2));
    border-color: #E1306C;
}

.social-link.instagram:hover svg {
    color: #E1306C;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    color: #999999;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-media {
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        margin-top: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
    }
    
    .social-link svg {
        width: 28px;
        height: 28px;
    }
    
    .social-link span {
        font-size: 1rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem 0;
        margin-top: 2rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin: 0.4rem 0;
    }
    
    .social-media {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-link svg {
        width: 24px;
        height: 24px;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 1.5rem 0 1rem 0;
        margin-top: 1.5rem;
    }
    
    .footer-container {
        padding: 0 0.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .social-link {
        padding: 0.6rem;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .social-link span {
        font-size: 0.7rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

