/* 全域設定 */
:root {
    --primary-color: #D4AF37; /* 金黃色 */
    --primary-light: #F7DC6F; /* 淺金黃 */
    --primary-dark: #B8860B; /* 深金黃 */
    --secondary-color: #996515; /* 褐金色 */
    --dark-color: #333;
    --light-color: #f4f4f4;
    --success-color: #5cb85c;
    --error-color: #d9534f;
    --gold-gradient: linear-gradient(to bottom right, #F7DC6F, #D4AF37, #B8860B); /* 金黃色漸層 */
}

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

body {
    font-family: 'Microsoft JhengHei', Arial, sans-serif;
    line-height: 1.6;
    background: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
    /* 電梯相關背景元素 */
    background-image: 
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

/* 電梯按鈕裝飾元素 */
body::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.05) 30%, rgba(212, 175, 55, 0.05) 70%, transparent);
    z-index: -1;
}

/* 電梯電纜裝飾元素 */
body::after {
    content: "";
    position: fixed;
    top: 0;
    right: 70px;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, 
        transparent, 
        transparent 15px, 
        rgba(212, 175, 55, 0.1) 15px, 
        rgba(212, 175, 55, 0.1) 30px);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background: var(--gold-gradient);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: var(--secondary-color);
}

/* 頁面頭部 */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky; /* 恢復固定頂部定位 */
    top: 0;
    z-index: 100;
    /* 電梯控制面板樣式 */
    border-bottom: 3px solid var(--primary-color);
}

/* 電梯按鈕面板裝飾 */
header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(to right,
        var(--primary-dark),
        var(--primary-dark) 30px,
        var(--primary-light) 30px,
        var(--primary-light) 60px);
    opacity: 0.3;
    z-index: 101; /* 確保在其他內容之上 */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li.active a {
    color: var(--primary-color);
}

/* 主內容區域 */
main {
    padding: 30px 0;
    min-height: 500px;
    position: relative;
}

/* 電梯樓層指示器 */
main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 100px;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 0 5px 5px 0;
    transform: translateY(-50%);
    z-index: -1;
}

/* 樓層數字指示 */
.section-title::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    opacity: 0.1;
    vertical-align: middle;
}

/* Banner 區塊 */
.banner {
    position: relative;
    height: 500px;
    background: url('../images/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* 區塊標題 */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 10px auto;
}

/* 卡片樣式 */
.card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card-img {
    height: 350px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-text {
    color: #666;
    margin-bottom: 15px;
}

/* 網格系統 */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 {
    width: 33.33%;
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
}

.col-md-8 {
    width: 66.66%;
    padding: 0 15px;
}

/* 聯絡表單 */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* 聯絡資訊 */
.contact-info {
    padding: 30px;
    background: var(--gold-gradient);
    color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 頁尾 */
footer {
    background: linear-gradient(to bottom, #333, #222);
    color: white;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

/* 添加金色裝飾 */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 20px;
}

/* 頁尾各欄設計 */
.footer-info,
.footer-links,
.footer-contact {
    width: calc(25% - 20px);
    min-width: 200px;
}

.footer-map {
    width: calc(25% - 20px);
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.company-intro {
    line-height: 1.6;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* 站內連結區塊 */
.footer-links h3,
.footer-contact h3,
.footer-map h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary-light);
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0px 0;
    position: relative;
    padding-left: 20px;
}

.footer-links a:before {
    content: "\f105"; /* FontAwesome箭頭圖標 */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-links a:hover:before {
    transform: translateX(3px);
}

/* Google地圖區塊 */
.footer-map {
    border-radius: 5px;
    overflow: hidden;
}

.google-map {
    border-radius: 5px;
    overflow: hidden;
    height: 200px;
    margin-top: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-contact h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary-light);
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 20px;
    margin-right: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-links a:hover {
    background: var(--gold-gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.line-link {
    background-color: #00B900 !important;
}

/* 聯絡頁面按鈕樣式 */
.btn-line {
    background-color: #00B900;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-line i {
    margin-right: 5px;
    font-size: 18px;
}

.btn-line:hover {
    background-color: #009900;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 電話連結樣式 */
a[href^="tel"] {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.contact-info a[href^="tel"] {
    color: var(--primary-color);
    border-bottom: 1px dashed rgba(43, 87, 151, 0.5);
}

a[href^="tel"]:hover {
    border-bottom: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-left {
    text-align: left;
}

.copyright-right {
    text-align: right;
}

.copyright-right a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-right a:hover {
    color: white;
}

/* 響應式設計 */
@media(max-width: 768px) {
    .col-md-4, .col-md-6, .col-md-8 {
        width: 100%;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    .footer-info,
    .footer-links,
    .footer-contact {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-map {
        margin: 0;
    }
    
    .google-map {
        height: 200px;
    }
    
    .banner {
        height: 300px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
} 

/* 電話按鈕樣式 */
.btn-phone {
    background: linear-gradient(to bottom right, #D4AF37, #B8860B);
    color: white;
}

.btn-phone:hover {
    background: linear-gradient(to bottom right, #F7DC6F, #D4AF37);
    opacity: 0.95;
}

/* 返回頂部電梯按鈕 */
#elevator-to-top {
    position: fixed;
    right: 20px;
    bottom: -80px;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

#elevator-to-top.show {
    bottom: 60px;
    opacity: 1;
}

#elevator-to-top.moving {
    animation: elevatorMoving 1s ease;
}

#elevator-to-top .elevator-button-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#elevator-to-top .elevator-icon {
    font-size: 22px;
    margin-bottom: -4px;
    position: relative;
}

#elevator-to-top .elevator-text {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 電梯門效果 */
#elevator-to-top::before,
#elevator-to-top::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    transition: transform 0.5s ease;
}

#elevator-to-top::before {
    left: 0;
    transform: translateX(-100%);
}

#elevator-to-top::after {
    right: 0;
    transform: translateX(100%);
}

#elevator-to-top:hover::before {
    transform: translateX(0);
}

#elevator-to-top:hover::after {
    transform: translateX(0);
}

/* 電梯上升動畫 */
@keyframes elevatorMoving {
    0% {
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    10% {
        transform: translateY(5px);
        box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    }
    30% {
        transform: translateY(-100px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    }
    70% {
        transform: translateY(-300px);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-500px);
        opacity: 0;
    }
} 

/* 重新設計的電梯主題header */
.elevator-header {
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary-color);
}

/* 電梯樓層指示器 */
.elevator-floor-indicator {
    background-color: #222;
    color: var(--primary-color);
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floor-lights {
    display: flex;
    justify-content: center;
    margin-right: 20px;
}

.floor-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #555;
    margin: 0 5px;
    position: relative;
}

.floor-light.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-light);
}

.floor-light:before {
    content: attr(data-floor);
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: #888;
}

.current-floor {
    display: flex;
    align-items: center;
    background-color: #111;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid var(--primary-dark);
}

.floor-number {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 10px;
    font-family: 'Digital-7', monospace;
    text-shadow: 0 0 5px var(--primary-light);
    letter-spacing: 1px;
}

.floor-name {
    font-size: 14px;
    color: #fff;
    border-left: 1px solid #555;
    padding-left: 10px;
}

/* 電梯header容器 */
.elevator-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
}

/* Logo 區域 */
.elevator-header .logo img {
    height: 60px;
}

/* 電梯控制面板 */
.elevator-control-panel {
    display: flex;
    align-items: center;
}

.elevator-buttons {
    display: flex;
    gap: 5px;
}

/* 電梯按鈕 */
.elevator-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: radial-gradient(circle at center, #f0f0f0, #ddd);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1), inset 0 -2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin: 0 5px;
}

.elevator-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.elevator-button:hover:before {
    transform: scale(1);
}

.elevator-button.active {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px var(--primary-light), inset 0 -2px 5px rgba(0,0,0,0.05);
}

.elevator-button.active .button-floor {
    background-color: var(--primary-color);
    color: white;
}

.button-floor {
    background-color: #444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
    z-index: 2;
}

.button-label {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    z-index: 2;
    text-align: center;
}

/* 手機版漢堡選單按鈕 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 手機版菜單 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #444;
}

.mobile-floor-indicator {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: bold;
}

.mobile-close-btn {
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.mobile-menu-items {
    padding: 20px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: background 0.3s ease;
}

.mobile-menu-item:hover {
    background-color: #333;
}

.mobile-menu-item.active {
    background-color: #222;
    border-left: 3px solid var(--primary-color);
}

.mobile-floor-number {
    background-color: var(--primary-dark);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-weight: bold;
}

.mobile-menu-item.active .mobile-floor-number {
    background-color: var(--primary-color);
}

.mobile-menu-text {
    font-size: 16px;
}

/* 響應式設計 */
@media(max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .elevator-control-panel {
        display: flex;
    }
}

@media(max-width: 768px) {
    .elevator-buttons {
        display: none;
    }
    
    .main-nav,
    .nav-list {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .current-floor {
        margin: 0 auto;
    }
    
    .floor-lights {
        display: none;
    }
    
    .elevator-header .container {
        padding: 10px;
    }
    
    .elevator-header .logo img {
        height: 40px;
    }
} 

/* 電梯燈閃爍動畫 */
@keyframes blink {
    0% { opacity: 1; box-shadow: 0 0 5px var(--primary-light); }
    50% { opacity: 0.4; box-shadow: 0 0 15px var(--primary-light); }
    100% { opacity: 1; box-shadow: 0 0 5px var(--primary-light); }
}

.floor-light.blink {
    animation: blink 0.5s ease;
}

/* 電梯按鈕按下效果 */
.elevator-button.pressed {
    transform: scale(0.95);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1), inset 0 1px 5px rgba(0,0,0,0.1);
}

/* Digital-7字型的備用 */
@font-face {
    font-family: 'Digital-7';
    src: local('Digital-7');
    font-weight: normal;
    font-style: normal;
}

/* 替代字型 */
.floor-number {
    font-family: 'Digital-7', 'Courier New', monospace;
} 

/* 修改電梯header結構 */
.header-main {
    background-color: white;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

/* 手機版LOGO需要居中 */
@media(max-width: 768px) {
    .header-main .container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 10px 15px;
    }
    
    /* LOGO放中間 */
    .logo {
        grid-column: 2;
        text-align: center;
    }
    
    /* 漢堡選單放右邊 */
    .mobile-menu-toggle {
        grid-column: 3;
        justify-self: end;
    }
}

/* 傳統選單樣式 */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    margin: 0 10px;
    position: relative;
}

.nav-list li.active:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-floor {
    font-size: 10px;
    background-color: var(--primary-dark);
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
}

.nav-text {
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-list li.active .nav-link .nav-text {
    color: var(--primary-color);
}

.nav-list li.active .nav-floor {
    background-color: var(--primary-color);
}

.nav-link:hover .nav-text {
    color: var(--primary-color);
}

/* 重新設計的電梯控制面板，在較小的螢幕上顯示 */
.elevator-control-panel {
    display: none;
} 

/* 調整響應式佈局 */
@media(max-width: 992px) {
    .footer-info,
    .footer-links,
    .footer-contact {
        width: calc(33.33% - 15px);
    }
    
    .footer-map {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .footer-info,
    .footer-links,
    .footer-contact,
    .footer-map {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-map {
        margin: 0;
    }
    
    .google-map {
        height: 200px;
    }
    
    .copyright {
        flex-direction: column;
        gap: 10px;
    }
    
    .copyright-left,
    .copyright-right {
        text-align: center;
        width: 100%;
    }
} 