

#footer {
    font-family: 'Inter', Arial, sans-serif;
    box-sizing: border-box;
        margin-top: 15px;
        padding: 2rem;
}

.symposium-footer {
    background: #0F172A;
    color: #A1A1AA;
    padding: 40px 20px 20px 20px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 220px;
}

/* Brand Section */
.brand-section .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.brand-section .logo-icon {
    font-size: 34px;
    color: #7F5AF0;
    margin-right: 12px;
    text-shadow: 0 0 8px #7F5AF0;
}

.brand-section .brand-name {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 6px #7F5AF0;
}

.brand-section .brand-desc {
    margin: 14px 0 18px 0;
    line-height: 1.6;
    color: #A1A1AA;
}

.footer-tags {
    display: flex;
    gap: 12px;
}

.footer-tags .tag {
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #7f5af05d;
    color: #ffffff;
}

/* Quick Links & Social Links */
.quick-links-section h4,
.connect-section h4 {
    margin-bottom: 16px;
    color: #7F5AF0;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #A1A1AA;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: #7F5AF0;
    text-shadow: 0 0 8px #7F5AF0;
}

.footer-link-icon {
    vertical-align: middle;
    transition: color 0.3s ease;
}

/* Glossy Social Icons */
.social-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.social-list li a:hover {
    box-shadow: 0 0 12px currentColor;
}

.social-list li a.instagram-logo:hover {
    color: #E1306C;
}

.social-list li a.linkedin-logo:hover {
    color: #0077B5;
}

.social-list li a.website-logo:hover {
    color: #00FFAA;
}

.social-logo {
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26) 10%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.18), 0 1px 12px 0 rgba(64, 64, 64, 0.08);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #1E293B;
    margin-top: 36px;
    padding-top: 18px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.footer-policy-list {
    display: flex;
    gap: 16px;
    list-style: none;
}

.footer-policy-list a {
    color: #A1A1AA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-policy-list a:hover {
    color: #7F5AF0;
    text-shadow: 0 0 6px #7F5AF0;
}

/* Responsive */
@media (max-width: 820px) {
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.9rem;
    }

    .footer-policy-list {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 540px) {
    .symposium-footer {
        padding: 26px 8px 12px 8px;
        font-size: 0.95rem;
    }

    .brand-section .brand-name {
        font-size: 1.5rem;
    }
}