/* Banner Stats Component Styles */
.banner-stats-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.banner-stats-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.banner-stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.9) 0%, rgba(26, 42, 58, 0.7) 100%);
}

.banner-stats-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 0;
}

.banner-stats-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-stats-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-accent-light);
    margin-bottom: 20px;
}

.banner-stats-description {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner-stats-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient-blue-accent);
    border: 1px solid rgba(74, 144, 226, 0.6);
    border-radius: 50px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.banner-stats-cta:hover {
    background: var(--gradient-blue-4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

.banner-stats-floating-stats {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.banner-stats-floating-stat-card {
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    min-width: 180px;
    animation: banner-stats-floatUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes banner-stats-floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-stats-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--white);
    background: var(--gradient-blue-accent);
}

.banner-stats-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.banner-stats-stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .banner-stats-floating-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .banner-stats-wrapper {
        min-height: 500px;
    }

    .banner-stats-title {
        font-size: 36px;
    }

    .banner-stats-subtitle {
        font-size: 20px;
    }

    .banner-stats-description {
        font-size: 16px;
    }

    .banner-stats-floating-stats {
        flex-direction: column;
        align-items: center;
    }

    .banner-stats-floating-stat-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .banner-stats-title {
        font-size: 28px;
    }

    .banner-stats-subtitle {
        font-size: 18px;
    }

    .banner-stats-cta {
        padding: 15px 30px;
        font-size: 16px;
    }
}
