      /* ===== 联系我们页面独享CSS ===== */
        
        /* 页面标题区域 */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: 150px 0 80px;
            text-align: center;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* 联系我们内容区域 */
        .contact-content {
            padding: 80px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .contact-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            border-radius: 12px 12px 0 0;
        }
        
        .contact-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
            position: relative;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(26, 115, 232, 0); }
            100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0); }
        }
        
        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-weight: 700;
        }
        
        .contact-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .contact-info-large {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-hours {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .contact-hours span {
            display: flex;
            justify-content: space-between;
        }
        
        .contact-hours .day {
            font-weight: 600;
        }
        
        .contact-hours .time {
            color: var(--primary-color);
        }
        
        /* 微信二维码区域 */
        .wechat-section {
            background: var(--light-color);
            padding: 80px 0;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .wechat-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .wechat-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .wechat-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            font-weight: 800;
            position: relative;
            display: inline-block;
        }
        
        .wechat-content h2:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .wechat-content p {
            color: #666;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .wechat-qrcode {
            display: inline-block;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
            margin-bottom: 20px;
        }
        
        .wechat-qrcode:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .wechat-qrcode img {
            max-width: 250px;
            border-radius: 8px;
        }
        
        .wechat-tip {
            color: #666;
            font-size: 1rem;
        }
        
        /* 服务优势区域 */
        .service-advantages {
            margin-top: 60px;
        }
        
        .service-advantages h2 {
            font-size: 2.2rem;
            margin-bottom: 40px;
            text-align: center;
            color: var(--dark-color);
            font-weight: 800;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .service-advantages h2:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .advantage-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .advantage-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .advantage-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .advantage-icon {
            width: 70px;
            height: 70px;
            background: rgba(26, 115, 232, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 1.8rem;
            transition: var(--transition);
        }
        
        .advantage-item:hover .advantage-icon {
            background: var(--gradient);
            color: white;
        }
        
        .advantage-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-weight: 700;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            
            nav.active {
                max-height: 300px;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px 0;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .wechat-content h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .phone-number {
                font-size: 0.9rem;
                padding: 6px 12px;
            }
            
            .contact-card {
                padding: 30px 20px;
            }
            
            .wechat-qrcode {
                padding: 20px;
            }
            
            .wechat-qrcode img {
                max-width: 200px;
            }
        }