/* GlorifyTC — shared footer styles */
.footer {
    padding: 4rem 2rem 2rem;
    background: #000;
    border-top: 1px solid var(--white-10, rgba(255,255,255,.1));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-section h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--white-50, rgba(255,255,255,.5));
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--white-50, rgba(255,255,255,.5));
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--cyan-400, #00f5ff);
    gap: 0.8rem;
}

.footer-bottom {
    max-width: 1300px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--white-10, rgba(255,255,255,.1));
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-40, rgba(255,255,255,.4));
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: var(--white-40, rgba(255,255,255,.4));
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--cyan-400, #00f5ff);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--white-20, rgba(255,255,255,.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-60, rgba(255,255,255,.6));
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links a:hover {
    border-color: var(--cyan-400, #00f5ff);
    color: var(--cyan-400, #00f5ff);
    background: rgba(0, 209, 255, 0.1);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--cyan-400, #00f5ff), var(--cyan-600, #0891b2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

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

    .social-links {
        justify-content: center;
    }
}
