/* footer.css */
.global-footer {
    background-color: #0a1f3b;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px; /* Reduced from 150px */
    width: auto; /* Changed from 50px to auto to maintain aspect ratio */
    margin-bottom: 15px;
}

.logo-glass {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(12px);
    padding: 10px 15px; /* Added padding for better appearance */
    border-radius: 8px; /* Slightly larger radius */
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.logo-glass img {
    height: 40px; /* Reduced from 200px */
    width: auto; /* Changed from 50px to auto */
    display: block; /* Prevents extra space below image */
}

.footer-tagline {
    margin-top: 10px;
    font-style: italic;
    font-size: 0.9rem;
    color: #b0c4de;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.legal-links {
    margin-top: 25px;
}

.legal-links h4 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0 20px 0;
}

.copyright {
    color: #b0c4de;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .global-footer {
        padding: 30px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-section {
        min-width: 100%;
        margin-bottom: 25px;
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
    
    .footer-section h4 {
        margin-bottom: 12px;
    }
    
    .footer-section li {
        margin-bottom: 6px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .logo-glass img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .global-footer {
        padding: 25px 10px;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .logo-glass img {
        height: 30px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .logo-glass {
        padding: 8px 12px;
    }
}