/* Footer Styles */
.gcb-footer {
    border-top: 3px solid var(--gcb-amber);
    padding: 48px 0 24px;
    position: relative;
    overflow: hidden;
}

/* Add subtle overlay to ensure readability */
.gcb-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 0;
}

.gcb-footer .container {
    position: relative;
    z-index: 1;
}

.footer-section {
    margin-bottom: 32px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-text strong {
    color: white;
}

.trust-badges {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.trust-badge i {
    color: var(--gcb-amber);
    font-size: 18px;
}

.help-channels {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.help-channel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.help-channel:hover {
    background: var(--gcb-amber);
    border-color: var(--gcb-amber);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
    color: var(--gcb-black);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    margin-top: 32px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gcb-amber);
}

/* Stats Section in Footer */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gcb-amber);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--gcb-gray-50);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-badges {
        gap: 16px;
    }

    .help-channels {
        gap: 8px;
    }

    /* .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        } */

    .gcb-footer {
        padding: 32px 0 20px;
    }
}
