   /* ===== 联系我们页面独享部分 ===== */
    /* 英雄区域 */
    .contact-hero {
        background: var(--gradient-primary);
        color: white;
        padding: 180px 0 120px;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 122, 69, 0.1) 0%, transparent 50%);
        opacity: 0.2;
    }

    .contact-hero h1 {
        color: white;
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .contact-hero p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.3rem;
        text-align: center;
        max-width: 700px;
        margin: 0 auto 40px;
    }

    .contact-hero .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }

    /* 联系方式板块 */
    .contact-methods {
        background: white;
        position: relative;
        overflow: hidden;
    }

    .contact-methods::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: var(--gradient-accent);
        border-radius: 50%;
        opacity: 0.05;
    }

    .contact-methods::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 250px;
        height: 250px;
        background: var(--gradient-secondary);
        border-radius: 50%;
        opacity: 0.05;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
        margin-top: 50px;
    }

    .contact-card {
        background: var(--light);
        border-radius: var(--radius-lg);
        padding: 50px 40px;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }

    .contact-card:hover::before {
        opacity: 1;
    }

    .contact-card:hover {
        transform: translateY(-15px) rotate(1deg);
        box-shadow: var(--shadow-lg);
    }

    .contact-card:hover .contact-icon,
    .contact-card:hover h3,
    .contact-card:hover p,
    .contact-card:hover .contact-detail {
        color: white;
        position: relative;
        z-index: 1;
    }

    .contact-icon {
        font-size: 3.5rem;
        color: var(--primary);
        margin-bottom: 25px;
        transition: var(--transition);
    }

    .contact-detail {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary);
        margin: 15px 0;
        transition: var(--transition);
    }

    .contact-note {
        font-size: 0.95rem;
        color: var(--gray);
        margin-top: 20px;
        font-style: italic;
    }

    /* 微信二维码板块 */
    .qrcode-section {
        background: var(--light);
        position: relative;
        padding: 120px 0;
    }

    .qrcode-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .qrcode-large {
        width: 220px;
        height: 220px;
        background: white;
        border-radius: var(--radius-lg);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        margin-bottom: 30px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .qrcode-large::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-accent);
        opacity: 0;
        transition: var(--transition);
        z-index: 1;
    }

    .qrcode-large:hover::before {
        opacity: 0.1;
    }

    .qrcode-large:hover {
        transform: translateY(-10px) scale(1.05);
    }

    .qrcode-large img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        position: relative;
        z-index: 2;
    }

    .qrcode-text {
        max-width: 600px;
        margin: 0 auto;
    }

    .qrcode-text h3 {
        color: var(--primary);
        margin-bottom: 20px;
    }

    /* 服务时间板块 */
    .service-hours {
        background: white;
        padding: 100px 0;
        position: relative;
    }

    .hours-container {
        max-width: 800px;
        margin: 0 auto;
        background: var(--light);
        border-radius: var(--radius-lg);
        padding: 60px;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .hours-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-secondary);
    }

    .hours-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .hour-item {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        border-bottom: 1px solid rgba(45, 50, 80, 0.1);
    }

    .hour-item:last-child {
        border-bottom: none;
    }

    .day {
        font-weight: 700;
        color: var(--primary);
    }

    .time {
        color: var(--secondary);
        font-weight: 600;
    }

    .emergency-note {
        background: rgba(255, 122, 69, 0.1);
        border-left: 5px solid var(--secondary);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 40px;
    }

    /* 联系我们页面独享响应式设计 */
    @media (max-width: 1100px) {
        .contact-hero h1 {
            font-size: 3.5rem;
        }
    }

    @media (max-width: 768px) {
        .contact-hero {
            padding: 150px 0 80px;
        }
        
        .contact-hero h1 {
            font-size: 2.8rem;
        }
        
        .contact-card {
            padding: 40px 30px;
        }
        
        .hours-container {
            padding: 40px 30px;
        }
    }

    @media (max-width: 576px) {
        .contact-hero h1 {
            font-size: 2.5rem;
        }
        
        .contact-hero p {
            font-size: 1.1rem;
        }
        
        .contact-card {
            padding: 30px 20px;
        }
        
        .contact-detail {
            font-size: 1.1rem;
        }
        
        .qrcode-large {
            width: 180px;
            height: 180px;
        }
    }