.section-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    border-radius: 2px;
}

.footer-section {
    padding: 40px 20px 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 112, 243, 0.05) 100%);
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.footer-brand p {
    color: #64d2ff;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 112, 243, 0.2) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0070f3 100%);
    border-color: #00d4ff;
    color: #000428;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

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

.footer-column ul li a {
    color: #64d2ff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: #64d2ff;
    font-size: 14px;
}

.footer-bottom p a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom p a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
