/* zizhi.css - 许可证资质页面专用样式 */

:root {
    --primary-dark: #0f3057;
    --primary-main: #00587a;
    --primary-light: #008891;
    --accent: #00bcd4;
    --accent-light: #26c6da;
    --neutral-dark: #1a237e;
    --neutral-main: #283593;
    --neutral-light: #5c6bc0;
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #ffffff;
    --background: #f8f9fa;
    --surface: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Page Header */
.page-header {
    background: linear-gradient(90deg, rgba(15, 48, 87, 0.85) 0%, rgba(0, 88, 122, 0.75) 100%), url('/template/jia/images/bangongshi.jpg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-top: 60px;
    padding: 0 50px;
}

.page-header-content {
    max-width: 800px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin-bottom: 20px;
}

.breadcrumb li {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.breadcrumb li:after {
    content: '/';
    margin-left: 10px;
    opacity: 0.7;
}

.breadcrumb li:last-child:after {
    content: '';
    margin: 0;
}

.breadcrumb a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary-main));
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-main);
    background: rgba(0, 136, 145, 0.05);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(20px);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--accent);
    margin-right: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

/* Process Section */
.process-section {
    background: linear-gradient(to bottom, var(--primary-dark), var(--primary-main));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/template/jia/images/bangongshi8.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.process-section .section-title h2 {
    color: var(--text-light);
}

.process-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 20px;
    position: relative;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: var(--transition);
}

.step:hover .step-number {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step h3 {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 22px;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #e9f2f8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--surface);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-main);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/template/jia/images/bangongshi9.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
        padding: 0 20px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 250px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 18px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}