/**
 * LaborLawCenter Footer Styles
 * Matches Magento 2 Porto 4-section footer
 */

/* ── Footer Container ─────────────────────────────── */
.footer {
    margin-top: 60px;
}

/* ── Footer Top (Trust Badges) ────────────────────── */
.footer-top {
    background-color: var(--llc-light-gray);
    padding: 40px 0;
    border-top: 1px solid var(--llc-border-color);
}

.footer-top .custom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-top .trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.footer-top .trust-badge img {
    height: 64px;
    width: auto;
    opacity: 0.9;
    transition: var(--llc-transition);
}

.footer-top .trust-badge img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-top .trust-badge span {
    font-size: var(--llc-font-xs);
    color: var(--llc-brand-gray);
    font-family: var(--llc-font-medium);
}

/* ── Footer Middle (Main Footer) ──────────────────── */
.footer-middle {
    background-color: var(--llc-brand-blue);
    color: var(--llc-white);
    padding: 48px 0;
}

.footer-middle .custom-container {
    display: flex;
    gap: 40px;
}

/* ── Footer Logo ──────────────────────────────────── */
.footer-middle .footer-logo {
    flex-shrink: 0;
    margin-bottom: 16px;
}

.footer-middle .footer-logo img {
    max-height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* ── Footer Columns ───────────────────────────────── */
.footer-middle .footer-columns {
    display: flex;
    flex: 1;
    gap: 32px;
}

.footer-middle .footer-col {
    flex: 1;
}

.footer-middle .footer-col-title {
    font-family: var(--llc-font-bold);
    font-size: var(--llc-font-sm);
    color: var(--llc-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-middle .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-middle .footer-col ul li {
    margin-bottom: 10px;
}

.footer-middle .footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--llc-font-sm);
    text-decoration: none;
    transition: var(--llc-transition);
}

.footer-middle .footer-col ul li a:hover {
    color: var(--llc-white);
    text-decoration: underline;
}

/* ── Footer Middle 2 (Newsletter) ─────────────────── */
.footer-middle-2 {
    background-color: var(--llc-dark-blue);
    color: var(--llc-white);
    padding: 32px 0;
}

.footer-middle-2 .custom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-newsletter-text h3 {
    color: var(--llc-white);
    font-size: var(--llc-font-lg);
    margin-bottom: 4px;
}

.footer-newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--llc-font-sm);
    margin: 0;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 420px;
    width: 100%;
}

.footer-newsletter-form input[type="email"] {
    flex: 1;
    height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--llc-radius-sm);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--llc-white);
    font-size: var(--llc-font-sm);
}

.footer-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
    height: 44px;
    padding: 0 24px;
    background-color: var(--llc-brand-orange);
    color: var(--llc-white);
    border: none;
    border-radius: var(--llc-radius-sm);
    font-family: var(--llc-font-bold);
    font-size: var(--llc-font-sm);
    cursor: pointer;
    transition: var(--llc-transition);
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    background-color: var(--llc-light-orange);
}

/* ── Footer Bottom (Copyright) ────────────────────── */
.footer-bottom {
    background-color: #0a1736;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px 0;
    font-size: var(--llc-font-xs);
}

.footer-bottom .custom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom .copyright {
    margin: 0;
}

.footer-bottom .footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--llc-transition);
}

.footer-bottom .footer-bottom-links a:hover {
    color: var(--llc-white);
}
