/* =============================================
   FOOTER
============================================= */
.footer-new {
    background: #f0f0fa;
    padding-top: 80px;
    padding-bottom: 0;
    font-size: 14px;
    color: #374151;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;
    background: #1e2476;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.footer-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 1fr 0.6fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* BRAND COLUMN */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.footer-logo img {
    height: 40px;
    width: fit-content;
}

.footer-logo-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.footer-logo-text span {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    display: block;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #3b4bdf;
}

/* CONTACT */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #e8e8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: #3b4bdf;
    transform: translateY(-2px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-social a:hover img {
    filter: brightness(0) invert(1);
}

/* COPYRIGHT */
.footer-bottom {
    border-top: 1px solid #e2e2ee;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    font-size: 13px;
    color: #6b7280;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #3b4bdf;
}