/* =========================================
   RETASAN FOOTER STYLES
   ========================================= */

.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    margin-top: var(--space-3xl);
}

/* ── Footer Widgets ── */
.footer-widgets {
    padding: var(--space-3xl) 0 var(--space-xl);
    border-bottom: 1px solid var(--border);
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer-widget .widget {
    background: transparent;
    border: none;
    padding: 0;
}

.footer-widget .widget-title {
    border-bottom-color: var(--accent-red);
}

.footer-widget .widget-title::before {
    content: '$';
    color: var(--accent-green);
}

/* ── Footer Brand ── */
.footer-brand {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--border);
}

.footer-brand-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo .site-title {
    font-size: var(--fs-xl);
}

.footer-about {
    max-width: 400px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
    box-shadow: var(--shadow-glow-red);
}

/* ── Bottom Footer ── */
.bottom-footer {
    padding: var(--space-lg) 0;
}

.bottom-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.bottom-footer-content p {
    margin: 0;
    color: var(--text-muted);
}

.bottom-footer-content a {
    color: var(--accent-red);
}

.bottom-footer-content a:hover {
    color: var(--accent-red-hover);
}

.footer-nav {
    display: flex;
    gap: var(--space-lg);
}

.footer-nav a {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav a:hover {
    color: var(--accent-cyan);
}
