/* 基金申请页面特有样式 */



/* 服务方案区域 */
.service-plans-section {
    margin: 30px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-plans-section .section-title p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 1000px;
    margin: 20px auto 0;
    text-align: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* 服务方案卡片 */
.service-plan-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 2px solid #e2e8f0;
    overflow: hidden;
}



.service-plan-card.featured {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 12px 36px rgba(0,102,255,0.4);
    border: 3px solid white;
    position: relative;
    overflow: hidden;
}

.service-plan-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.service-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-plan-card.featured:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0,102,255,0.5);
}

.plan-header {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-plans-grid .plan-header {
    padding: 20px;
    align-items: flex-start;
    text-align: left;
}

.service-plan-card.featured .plan-header {
    background: rgba(255,255,255,0.15);
    padding: 35px;
}

.plan-image {
    font-size: 60px;
    margin-bottom: 20px;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.plan-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3748;
}

.service-plan-card.featured .plan-title {
    color: white;
    font-size: 22px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.plan-subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00a878;
}

.service-plan-card.featured .plan-subtitle {
    color: #ffd700;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.plan-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #4a5568;
}

.service-plan-card.featured .plan-description {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

.plan-details {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    gap: 20px;
}

.service-plan-card.featured .plan-details {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.plan-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 250px;
}

.info-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: none;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    border: none;
}

.plan-content {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: none;
    border: none;
}

.service-plan-card.featured .info-item {
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    box-shadow: none;
    border: none;
}

.info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #007d59;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h4:before {
    content: "👤";
    font-size: 20px;
}

.info-item:nth-child(2) h4:before {
    content: "📅";
}

.service-plan-card.featured .info-item h4 {
    color: var(--primary-color);
    font-size: 17px;
}

.info-item p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #4a5568;
}

.service-plan-card.featured .info-item p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.plan-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: none;
    border: none;
}

.service-plan-card.featured .plan-content {
    background: rgba(255,255,255,0.95);
    box-shadow: none;
    border: none;
}

.plan-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6b35;
}

.service-plan-card.featured .plan-content h4 {
    color: #ff6b35;
    font-size: 17px;
}

.plan-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-content li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
    color: #4a5568;
    border-bottom: 1px solid #f0f0f0;
}

.plan-content li:last-child {
    border-bottom: none;
}

.service-plan-card.featured .plan-content li {
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0,102,255,0.3);
    font-weight: 500;
}

.plan-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-plan-card.featured .plan-content li:before {
    color: #ff6b35;
    font-size: 16px;
}

/* 服务流程 */
.service-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: rgba(0, 102, 255, 0.05);
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.service-plan-card.featured .service-process {
    background: rgba(255,255,255,0.25);
}

.service-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--primary-color);
    z-index: 1;
}

.service-plan-card.featured .service-process::before {
    background: rgba(255,255,255,0.6);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,102,255,0.3);
    border: 2px solid var(--primary-color);
}

.service-plan-card.featured .step-number {
    background: #ff6b35;
    color: white;
    border-color: white;
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

.step-name {
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
    color: #4a5568;
    background: white;
    padding: 5px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-plan-card.featured .step-name {
    color: var(--primary-color);
    background: white;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,102,255,0.2);
}

.plan-footer {
    padding: 20px;
    text-align: center;
    background: white;
}

.service-plan-card.featured .plan-footer {
    background: rgba(255,255,255,0.15);
}

.plan-btn {
    padding: 10px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,102,255,0.2);
}

.plan-btn:hover {
    background: #005a9e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,102,255,0.3);
}

.service-plan-card.featured .plan-btn {
    background: #ff6b35;
    color: white;
    font-weight: 700;
    padding: 14px 45px;
    font-size: 17px;
    border-radius: 25px;
    box-shadow: 0 6px 16px rgba(255,107,53,0.4);
}

.service-plan-card.featured .plan-btn:hover {
    background: #ff8a50;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.5);
}

/* 其他服务方案网格 */
.featured-plan-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.service-plans-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-plans-grid .service-plan-card {
    margin-bottom: 0;
}

/* 成功案例展示区域 */
.success-cases-section {
    margin: 60px 0 30px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.cases-list {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.case-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    flex: 0 0 calc(25% - 22.5px);
    min-width: 250px;
    overflow: hidden;
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.case-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.05);
}

.case-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    padding: 15px;
    text-align: center;
    margin: 0;
    width: 100%;
}

/* 专家团队区域 */


/* 客户评价区域 */
.customer-reviews-section {
    margin: 60px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.customer-reviews-section .section-title {
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
}

.customer-reviews-section .section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.customer-reviews-section .section-title p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 1000px;
    margin: 20px auto 0;
    text-align: center;
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.certificates-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.certificate-item {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    text-align: center;
}

.certificate-item.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0,102,255,0.2);
    transform: translateY(-10px);
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.certificate-item.featured:hover {
    transform: translateY(-15px);
}

.certificate-image {
    width: 100px;
    height: 100px;
    font-size: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 50%;
    overflow: hidden;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificate-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.certificate-description {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.review-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.review-rating {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f59e0b;
}

.review-content p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.author-title {
    font-size: 14px;
    color: #718096;
}



/* 常见问题区域 */
.faq-section {
    margin: 60px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.faq-section .section-title {
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
}

.faq-section .section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-section .section-title p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 1000px;
    margin: 20px auto 0;
    text-align: center;
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .customer-reviews-section,
    .faq-section {
        padding: 0;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 14px;
        padding: 15px;
    }
    
    .service-plans-grid,
    .certificates-showcase,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .certificate-image {
        font-size: 60px;
    }
    
    .cases-list {
        gap: 20px;
    }
    
    .case-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 150px;
    }
    
    .case-image {
        height: 150px;
    }
    
    .case-title {
        font-size: 14px;
        padding: 12px;
    }
    
    .faq-item,
    .review-item {
        padding: 20px;
    }
    
    .process-step {
        max-width: 100px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-plan-card {
        padding: 15px;
    }
    
    .plan-header {
        padding: 15px;
    }
    
    .plan-title {
        font-size: 18px;
    }
    
    .plan-subtitle {
        font-size: 13px;
    }
    
    .plan-description {
        font-size: 13px;
    }
    
    .plan-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .plan-info {
        flex: 0 0 auto;
        width: 100%;
        gap: 15px;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .info-item h4 {
        font-size: 14px;
    }
    
    .info-item p {
        font-size: 12px;
    }
    
    .plan-content {
        padding: 12px;
    }
    
    .plan-content h4 {
        font-size: 14px;
    }
    
    .plan-content li {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .service-process {
        padding: 15px;
    }
    
    .process-step {
        min-width: 80px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
    
    .step-name {
        font-size: 11px;
    }
    
    .process-arrow {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .customer-reviews-section,
    .faq-section {
        padding: 0;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .section-title p {
        font-size: 13px;
        padding: 12px;
    }
    
    .service-plans-grid,
    .certificates-showcase,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .certificate-image {
        font-size: 50px;
    }
    
    .cases-list {
        gap: 15px;
    }
    
    .case-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .case-image {
        height: 180px;
    }
    
    .case-title {
        font-size: 14px;
        padding: 10px;
    }
    
    .faq-item,
    .review-item {
        padding: 15px;
    }
    
    .faq-question,
    .review-content p {
        font-size: 13px;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .process-step {
        max-width: 80px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-name {
        font-size: 12px;
    }
    
    .service-plan-card {
        padding: 12px;
    }
    
    .plan-header {
        padding: 12px;
    }
    
    .plan-title {
        font-size: 16px;
    }
    
    .plan-subtitle {
        font-size: 12px;
    }
    
    .plan-description {
        font-size: 12px;
    }
    
    .plan-details {
        flex-direction: column;
        gap: 12px;
    }
    
    .plan-info {
        flex: 0 0 auto;
        width: 100%;
        gap: 12px;
    }
    
    .info-item {
        padding: 10px;
    }
    
    .info-item h4 {
        font-size: 13px;
    }
    
    .info-item p {
        font-size: 11px;
    }
    
    .plan-content {
        padding: 10px;
    }
    
    .plan-content h4 {
        font-size: 13px;
    }
    
    .plan-content li {
        font-size: 11px;
        padding: 6px 0;
    }
    
    .service-process {
        padding: 12px;
    }
    
    .process-step {
        min-width: 60px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }
    
    .step-name {
        font-size: 10px;
    }
    
    .process-arrow {
        font-size: 14px;
    }
    
    .plan-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}