/* Footer Styles */
.footer {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%), 
                url('../image/footer-background.png') center/cover;
    background-attachment: fixed;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(30, 58, 138, 0.1);
        pointer-events: none;
    }
    
    .footerContainer {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 50px;
        position: relative;
        z-index: 1;
        
        .footerContent {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            
            .footerSection {
                h3 {
                    font-size: 1.5rem;
                    color: #bfdbfe;
                    margin-bottom: 16px;
                    font-family: 'Comfortaa', cursive;
                }
                
                h4 {
                    font-size: 1.2rem;
                    color: white;
                    margin-bottom: 16px;
                    font-family: 'Comfortaa', cursive;
                }
                
                p {
                    color: #cbd5e1;
                    margin-bottom: 8px;
                    line-height: 1.6;
                    
                    &:last-child {
                        margin-bottom: 0;
                    }
                }
                
                ul {
                    li {
                        margin-bottom: 8px;
                        
                        &:last-child {
                            margin-bottom: 0;
                        }
                        
                        a {
                            color: #cbd5e1;
                            transition: color 0.3s ease;
                            
                            &:hover {
                                color: #bfdbfe;
                            }
                        }
                    }
                }
            }
        }
        
        .footerBottom {
            padding-top: 20px;
            border-top: 1px solid rgba(191, 219, 254, 0.3);
            text-align: center;
          margin-bottom: 40px;
            
            p {
                color: #cbd5e1;
                font-size: 0.9rem;
            }
        }
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        
        .footerContainer {
            padding: 0 16px;
            
            .footerContent {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
        }
    }
}