/* ===============================
   NN FOOTER
================================= */

.nn-footer {
    position: relative;
    overflow: hidden;
    background-color: #050505;
    background-image: url('../images/footer_background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
    padding: 75px 0 20px;
}

.nn-footer::before,
.nn-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
}

.nn-footer .container {
    position: relative;
    z-index: 1;
}

.nn-footer-inner {
    display: grid;
    grid-template-columns: minmax(320px, 1.5fr) minmax(180px, 0.9fr) minmax(180px, 0.9fr) minmax(180px, 0.9fr);
    gap: 44px;
    align-items: start;
}

.nn-footer-brand {
    max-width: 430px;
}

.nn-footer-logo-wrap {
    display: inline-block;
    margin-bottom: 22px;
}

.nn-footer-logo {
    width: 268px;
    display: block;
}

.nn-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.nn-social-icons a,
.nn-footer-follow-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s ease;
}

.nn-social-icons a:hover,
.nn-footer-follow-icons a:hover {
    border-color: #e1251b;
    background: #e1251b;
    color: #ffffff;
}

.nn-subscribe-panel {
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nn-footer h5,
.nn-subscribe-title {
    margin: 0 0 18px !important;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nn-subscribe-panel p {
    margin: 0 0 14px !important;
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    line-height: 1.55;
}

.nn-subscribe-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nn-subscribe-box input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    outline: none;
}

.nn-subscribe-box input::placeholder {
    color: #858585;
}

.nn-subscribe-box button {
    height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.32);
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nn-subscribe-box button:hover {
    border-color: #e1251b;
    background: #e1251b;
}

.nn-footer-col {
    min-width: 0;
}

.nn-footer-col h5 {
    text-decoration: underline;
    letter-spacing: 0.08rem;
}

.nn-footer-col a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nn-footer-col a:hover {
    color: #ffffff;
}

.nn-footer-contact-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px !important;
}

.nn-footer-contact-item i {
    width: 18px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

.nn-footer-contact-item span {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
}

.nn-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 42px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nn-footer-follow {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nn-footer-follow span {
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nn-footer-follow-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nn-footer-follow-icons a {
    width: 24px;
    height: 24px;
    font-size: 11px;
}

.nn-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.nn-footer-links a {
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nn-footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .nn-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nn-footer-brand {
        max-width: none;
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .nn-footer {
        padding: 40px 0 18px;
    }

    .nn-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .nn-subscribe-box {
        flex-direction: column;
        align-items: stretch;
    }

    .nn-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .nn-footer-links {
        justify-content: flex-start;
    }
}
