/* footer.css - Styles for authenticated pages footer (_footer.pug) */

.landing-footer {
    background: var(--gray-900, #111827);
    color: var(--color-white, #fff);
    padding: 50px 0 30px;
    font-size: 0.9em;
}

.landing-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-footer .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer sections */
.landing-footer .footer-section {
    display: flex;
    flex-direction: column;
}

.landing-footer .footer-section h3 {
    color: var(--gray-200, #e5e7eb);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.landing-footer .footer-section p {
    color: var(--gray-400, #9ca3af);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.landing-footer .footer-section a {
    color: var(--gray-400, #9ca3af);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.landing-footer .footer-section a:hover {
    color: var(--color-primary-lighter, #60a5fa);
}

/* Company details */
.landing-footer .company-details {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-footer .company-info {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: var(--gray-500, #6b7280);
}

.landing-footer .company-info strong {
    color: var(--gray-300, #d1d5db);
}

/* Contact section */
.landing-footer .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.landing-footer .contact-item i {
    color: var(--gray-500, #6b7280);
    width: 16px;
    font-size: 0.85rem;
}

.landing-footer .contact-item a {
    padding: 0;
}

/* Legal links */
.landing-footer .footer-legal a {
    font-size: 0.9rem;
}

/* Partners section */
.landing-footer .footer-partners {
    gap: 0.75rem;
}

.landing-footer .partner-link {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.landing-footer .partner-logo {
    max-width: 200px;
    height: auto;
    border-radius: 6px;
}

.landing-footer .netopia-logo {
    max-width: 180px;
}

.landing-footer .protection-logos {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.landing-footer .protection-logo {
    max-width: 60px;
    max-height: 40px;
    height: auto;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 6px;
    transition: transform 0.2s ease;
}

.landing-footer .protection-logo:hover {
    transform: translateY(-2px);
}

/* Footer bottom */
.landing-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.landing-footer .footer-bottom p {
    color: var(--gray-500, #6b7280);
    margin: 0;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .landing-footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .landing-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .landing-footer .contact-item {
        justify-content: center;
    }

    .landing-footer .protection-logos {
        justify-content: center;
    }

    .landing-footer .partner-logo {
        margin: 0 auto;
    }
}