/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0d1a2d 0%, #0a1128 100%);
    padding: 4rem 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Media Sidebar */
.social-sidebar {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1000;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--background-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--background-dark);
    stroke-width: 3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-sidebar {
        left: 1rem;
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .social-sidebar {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}