:root {
            --header-height-initial: 80px;
            --font-primary: 'Noto Sans TC', 'Inter', sans-serif;
            --font-display: 'Noto Serif TC', serif;
            --color-gold: #C9A961;
            --color-gold-light: #D4AF37;
            --color-ink: #1a1a1a;
            --color-ink-light: #2d2d2d;
            --primary-color: #1a1a1a;
            --accent-color: #C9A961;
            --text-primary: #333333;
            --text-secondary: #6c757d;
            --background-primary: #FFFFFF;
            --background-secondary: #F7F9FC;
        }
        
        html { 
            scroll-behavior: smooth; 
            scroll-padding-top: 80px;
        }
        
        body { 
            font-family: var(--font-primary); 
            background: var(--background-secondary); 
            color: var(--text-primary); 
            line-height: 1.75;
        }
        
        /* Hero 區域 */
        .testimonials-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/testimonials--bg04.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            padding-top: var(--header-height-initial);
            box-sizing: border-box;
        }
        
        .testimonials-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23C9A961" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
            opacity: 0.3;
        }
        
        /* 推薦文卡片 */
        .testimonial-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-card blockquote {
            font-size: 1.05rem;
            line-height: 1.85;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .testimonial-card blockquote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 4rem;
            color: var(--color-gold);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .avatar-glow {
            border: 3px solid var(--color-gold);
            box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
        }
        
        .insider-note {
            position: relative;
            padding-left: 1.2rem;
        }
        
        .insider-note::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--color-gold), var(--color-gold-light));
            border-radius: 2px;
        }
        
        .rating-stars i {
            display: inline-block;
            animation: starPulse 2s ease-in-out infinite;
        }
        
        .rating-stars i:nth-child(1) { animation-delay: 0s; }
        .rating-stars i:nth-child(2) { animation-delay: 0.1s; }
        .rating-stars i:nth-child(3) { animation-delay: 0.2s; }
        .rating-stars i:nth-child(4) { animation-delay: 0.3s; }
        .rating-stars i:nth-child(5) { animation-delay: 0.4s; }
        
        @keyframes starPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }
        
        .tag-badge {
            transition: all 0.3s ease;
            cursor: default;
        }
        
        .tag-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-image {
            overflow: hidden;
        }
        
        .testimonial-image img {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .testimonial-card:hover .testimonial-image img {
            transform: scale(1.08);
        }
        
        .service-icon-wrapper {
            transition: all 0.3s ease;
        }
        
        .service-icon-wrapper:hover {
            transform: translateY(-5px);
        }
        
        .service-icon-wrapper i {
            transition: all 0.3s ease;
        }
        
        .service-icon-wrapper:hover i {
            transform: scale(1.2) rotate(5deg);
            color: var(--color-gold-light);
        }
        
        @media (max-width: 767px) {
            .testimonial-card blockquote {
                font-size: 0.95rem;
                line-height: 1.7;
                padding-left: 1rem;
            }
            
            .testimonial-card blockquote::before {
                font-size: 3rem;
                top: -5px;
            }
            
            /* 手機版家族照片縮小 */
            .testimonial-image {
                max-height: 250px;
                overflow: hidden;
            }
            
            .testimonial-image img {
                min-height: 250px !important;
                max-height: 250px;
                object-fit: cover;
            }
        }