/* =============================================
   Footer — Footer.css
   ============================================= */
.site-footer {
    margin-top: 0;
    background: #2b2b2b;
    width: 100%;
    padding: 80px 0 0 0;
    box-sizing: border-box;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* ── Brand (left) ── */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 220px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
}

/* ── Nav columns ── */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 130px;
}

.footer-col-title {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.footer-col a {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: #c0c0c0;
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: #FF8000;
    }

/* ── Newsletter ── */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 280px;
}

.footer-newsletter-title {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.newsletter-input-wrap {
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid #888888;
    padding-bottom: 8px;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: #c0c0c0;
    padding: 0;
}

    .newsletter-input::placeholder {
        color: #888888;
    }

.newsletter-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .newsletter-btn svg {
        width: 22px;
        height: 22px;
        stroke: #c0c0c0;
        fill: none;
        transition: stroke 0.2s;
    }

    .newsletter-btn:hover svg {
        stroke: #FF8000;
    }

/* ── Bottom bar ── */
.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #3d3d3d;
    padding: 24px 80px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-copyright {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #888888;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .footer-inner {
        padding: 0 40px;
        gap: 32px;
    }

    .footer-bottom {
        padding: 24px 40px;
    }
}

@media (max-width: 820px) {
    .footer-inner {
        flex-wrap: wrap;
        padding: 0 32px;
        gap: 36px;
    }

    .footer-brand {
        flex: 0 0 100%;
    }

    .footer-bottom {
        padding: 24px 32px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        padding: 0 20px;
    }

    .footer-col {
        min-width: 100px;
    }

    .footer-newsletter {
        min-width: 100%;
    }

    .footer-bottom {
        padding: 20px;
    }
}
