/* ========================================
   FOOTER CUSTOM STYLES - Figma Design
   ======================================== */

/* Newsletter Bar */
.newsletter-bar {
    background: #112d51;
    border-bottom: 0.667px solid #1e4470;
    padding: 32px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.newsletter-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.newsletter-label {
    font-size: 18px;
    line-height: 27px;
    color: white;
    font-weight: 400;
    white-space: nowrap;
}

.newsletter-subtitle {
    font-size: 18px;
    line-height: 27px;
    color: silver;
    font-weight: 400;
}

.newsletter-divider {
    width: 1px;
    height: 32px;
    background: #4a5f7f;
    flex-shrink: 0;
}

.signup-button {
    background: #c41e3a !important;
    color: white !important;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 32px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.signup-button:hover,
.signup-button:focus {
    background: #a01629 !important;
    color: white !important;
}

.social-icons-bar {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icons-bar a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.social-icons-bar a:hover {
    opacity: 0.7;
}

/* Footer Content */
.footer-content {
    padding: 80px 0 48px;
    position: relative;
}

/* Footer Left Column */
.footer-left .logo {
    margin-bottom: 80px;
}

.footer-left .logo img {
    max-width: 193px;
    height: auto;
}

.footer-info p {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 16px;
}

.footer-info .address {
    color: #112d51;
}

.footer-info .address a {
    color: #112d51;
    text-decoration: none;
}

.footer-info .address a:hover {
    text-decoration: underline;
}

.footer-info .copyright {
    color: #6b7280;
}

.footer-info .trademark {
    color: #6b7280;
    max-width: 460px;
}

.footer-info .policies {
    color: #6b7280;
}

.footer-info .policies a {
    color: #6b7280;
    text-decoration: none;
}

.footer-info .policies a:hover {
    text-decoration: underline;
}

/* Footer Navigation Columns */
.footer-nav-column {
    border-left: 0.667px solid #ba0c2f;
    padding-left: 24px;
}

.footer-nav-column h5 {
    font-size: 16px;
    line-height: 24px;
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-nav-column .link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-column .link-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 12px;
}

.footer-nav-column .link-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 20px;
}

.footer-nav-column .link-list a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    transition: color 0.3s ease;
}

.footer-nav-column .link-list a:hover {
    color: #1e3a5f;
}

/* Responsive Styles */

@media screen and (max-width: 768px) {
    /* Newsletter Bar Mobile */
    .newsletter-bar {
        padding: 32px 0;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .newsletter-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
        text-align: center;
        align-items: center;
    }

    .newsletter-left {
        flex-direction: column;
        text-align: center !important;
        gap: 4px;
        width: 100%;
    }

    .newsletter-label {
        font-size: 16px;
        line-height: 24px;
        text-align: center !important;
    }

    .newsletter-subtitle {
        font-size: 14px;
        line-height: 20px;
        text-align: center !important;
    }

    .newsletter-divider {
        display: none;
    }

    .signup-button {
        width: auto;
        padding: 12px 40px;
    }

    .social-icons-bar {
        justify-content: center;
        gap: 20px;
    }

    /* Footer Content Mobile */
    .footer-content {
        padding: 40px 16px 32px;
    }

    .footer-left {
        margin-bottom: 40px;
        text-align: left !important;
    }

    .footer-left .logo {
        margin-bottom: 24px;
        text-align: left !important;
    }

    .footer-left .logo img {
        max-width: 160px;
    }

    .footer-info {
        max-width: 100%;
        text-align: left !important;
    }

    .footer-info p {
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 12px;
        text-align: left !important;
    }

    .footer-info .address,
    .footer-info .copyright,
    .footer-info .trademark,
    .footer-info .policies {
        text-align: left !important;
    }

    /* Navigation Columns Mobile */
    .footer-nav-column {
        border-left: 2px solid #ba0c2f;
        padding-left: 16px;
        margin-bottom: 32px;
        text-align: left !important;
    }

    .footer-nav-column h5 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 12px;
        text-align: left !important;
    }

    .footer-nav-column .link-list {
        text-align: left !important;
    }

    .footer-nav-column .link-list li {
        margin-bottom: 6px;
        text-align: left !important;
    }

    .footer-nav-column .link-list a {
        font-size: 13px;
        line-height: 18px;
        text-align: left !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        padding: 80px 50px 48px;
    }
}
