/* RBRVS医院绩效管理系统特定样式 */

/* 增强版标题样式 */
.section-title-enhanced {
    position: relative;
    text-align: center;
    padding: 40px 0 30px;
    margin-bottom: 20px;
}

.section-title-enhanced .title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-title-enhanced .title-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.3);
}

.section-title-enhanced .title-icon i {
    font-size: 36px;
    color: white;
}

.section-title-enhanced h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-enhanced h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #4285f4);
    border-radius: 2px;
}

.section-title-enhanced p {
    font-size: 18px;
    color: #5f6368;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.section-title-enhanced .title-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1a73e8, transparent);
}

/* 功能卡片增强样式 */
.features-grid {
    margin-top: 40px;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* RBRVS医院绩效管理系统Banner样式 */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b6bb5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,30 50,50 T100,50" stroke="rgba(255,255,255,0.1)" stroke-width="0.5" fill="none"/><path d="M0,60 Q25,40 50,60 T100,60" stroke="rgba(255,255,255,0.1)" stroke-width="0.5" fill="none"/><path d="M0,70 Q25,50 50,70 T100,70" stroke="rgba(255,255,255,0.1)" stroke-width="0.5" fill="none"/></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero .btn-solid {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border: 2px solid transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.hero .btn-solid:hover {
    background: linear-gradient(135deg, #ff5252, #ffb74d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hero .btn-outline {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero .btn-outline:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero .btn-outline {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* 图片样式优化 */
.hero .performance-hero-image {
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.hero .performance-hero-image:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

.hero .hero-right-image {
    border-radius: 12px;
    background-color: rgba(255,255,255,0.95);
    padding: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-title-enhanced .title-icon {
        width: 60px;
        height: 60px;
    }
    
    .section-title-enhanced .title-icon i {
        font-size: 28px;
    }
}

/* 在线试用体验区样式 */
.trial-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.trial-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.trial-left {
    flex: 1;
}

.trial-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.trial-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.trial-features {
    margin-bottom: 40px;
}

.trial-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.trial-feature:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.trial-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.feature-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

.trial-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trial-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.trial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.trial-btn:hover::before {
    left: 100%;
}

.trial-buttons .trial-btn.primary {
    background: linear-gradient(135deg, #ff6b6b, #feca57) !important;
    border: 2px solid transparent !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
    transition: all 0.3s ease !important;
}

.trial-buttons .trial-btn.primary:hover {
    background: linear-gradient(135deg, #ff5252, #ffb74d) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4) !important;
}

.trial-buttons .trial-btn.secondary {
    background: rgba(255,255,255,0.1) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: white !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.trial-buttons .trial-btn.secondary:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
}

.trial-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.trial-demo {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
}

.demo-screen {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-dots {
    display: flex;
    gap: 5px;
}

.demo-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}

.demo-dots span:nth-child(1) { background: #ff6b6b; }
.demo-dots span:nth-child(2) { background: #feca57; }
.demo-dots span:nth-child(3) { background: #48dbfb; }

.demo-title {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.demo-content {
    padding: 20px;
}

.demo-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.nav-item {
    padding: 8px 15px;
    background: #f0f2f5;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.demo-data {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.data-row:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.data-label {
    font-weight: 500;
    color: #495057;
}

.data-value {
    color: #667eea;
    font-weight: 600;
}

.trial-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.benefit-item i {
    color: #48dbfb;
    font-size: 16px;
}

.benefit-item span {
    font-size: 14px;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .trial-section {
        padding: 60px 0;
    }
    
    .trial-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .trial-title {
        font-size: 2rem;
    }
    
    .trial-desc {
        font-size: 1rem;
    }
    
    .trial-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trial-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title-enhanced h2 {
        font-size: 28px;
    }
    
    .section-title-enhanced p {
        font-size: 16px;
    }
    
    .trial-demo {
        padding: 20px;
    }
    
    .demo-nav {
        flex-wrap: wrap;
    }
    
    .nav-item {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .trial-feature {
        padding: 12px;
    }
    
    .trial-feature .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
}
    
    .section-title-enhanced h2 {
        font-size: 28px;
    }
    
    .section-title-enhanced p {
        font-size: 16px;
    
}
