   /* 独享CSS部分 - 服务页面专用 */
        /* 动态背景 */
        .dynamic-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 102, 255, 0.05);
            animation: float 15s infinite linear;
        }

        .bg-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
            animation-duration: 25s;
        }

        .bg-element:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation-duration: 20s;
            animation-direction: reverse;
        }

        .bg-element:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 10%;
            animation-duration: 30s;
        }

        /* 页面标题区域 */
        .page-hero {
            height: 50vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .page-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -2;
        }

        .page-hero-content {
            max-width: 900px;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .page-hero p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .page-hero-shape {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--light);
            clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
            z-index: -1;
        }

        /* 服务筛选器 */
        .service-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid #E0E6ED;
            border-radius: 50px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* 服务网格 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            transform: translateY(50px);
            opacity: 0;
        }

        .service-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .service-icon {
            height: 180px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 60px;
            position: relative;
            overflow: hidden;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .service-card:hover .service-icon::after {
            transform: translateX(100%);
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .service-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
            display: block;
            margin-bottom: 15px;
        }

        .service-time {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: var(--gray);
        }

        .service-time i {
            margin-right: 8px;
            color: var(--accent);
        }

        .service-details {
            margin-top: 25px;
            border-top: 1px solid #E0E6ED;
            padding-top: 20px;
        }

        .detail-section {
            margin-bottom: 20px;
        }

        .detail-section h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--dark);
            display: flex;
            align-items: center;
        }

        .detail-section h4 i {
            margin-right: 8px;
            color: var(--primary);
        }

        .detail-section ul {
            list-style-type: none;
            padding-left: 0;
        }

        .detail-section li {
            margin-bottom: 8px;
            color: var(--gray);
            position: relative;
            padding-left: 20px;
        }

        .detail-section li::before {
            content: '•';
            color: var(--accent);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .free-tag {
            display: inline-block;
            background: var(--gradient-secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-left: 10px;
        }

        /* 服务详情模态框 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 800px;
            margin: 50px auto;
            padding: 40px;
            position: relative;
            animation: modalFadeIn 0.5s;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--secondary);
            transform: rotate(90deg);
        }

        .modal-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #E0E6ED;
        }

        .modal-header h2 {
            font-size: 32px;
            margin-bottom: 10px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .modal-price {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .modal-time {
            display: flex;
            align-items: center;
            color: var(--gray);
            margin-bottom: 10px;
        }

        .modal-time i {
            margin-right: 8px;
            color: var(--accent);
        }

        .modal-body {
            margin-bottom: 30px;
        }

        .modal-section {
            margin-bottom: 30px;
        }

        .modal-section h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark);
            display: flex;
            align-items: center;
        }

        .modal-section h3 i {
            margin-right: 10px;
            color: var(--primary);
        }

        .modal-section ul {
            list-style-type: none;
            padding-left: 0;
        }

        .modal-section li {
            margin-bottom: 10px;
            color: var(--gray);
            position: relative;
            padding-left: 25px;
        }

        .modal-section li::before {
            content: '✓';
            color: var(--accent);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .modal-footer {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #E0E6ED;
        }

        /* 联系我们CTA */
        .cta-section {
            background: var(--gradient);
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 20px;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::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" width="100" height="100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
            animation: float 15s infinite linear;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }