/* Footer Styles */
.footer {
    background-color: rgba(10, 25, 47, 0.8);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-image {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    background-color: transparent;
}

.footer-description {
    color: var(--text);
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(10, 25, 47, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--yellow);
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text);
    padding: 12px 15px;
    background-color: rgba(10, 25, 47, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    background-color: rgba(244, 227, 76, 0.1);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--yellow);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

.footer-contact a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: rgba(244, 227, 76, 0.1);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    color: var(--yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    visibility: visible !important;
    opacity: 1 !important;
}

.social-link:hover {
    background-color: var(--yellow);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(244, 227, 76, 0.3);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(100, 255, 218, 0.2);
    color: var(--text);
    opacity: 0.8;
    font-size: 0.9rem;
    background-color: rgba(2, 4, 6, 0.3);
    border-radius: 8px;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}