﻿@charset "utf-8";

       /* 頁尾樣式 */
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #ffd700;
        }

        .footer-section p {
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }

        .footer-contact-info i {
            color: #ffd700;
            margin-right: 8px;
        }

        .footer-contact-info a {
            color: #FF9900;
          }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #333;
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #ffd700;
            color: #1a1a1a;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
        }

        /* 主要內容區域（示例） */
        .main-content {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 2rem 20px;
            min-height: 60vh;
        }

        /* 響應式設計 */
        @media screen and (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: #1e3c72;
                width: 100%;
                text-align: center;
                transition: left 0.3s ease;
                box-shadow: 0 10px 27px rgba(0,0,0,0.3);
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                width: 100%;
            }

            .nav-menu li a {
                padding: 1.2rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            /* 頁尾快速連結和服務項目置中 */
            .footer-section ul {
                text-align: center;
            }

            .footer-section h3 {
                text-align: center;
            }

            .logo {
                font-size: 1.2rem;
            }
        }

        @media screen and (max-width: 480px) {
            .logo {
                font-size: 1rem;
            }

            .nav-menu li a {
                font-size: 0.9rem;
            }
        }


.footer-contact-info a {
            color: #FF9900;
}