.footer-section {
    background: linear-gradient(145deg, #0a1a3a, #1E3A8A);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjE1LDAsMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.4;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand h3 i {
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--accent-lightblue);
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    color: var(--accent-gold);
    font-family: var(--secondry-font);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-col:hover .footer-heading::after {
    width: 60px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--accent-lightblue);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.event-info {
    list-style: none;
    padding: 0;
}

.event-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.event-info i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.event-info span {
    color: var(--accent-lightblue);
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.newsletter-form .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold-light));
    color: var(--pure-black);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.newsletter-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-icon {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--pure-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-icon:hover::before {
    left: 100%;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.badge-container .badge {
    background: rgba(0, 0, 0, 0.3);
    color: var(--accent-lightblue);
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-container .badge i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--accent-lightblue);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--accent-lightblue);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom .list-inline-item:not(:last-child) {
    margin-right: 1rem;
}

@media (max-width: 992px) {
    .footer-col {
        margin-bottom: 2.5rem;
    }
    
    .footer-brand {
        margin-bottom: 1.5rem;
    }
    
    .footer-heading {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 3rem;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.6rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
}