/* === ENHANCED HERO STATS SECTION === */
.hero-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--pure-white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
    border: 3px solid var(--pure-white);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.15) 0%, rgba(10, 41, 31, 0.08) 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--champagne-gold);
    transition: all var(--transition-medium);
    position: relative;
    box-shadow: inset 0 0 20px rgba(201, 162, 77, 0.2);
}

.stat-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.25) 0%, rgba(10, 41, 31, 0.15) 100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
    transition: all var(--transition-medium);
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card:hover .stat-number {
    color: var(--champagne-gold);
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 8px;
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--champagne-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    animation: scaleIn 1.2s ease-out forwards;
}

/* Stats Wave Background */
.stats-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".15" fill="%230A291F"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".3" fill="%230A291F"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%230A291F"/></svg>');
    opacity: 0.08;
    animation: wave 25s linear infinite;
    z-index: 1;
}