/* 走马探花 - 现代服务Hero区块样式 */

/* 现代风格Hero - 白色背景主题 */
.service-hero-modern {
    position: relative;
    background: #ffffff;
    color: #333;
    padding: 5rem 0;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.service-hero-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,46,108,0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(230,193,90,0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255,46,108,0.03) 50%, transparent 60%);
    animation: heroPattern 20s ease-in-out infinite;
}

@keyframes heroPattern {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(10px) translateY(5px); }
    75% { transform: translateX(-5px) translateY(10px); }
}

.service-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-hero-main {
    max-width: 600px;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #FF2E6C, #E6C15A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #64748b;
    font-weight: 400;
}

.service-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.service-hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: #E6C15A;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-hero-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.service-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero-btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.service-hero-btn-primary {
    background: #FF2E6C;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 46, 108, 0.2);
}

.service-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 46, 108, 0.3);
    background: #E91E63;
    color: #ffffff;
}

.service-hero-btn-secondary {
    background: transparent;
    color: #FF2E6C;
    border: 2px solid #FF2E6C;
}

.service-hero-btn-secondary:hover {
    background: #FF2E6C;
    color: #ffffff;
    transform: translateY(-2px);
}

.service-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 46, 108, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 46, 108, 0.1);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 46, 108, 0.1);
}

.service-hero-feature-item:hover {
    background: rgba(255, 46, 108, 0.1);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 46, 108, 0.2);
}

.service-hero-feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 193, 90, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(230, 193, 90, 0.4);
}

.service-hero-feature-text {
    font-weight: 500;
    font-size: 1rem;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-hero-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .service-hero-feature-item {
        flex: 1;
        min-width: 150px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .service-hero-modern {
        padding: 3rem 0;
        min-height: 50vh;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .service-hero-stat-number {
        font-size: 2rem;
    }
    
    .service-hero-actions {
        justify-content: center;
    }
    
    .service-hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .service-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero-feature-item {
        max-width: 280px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-hero-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .service-hero-stat-item {
        flex: 1;
    }
    
    .service-hero-stat-number {
        font-size: 1.75rem;
    }
    
    .service-hero-stat-label {
        font-size: 0.8rem;
    }
    
    .service-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero-btn {
        width: 100%;
        max-width: 280px;
    }
}
