/*! style.css v38e70be9 */
/* Generated: 2026-01-14 17:29:35 */
/* Domain: chn-oop-wukongsports.com */
/* Fast loading optimized */
/* Clean semantic markup */
/* Progressive enhancement */

.css_3c0afe {
    /* Random class Cd5566982 fingerprint optimization */
    display: none;
}

/**
 * Template7 - 渐变玻璃态风格 (Glassmorphism)
 * 主要特点：毛玻璃效果、渐变背景、backdrop-filter
 */

:root {
    --primary-color: #667eea;
    --primary-hover: #5568d3;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', sans-serif;
    min-height: 100vh;
}

/* 玻璃态卡片 - 增强对比度和可见性 */
.card, .service-card, .work-card, .news-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    transition: all 0.3s ease;
    padding: 30px;
    color: #fff;
}

.card *:not(.btn):not(.badge):not(a.btn),
.service-card *:not(.btn):not(.badge):not(a.btn),
.work-card *:not(.btn):not(.badge):not(a.btn),
.news-card *:not(.btn):not(.badge):not(a.btn) {
    color: #fff !important;
}

.card:hover, .service-card:hover, .work-card:hover, .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

/* 导航栏玻璃态 - 增强可见性 */
.main-header {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Header Top区域 - 顶部联系信息 */
.header-top {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info span {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-info i {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Header Main区域 - 主导航 */
.header-main {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo a img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* 移动菜单 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    overflow-y: auto;
    color: #fff;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu-header h5 {
    color: #fff !important;
    margin: 0;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    color: #fff !important;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu.show {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .mobile-menu-content {
        width: 100%;
    }
}

/* 按钮玻璃态 */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glass);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(102, 126, 234, 0.5);
}

/* Hero区域 - 增强文本可见性 */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-title {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-controls {
        padding: 0 15px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
    }
}

/* Footer玻璃态 - 增强可见性 */
.main-footer {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding-top: 60px;
}

.main-footer * {
    color: #fff !important;
}

/* Footer Top区域 */
.footer-top {
    padding: 60px 0 40px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    color: #fff;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-section .social-links {
    margin-top: 20px;
}

.footer-title {
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

/* Contact Info in Footer */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-item i {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom区域 */
.footer-bottom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.9) !important;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.copyright a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
}

.copyright a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom .footer-links a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    padding: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom .footer-links {
        justify-content: center;
    }
}

/* 输入框玻璃态 - 增强可见性 */
.form-control {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 12px 15px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* 文本颜色调整 - 增强对比度 */
h1, h2, h3, h4, h5, h6 {
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

p, .text-dark, .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-title {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

/* 服务卡片特殊效果 - 增强可见性和美观性 */
.service-card {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.3) !important;
}

.service-card .service-title {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.service-card:hover .service-title {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.service-card .service-description {
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.service-card .service-link {
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    margin-top: auto;
    font-size: 1rem;
}

.service-card .service-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card .service-link i {
    transition: transform 0.3s;
}

.service-card .service-link:hover i {
    transform: translateX(5px);
}

.service-icon {
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.service-icon i {
    color: #fff;
    font-size: 2.2rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* Swiper服务轮播样式优化 */
.services-slider-wrapper {
    padding: 20px 0 60px;
}

.servicesSwiper {
    padding-bottom: 50px;
}

.services-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 0.7;
    transition: all 0.3s;
}

.services-pagination .swiper-pagination-bullet-active {
    background: #fff !important;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.services-prev,
.services-next {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.services-prev:hover,
.services-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-prev::after,
.services-next::after {
    font-size: 20px;
    font-weight: 700;
}

/* CTA区域 - 大幅优化 */
.cta-section {
    background: var(--gradient-primary) !important;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    margin-top: 80px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ctaPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section * {
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.cta-section .cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.cta-section .cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-light {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--primary-color) !important;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-section .btn-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-section .btn-light:hover::before {
    width: 300px;
    height: 300px;
}

.cta-section .btn-light:hover {
    background: #fff !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.cta-section .btn-light i {
    position: relative;
    z-index: 1;
    color: var(--primary-color) !important;
}

.cta-section .btn-outline-light {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section .cta-title {
        font-size: 2rem;
    }
    
    .cta-section .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn-light,
    .cta-section .btn-outline-light {
        width: 100%;
        max-width: 300px;
    }
}

/* 工作案例和新闻卡片 */
.work-card, .news-card {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work-card:hover,
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.work-image,
.news-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
}

.work-image img,
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.work-card:hover .work-image img,
.news-card:hover .news-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-overlay .work-link {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.work-content,
.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.work-title,
.news-title {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-title a {
    color: #fff !important;
    text-decoration: none;
}

.news-title a:hover {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.work-description,
.news-excerpt {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8;
    margin-bottom: 15px;
    flex-grow: 1;
}

.work-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
}

.work-meta span {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.work-meta i {
    color: rgba(255, 255, 255, 0.8) !important;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-meta span {
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* 关于我们区域 - 使用通用选择器 */
.about-section,
section[class*="about"] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 0;
}

.about-section *,
section[class*="about"] * {
    color: #fff !important;
}

.about-section .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95) !important;
}

.about-section .feature-item i {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
}

.about-section .feature-item span {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 常见问题区域 */
.faq-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 0;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.accordion-button {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* 合作伙伴区域 */
.partners-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 0;
}

.partner-logo-wrapper {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-logo-wrapper:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.partner-link {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    /* 移除会导致图片变白的filter */
    /* filter: brightness(0) invert(1); */
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    max-height: 70px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    /* 如果Logo是深色的，可以添加白色边框或者背景 */
    padding: 8px;
}

.partner-logo-wrapper:hover .partner-logo {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.15);
}

/* 如果图片加载失败或为空，显示占位符 */
.partner-logo:not([src]),
.partner-logo[src=""],
.partner-logo[src="#"] {
    display: none;
}

.partner-logo-wrapper:has(.partner-logo:not([src])),
.partner-logo-wrapper:has(.partner-logo[src=""]),
.partner-logo-wrapper:has(.partner-logo[src="#"]) {
    background: rgba(255, 255, 255, 0.1);
}

.partner-logo-wrapper:has(.partner-logo:not([src]))::after,
.partner-logo-wrapper:has(.partner-logo[src=""])::after,
.partner-logo-wrapper:has(.partner-logo[src="#"])::after {
    content: '合作伙伴';
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 统计数据区域 */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    min-width: 200px;
}

.trust-badge {
    transition: all 0.3s;
}

.trust-badge:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.trust-badge i {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.trust-badge .trust-number {
    color: #fff !important;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    margin: 15px 0 10px;
}

.trust-badge .trust-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 通用文本可见性增强 */
.section-subtitle,
.about-description,
.feature-item,
.news-meta,
.work-meta {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 列表样式 */
ul li, ol li {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 标签样式 */
.work-category .badge,
.news-badge .badge {
    background: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

/* 链接颜色 */
.service-link,
.news-read-more,
.work-link {
    color: #fff !important;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.service-link:hover,
.news-read-more:hover,
.work-link:hover {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

/* 图标颜色 */
.fas, .far, .fab {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 下拉菜单 */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

.dropdown-item {
    color: #fff !important;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

/* 分页样式 */
.pagination .page-link {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary) !important;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
}

.pagination .page-link:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

/* 服务区域背景 - 增强所有section的可见性 */
section.py-5:not(.hero-section):not(.cta-section):not(.page-header) {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* 移除bg-light背景 */
.bg-light {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* 测试评价区域 */
.testimonials-section {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 0;
}

.testimonials-section * {
    color: #fff !important;
}

/* 反馈/评价卡片 - 优化布局和显示 */
.testimonial-card-large {
    background: rgba(255, 255, 255, 0.28) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
}

.testimonial-card-large:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.32) !important;
}

.testimonial-card-large:hover::before {
    opacity: 1;
}

.quote-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.3) !important;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: all 0.3s;
    line-height: 1;
}

.testimonial-card-large:hover .quote-icon {
    color: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.05);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial-text-large {
    color: rgba(255, 255, 255, 0.98) !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-size: 1.15rem;
    line-height: 1.85;
    margin: 0;
    font-style: italic;
    font-weight: 400;
    position: relative;
    padding: 0 5px;
    text-align: left;
    width: 100%;
}

.testimonial-text-large::before,
.testimonial-text-large::after {
    content: '"';
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.25);
    position: absolute;
    font-family: serif;
    font-weight: 300;
    line-height: 1;
}

.testimonial-text-large::before {
    top: -10px;
    left: -10px;
}

.testimonial-text-large::after {
    bottom: -25px;
    right: -5px;
}

.testimonial-author-large {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    position: relative;
    z-index: 2;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: auto;
}

.author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    flex-shrink: 0;
}

.testimonial-card-large:hover .author-avatar {
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.author-avatar i {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.95) !important;
}

.author-info {
    text-align: left;
    flex-grow: 1;
}

.author-name {
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 6px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.author-title {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

.author-rating {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.author-rating i {
    color: #ffd700 !important;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.4));
    transition: transform 0.2s;
}

/* 合作伙伴区域 */
.partners-section {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 0;
}

.partners-section * {
    color: #fff !important;
}

/* 确保所有主要内容区域文本可见 */
.services-section p,
.works-section p,
.news-section p,
.about-section p,
.testimonials-section p,
.partners-section p,
.faq-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 确保所有列表项可见 */
.services-section li,
.works-section li,
.news-section li,
.about-section li {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
    }
    
    .card, .service-card {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .trust-badge {
        min-width: 150px;
        padding: 20px;
    }
    
    h1, h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-header {
        background: rgba(255, 255, 255, 0.3) !important;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .testimonial-card-large {
        padding: 30px 20px;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .testimonial-text-large {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .testimonial-text-large::before,
    .testimonial-text-large::after {
        font-size: 2rem;
    }
    
    .author-avatar {
        width: 55px;
        height: 55px;
    }
    
    .author-avatar i {
        font-size: 1.8rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.85rem;
    }
    
    .testimonial-author-large {
        gap: 15px;
        padding-top: 20px;
    }
    
    .work-image,
    .news-image {
        height: 200px;
    }
    
    .partner-logo-wrapper {
        padding: 15px;
    }
}

/* 按钮增强 */
.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* 空状态样式 */
.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-muted i {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* 图片样式 */
img.img-fluid {
    border-radius: 15px;
}

/* Swiper轮播按钮在testimonials区域的样式 */
.testimonials-slider-wrapper {
    padding: 20px 0 60px;
}

.testimonials-prev,
.testimonials-next {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.testimonials-prev::after,
.testimonials-next::after {
    font-size: 22px;
    font-weight: 700;
}

.testimonials-pagination {
    bottom: 10px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 0.7;
    transition: all 0.3s;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #fff !important;
    opacity: 1;
    width: 35px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

