/* === FOOTER CSS — exact from style.css === */
.corporate-footer {
    background: #0f172a;
    color: #f8fafc;
    padding: 120px 40px 60px;
    margin-top: 0;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.corporate-footer-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.corporate-footer-left {
    width: 320px;
    flex-shrink: 0;
}

.corporate-footer-left .logo {
    color: #ffffff;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -2px;
    margin-bottom: 40px;
    display: block;
}

.corporate-footer-left p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #f8fafc;
}

.corporate-footer-left p.sub {
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 24px;
}

.corporate-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 15px;
    color: #e2e8f0;
}

.corporate-contact-item .icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-footer-navs {
    display: flex;
    gap: 80px;
    flex-grow: 1;
    justify-content: flex-end;
}

.corporate-nav-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #f8fafc;
}

.corporate-nav-col ul {
    list-style: none;
}

.corporate-nav-col ul li {
    margin-bottom: 20px;
}

.corporate-nav-col ul a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.corporate-nav-col ul a:hover {
    color: #ffffff;
}

@media(max-width: 980px) {
    .corporate-footer-grid {
        flex-direction: column;
    }
    .corporate-footer-left {
        width: 100%;
    }
    .corporate-footer-navs {
        justify-content: flex-start;
        gap: 32px;
        flex-wrap: wrap;
    }
}

.footer-lighting-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

#lightings {
    bottom: -100px;
    position: absolute;
    width: 100%;
}

#lightings section {
    border-radius: 50%;
    height: 20px;
    width: 100%;
    position: relative;
    margin: auto;
}

/* ANIMATIONS */
#one { animation: one-glow 5s ease-in-out infinite alternate; }
#two { width: 90%; animation: two-glow 4s ease-in-out infinite alternate; }
#three { width: 80%; animation: three-glow 3s ease-in-out infinite alternate; }
#four { width: 70%; animation: four-glow 2s ease-in-out infinite alternate; }
#five { width: 60%; animation: five-glow 1s ease-in-out infinite alternate; }

@keyframes one-glow {
    from { box-shadow: 0 0 250px 20px #473C78; }
    to { box-shadow: 0 0 100px 15px #F72A3B; }
}

@keyframes two-glow {
    from { box-shadow: 0 0 250px 20px #18C499; }
    to { box-shadow: 0 0 100px 15px #D8F05E; }
}

@keyframes three-glow {
    from { box-shadow: 0 0 250px 20px #FFDD00; }
    to { box-shadow: 0 0 100px 15px #3E33FF; }
}

@keyframes four-glow {
    from { box-shadow: 0 0 250px 20px #781848; }
    to { box-shadow: 0 0 100px 15px #F2BBE9; }
}

@keyframes five-glow {
    from { box-shadow: 0 0 250px 20px #42F2A1; }
    to { box-shadow: 0 0 100px 15px #F4F6AD; }
}
