@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
    --f-primary: #1AFFC6;
    --f-secondary: #FFD700;
    --f-bg: rgba(1, 2, 6, 0.98);
    --f-text: #ffffff;
    --f-text-dim: rgba(255, 255, 255, 0.7);
    --f-border: rgba(26, 255, 198, 0.15);
}

.footer {
    background: var(--f-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid var(--f-border);
    padding: 100px 5% 40px;
    color: var(--f-text);
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--f-primary), transparent);
    opacity: 0.4;
    box-shadow: 0 0 20px var(--f-primary);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Brand Section */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.university-badge {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.university-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--f-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.university-badge img {
    display: block;
    max-width: 100%;
    height: auto;
    filter: brightness(1.1);
}

.footer__logo {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, var(--f-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer__logo span {
    color: var(--f-secondary);
    -webkit-text-fill-color: var(--f-secondary);
}

.footer__tagline {
    font-size: 15px;
    color: var(--f-text-dim);
    line-height: 1.6;
    letter-spacing: 0.5px;
    max-width: 320px;
}

/* Common Titles */
.footer__title {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    color: var(--f-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    position: relative;
    width: fit-content;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--f-primary);
}

/* Contact Section */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.footer__contact-item i {
    color: var(--f-primary);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer__contact-item a {
    color: var(--f-text-dim);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer__contact-item:hover a {
    color: var(--f-primary);
}

.footer__contact-item:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--f-primary);
}

/* Socials Section */
.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.social-links .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links .social-link i {
    color: inherit;
    transition: all 0.3s ease;
}

/* Specific Hover Fix */
.social-links .social-link:hover {
    background: #1AFFC6 !important;
    color: #010206 !important;
    transform: translateY(-8px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(26, 255, 198, 0.4);
    border-color: #1AFFC6 !important;
}

.social-links .social-link:hover i {
    color: #010206 !important;
}

.footer__org {
    margin-top: 10px;
}

.footer__org p {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    color: var(--f-text);
}

.footer__org span {
    font-size: 13px;
    color: var(--f-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Bottom */
.footer__bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--f-text-dim);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer__bottom-links {
    display: flex;
    gap: 30px;
}

.footer__bottom-links a {
    color: var(--f-text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.footer__bottom-links a:hover {
    color: var(--f-primary);
}

#year {
    color: var(--f-primary);
    font-weight: 700;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 20px 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer__bottom-links {
        justify-content: center;
    }
}
