* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans TC', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: #fff;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
        }

        .logo img {
            height: 60px;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: #1a1a2e;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #c9a227, #e8d48b);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: #c9a227;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a.active {
            color: #c9a227;
        }

        nav a.active::after {
            width: 100%;
        }
         /* WhatsApp Float */
         .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 25px;
            background: #25D366;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(37,211,102,0.4);
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(37,211,102,0.5);
        }

        .whatsapp-btn i {
            font-size: 24px;
        }


        /* Banner Carousel */
        .banner-section {
            margin-top: 90px;
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.3) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-content {
            text-align: center;
            color: #fff;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-content h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        .slide-content p {
            font-size: 22px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
        }

        .btn-primary {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #c9a227 0%, #e8d48b 100%);
            color: #1a1a2e;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(201,162,39,0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(201,162,39,0.6);
        }

        .carousel-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #c9a227;
            transform: scale(1.2);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-arrow:hover {
            background: #c9a227;
        }

        .carousel-arrow.prev {
            left: 30px;
        }

        .carousel-arrow.next {
            right: 30px;
        }

        /* About Section */
        .about-section {
            padding: 100px 30px;
            background: #f8f9fa;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 42px;
            color: #1a1a2e;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #c9a227, #e8d48b);
        }

        .section-title p {
            color: #666;
            font-size: 18px;
            margin-top: 20px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 28px;
            color: #1a1a2e;
            margin-bottom: 20px;
        }

        .about-text p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-item i {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #c9a227 0%, #e8d48b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a2e;
            font-size: 18px;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .experience-badge span {
            font-size: 48px;
            font-weight: 700;
            color: #c9a227;
        }

        .experience-badge p {
            font-size: 14px;
        }

        /* Services Section */
        .services-section {
            padding: 100px 30px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .services-section .section-title h2 {
            color: #fff;
        }

        .services-section .section-title p {
            color: rgba(255,255,255,0.7);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(201,162,39,0.1) 0%, rgba(232,212,139,0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #c9a227;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #c9a227 0%, #e8d48b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            z-index: 1;
        }

        .service-icon i {
            font-size: 32px;
            color: #1a1a2e;
        }

        .service-card h3 {
            color: #fff;
            font-size: 20px;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Why Choose Us */
        .why-section {
            padding: 100px 30px;
            background: #fff;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .why-card {
            text-align: center;
            padding: 40px;
            border-radius: 15px;
            transition: all 0.4s ease;
            background: #f8f9fa;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .why-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .why-card:hover .why-icon {
            background: linear-gradient(135deg, #c9a227 0%, #e8d48b 100%);
        }

        .why-icon i {
            font-size: 40px;
            color: #c9a227;
            transition: color 0.4s ease;
        }

        .why-card:hover .why-icon i {
            color: #1a1a2e;
        }

        .why-card h3 {
            font-size: 22px;
            color: #1a1a2e;
            margin-bottom: 15px;
        }

        .why-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 30px;
            background: linear-gradient(135deg, #c9a227 0%, #e8d48b 100%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 56px;
            font-weight: 700;
            color: #1a1a2e;
            display: block;
        }

        .stat-label {
            font-size: 18px;
            color: #1a1a2e;
            opacity: 0.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 30px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 42px;
            color: #fff;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: rgba(255,255,255,0.7);
            font-size: 18px;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn-secondary {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            border: 2px solid #c9a227;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #c9a227;
            color: #1a1a2e;
        }

        /* Footer */
        footer {
            background: #ffffff;
    padding: 60px 30px 30px;
    color: #000000;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
        }

        .footer-brand p {
            color: #000000;
            line-height: 1.8;
            margin: 20px 0;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #c9a227;
            color: #1a1a2e;
        }

        .footer-links h4 {
            font-size: 18px;
            margin-bottom: 25px;
            color: #c9a227;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #c9a227;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(0, 0, 0, 0.6);
            margin-bottom: 15px;
        }

        .footer-contact i {
            color: #c9a227;
            width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 50px;
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.4);
            color: #000000;
        }

        .footer-bottom a {
    color: #b69521;
    text-decoration: unset;
}

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #1a1a2e;
            transition: all 0.3s ease;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

            nav ul.active {
                display: flex;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .slide-content h1 {
                font-size: 32px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

/* CMS additions */
.admin-alert { max-width: 1200px; margin: 110px auto 20px; padding: 15px 20px; border-radius: 8px; background: #fff7dc; color: #4d3b00; }
.case-content div { color: #555; line-height: 1.8; }
