/* ================================================
   FOOTER – StrydeClient
   ================================================ */

.footer {
    background: var(--bg-primary);
    position: relative;
}

/* Gradient top divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary) 30%,
        var(--primary-light) 60%,
        transparent 100%
    );
    opacity: 0.4;
}

.footer-inner {
    padding: 4rem 0 2rem;
}

/* ── Main Grid ── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

/* ── Brand Col ── */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    width: fit-content;
    cursor: pointer;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── Social Buttons ── */
.footer-socials {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(136, 120, 204, 0.08);
    border: 1px solid rgba(136, 120, 204, 0.18);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: rgba(136, 120, 204, 0.18);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ── Nav Cols ── */
.footer-nav-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-nav-heading {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
}

.footer-nav-list a,
.footer-nav-list button {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.footer-nav-list a:hover,
.footer-nav-list button:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* ── Bottom Bar ── */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy,
.footer-made-with {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-heart {
    color: #e05555;
    flex-shrink: 0;
    animation: heartbeat 2.4s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1);    }
    14%       { transform: scale(1.3); }
    28%       { transform: scale(1);   }
    42%       { transform: scale(1.15);}
    56%       { transform: scale(1);   }
}

/* Status Pill */
.footer-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(0, 212, 170, 0.07);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
}

.footer-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-nav-cols {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
