.footer-root * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer-root {
    --footer-primary: #000a68;
    --footer-black: #000000;
    --footer-white: #ffffff;
    --footer-text-light: rgba(255, 255, 255, 0.8);
    --footer-text-lighter: rgba(255, 255, 255, 0.7);
    --footer-text-lightest: rgba(255, 255, 255, 0.5);
    --footer-overlay: rgba(255, 255, 255, 0.1);
    --footer-border: rgba(255, 255, 255, 0.2);
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Trust Badges Section */
.footer-trust-section {
    background: var(--footer-primary);
    padding: 40px;
}

.footer-trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-trust-title {
    text-align: center;
    color: var(--footer-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

.footer-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-trust-badge {
    text-align: center;
    color: var(--footer-white);
}

.footer-trust-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.footer-trust-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-trust-text {
    font-size: 14px;
    color: var(--footer-text-light);
}

/* Main Footer */
.footer-main-wrapper {
    background: var(--footer-primary);
}

.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
}

/* Logo Column */
.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    font-size: 24px;
    font-weight: 700;
    color: var(--footer-white);
    margin-bottom: 20px;
    text-decoration: none;
    display: inline-block;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 14px;
    color: var(--footer-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    color: var(--footer-white);
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .footer-social-icon:hover {
        transform: scale(1.2);
    }

    .footer-social-icon svg {
        width: 20px;
        height: 20px;
    }

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Quick Access Wrapper */
.footer-quick-access-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-quick-access-wrapper .footer-column-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--footer-white);
    margin-bottom: 24px;
    width: 100%;
}

.footer-quick-access-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    justify-items: center;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--footer-white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: var(--footer-text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

    .footer-link:hover {
        color: var(--footer-white);
        padding-left: 4px;
    }

/* Newsletter Column */
.footer-newsletter-section {
    display: flex;
    flex-direction: column;
}

.footer-newsletter-description {
    font-size: 14px;
    color: var(--footer-text-light);
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
}

.footer-newsletter-input {
    background: var(--footer-overlay);
    border: 1px solid var(--footer-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--footer-white);
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.3s ease;
}

    .footer-newsletter-input::placeholder {
        color: var(--footer-text-lightest);
    }

    .footer-newsletter-input:focus {
        border-color: var(--footer-white);
    }

.footer-newsletter-button {
    background: var(--footer-white);
    color: var(--footer-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .footer-newsletter-button:hover {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }

/* Bottom Bar */
.footer-bottom-wrapper {
    background: var(--footer-black);
    padding: 24px 40px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: var(--footer-text-lighter);
}

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

.footer-legal-link {
    font-size: 14px;
    color: var(--footer-text-lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-legal-link:hover {
        color: var(--footer-white);
    }

.footer-separator {
    color: var(--footer-text-lighter);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-trust-section {
        padding: 40px 20px;
    }

    .footer-trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-main-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }

    .footer-quick-access-columns {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }

    .footer-quick-access-columns .footer-links {
        align-items: center;
    }

    .footer-logo-section,
    .footer-newsletter-section {
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-bottom-wrapper {
        padding: 24px 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

/* Focus states for accessibility */
.footer-link:focus,
.footer-social-icon:focus,
.footer-newsletter-button:focus,
.footer-legal-link:focus {
    outline: 2px solid var(--footer-white);
    outline-offset: 2px;
}
