/* Footer Styles */
.footer-container {
    position: relative;
    width: 100%;
    background: #292929;
    padding: 60px 0 0;
    color: #edf1f4;
}

/* Content container - matches header approach */
.footer-content-main {
    margin: 0 auto;
    max-width: 1464px;
    padding: 0 15px;
    width: 100%;
}

/* Logo area */
.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 90px;
    object-fit: contain;
}

/* Main divider */
.footer-main-divider {
    width: 100%;
    height: 1px;
    background: #edf1f4;
    opacity: 0.2;
    margin-bottom: 30px;
}

/* Content area */
.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* Navigation links */
.footer-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 50%;
    padding-right: 30px;
}

.footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-link-base {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.footer-link-text {
    font-family: "Karla", "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 35px;
    color: #edf1f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-text:hover {
    color: #ff4c4b;
}

.footer-link-highlight {
    width: 100%;
    height: 1px;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.footer-link:hover .footer-link-highlight {
    background: #ff4c4b;
    opacity: 1;
}

/* Content divider */
.footer-content-divider {
    width: 1px;
    height: 387px;
    background: #edf1f4;
    opacity: 0.2;
}

/* Newsletter section */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: 50%;
}

.footer-newsletter-title {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 128%;
    color: #ffffff;
    text-align: center;
}

.footer-newsletter-text {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #edf1f4;
    max-width: 468px;
}

.footer-newsletter-form {
    width: 100%;
    max-width: 400px;
}

.footer-input-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 24px;
    width: 100%;
    height: 58px;
    background: #ffffff;
    border: 1px solid #edf1f4;
    border-radius: 12px;
}

.footer-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: "DM Sans", "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}

.footer-input::placeholder {
    color: #000000;
    opacity: 0.5;
}

.footer-submit-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.footer-submit-btn i {
    color: #000000;
    font-size: 16px;
}

/* Social icons */
.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 24px;
    margin-top: 20px;
}

.footer-social-icon {
    font-size: 20px;
    color: #edf1f4;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #ff4c4b;
}

/* Bottom divider */
.footer-bottom-divider {
    width: 100%;
    height: 1px;
    background: #edf1f4;
    opacity: 0.2;
    margin-bottom: 20px;
}

/* Legal section */
.footer-legal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 20px;
    gap: 24px;
    width: 100%;
}

.footer-legal-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.footer-legal-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 12px;
}

.footer-legal-text {
    font-family: "DM Sans", "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #edf1f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-text:hover {
    color: #ff4c4b;
}

.footer-copyright {
    font-family: "DM Sans", "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #edf1f4;
}

/* Responsive styles */
@media (max-width: 1464px) {
    .footer-content-main {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .footer-link-text {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .footer-nav-links {
        width: 100%;
        align-items: center;
        padding-right: 0;
    }

    .footer-link {
        align-items: center;
    }

    .footer-content-divider {
        display: none;
    }

    .footer-newsletter {
        width: 100%;
    }

    .footer-newsletter-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .footer-container {
        z-index: 1000;
    }
    .footer-link-text {
        font-size: 20px;
        line-height: 26px;
    }

    .footer-newsletter-text {
        font-size: 18px;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-link-text {
        font-size: 18px;
        line-height: 24px;
    }

    .footer-newsletter-title {
        font-size: 28px;
    }

    .footer-newsletter-text {
        font-size: 16px;
    }

    .footer-social {
        gap: 18px;
    }
}
