/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #182848 0%, #4b6cb7 100%);
    color: white;
    position: relative;
    padding-top: 80px;
    margin-top: 100px;
}

.footer-wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.footer-section {
    padding: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #fff;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ff6b6b;
}

.footer-links li, .contact-info li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links a, .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover, .contact-info a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.footer-links i, .contact-info i {
    font-size: 0.8rem;
    color: #ff6b6b;
}

.social-media {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff6b6b;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.ndis-badge {
    margin-top: 30px;
}

.ndis-badge img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.ndis-badge img:hover {
    transform: scale(1.05);
}

.ndis-badge p {
    font-size: 0.9rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links, .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-media {
        justify-content: center;
    }
}