/* =========================
   FOOTER MAIN
========================= */
footer {
    width: 100%;
    background: #f8f8f8;
    position: relative;
    padding-top: 60px;
    margin-top: 60px;
}

/* =========================
   NEWSLETTER SECTION
========================= */
.Newsletter-Floating-wrapper {
    position: relative;
    margin-top: 0;
    margin-bottom: 40px;
    z-index: 2;
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 32px 50px;
    background: #000;
    border-radius: 32px;
}

.newsletter-left {
    flex: 1 1 55%;
}

.newsletter-title {
    margin: 0;
    max-width: 680px;
    width: 100%;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.newsletter-right {
    flex: 1 1 380px;
    max-width: 420px;
    width: 100%;
}

.subscribe-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.input-box {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    border-radius: 50px;
    padding: 14px 18px;
}

.input-icon {
    margin-right: 10px;
    color: #888;
    font-size: 16px;
    flex-shrink: 0;
}

.input-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #000;
}

.input-box input::placeholder {
    color: #777;
}

.button-box {
    width: 100%;
}

.subscribe-btn {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 14px 20px;
    background: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #e9e9e9;
}

/* =========================
   FOOTER CONTENT
========================= */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0 25px;
}

.footer-content > div {
    flex: 1 1 180px;
    min-width: 180px;
}

.about-section {
    flex: 1 1 300px;
    max-width: 340px;
}

.site-logo {
    margin-bottom: 14px;
    font-size: 28px;
    font-weight: 800;
    color: #000;
}

.about-section p {
    margin: 0 0 18px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    font-size: 15px;
}

.footer-content h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #000;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-link i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-link i:hover {
    background: #000;
    color: #fff;
}

/* =========================
   HR + BOTTOM BAR
========================= */
footer hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding: 18px 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

/* =========================
   TABLET
========================= */
@media (max-width: 991.98px) {
    footer {
        padding-top: 50px;
        margin-top: 50px;
    }

    .newsletter-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
        gap: 24px;
        border-radius: 24px;
    }

    .newsletter-left,
    .newsletter-right {
        width: 100%;
        max-width: 100%;
    }

    .newsletter-title {
        font-size: 32px;
        line-height: 1.25;
        max-width: 100%;
    }

    .footer-content {
        gap: 28px;
    }

    .about-section {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .company-section,
    .help-section,
    .faq-section {
        flex: 1 1 calc(33.33% - 20px);
        min-width: 160px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 575.98px) {
    footer {
        padding-top: 40px;
        margin-top: 40px;
    }

    .Newsletter-Floating-wrapper {
        margin-bottom: 30px;
    }

    .newsletter-box {
        padding: 22px 18px;
        border-radius: 20px;
        gap: 20px;
    }

    .newsletter-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .input-box {
        padding: 12px 14px;
    }

    .subscribe-btn {
        padding: 13px 16px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        padding: 10px 0 20px;
    }

    .footer-content > div,
    .about-section,
    .company-section,
    .help-section,
    .faq-section {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .site-logo {
        font-size: 24px;
    }

    .footer-content h4 {
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-bottom p {
        font-size: 13px;
        line-height: 1.5;
    }
}