/* WheelManagement.com Hero Image Placeholder */
.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, 
        rgba(197, 48, 48, 0.08) 0%, 
        rgba(255, 255, 255, 1) 30%, 
        rgba(255, 255, 255, 1) 70%, 
        rgba(30, 58, 138, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31, 63, 138, 0.15);
    border: 3px solid rgba(197, 48, 48, 0.1);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(197, 48, 48, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(30, 58, 138, 0.08) 0%, transparent 60%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.3) 49%, rgba(255, 255, 255, 0.3) 51%, transparent 52%);
    background-size: 300px 300px, 400px 400px, 150px 150px;
    animation: float 6s ease-in-out infinite;
}

.wheel-icon-large {
    font-size: 6rem;
    color: var(--wms-blue);
    opacity: 0.4;
    text-shadow: 0 4px 8px rgba(30, 58, 138, 0.2);
    animation: spin 20s linear infinite;
    z-index: 2;
    position: relative;
}

.hero-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    z-index: 3;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(31, 63, 138, 0.15);
    flex: 1;
    border: 2px solid rgba(197, 48, 48, 0.1);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(31, 63, 138, 0.25);
    border-color: rgba(197, 48, 48, 0.3);
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--wms-red), var(--wms-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
