/**
 * 朝鼎火鍋 - 主要樣式表
 * 響應式設計、現代化CSS
 */

/* === 明體字體設計 === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');

/* 明體字體變數 */
:root {
    --font-mingtai: 'Noto Serif TC', '標楷體', 'DFKai-SB', 'BiauKai', '新細明體', 'PMingLiU', 'MingLiU', serif;
}

/* === 重置和基礎樣式 === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-mingtai);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-mingtai);
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    font-weight: 300;
    letter-spacing: 0.3px;
    min-height: 100vh;
}

/* === 容器和佈局 === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 80px 0;
}

/* === 按鈕樣式 === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #D4AF37;
    color: white;
    border-color: #D4AF37;
}

.btn-primary:hover {
    background-color: #B8941F;
    border-color: #B8941F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: #ff9800;
    color: white;
    border-color: #ff9800;
}

.btn-secondary:hover {
    background-color: #f57c00;
    border-color: #f57c00;
}

.btn-outline {
    background-color: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
}

.btn-outline:hover {
    background-color: #D4AF37;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* === 標題樣式 === */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
    font-family: var(--font-mingtai);
    font-weight: 300;
}

/* === 頁首導航 === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.header.visible {
    transform: translateY(0);
}

.header.scrolled.visible {
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: width 0.6s ease;
}

.header:hover .navbar::after {
    width: 100%;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.logo-link {
    display: inline-block;
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-link:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}


@media (min-width: 769px) {
    .nav-menu {
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
        flex-direction: row !important;
        padding: 0 !important;
        z-index: auto !important;
        overflow: visible !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 2.5rem !important;
    }
    
    .nav-menu .mobile-menu-header {
        display: none !important;
    }
    
    .nav-menu .mobile-menu-content {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: none !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 2.5rem !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        border: none !important;
        backdrop-filter: none !important;
        justify-content: flex-start !important;
        align-items: center !important;
        flex: none !important;
    }
    
    .nav-menu .mobile-menu-content .nav-link {
        min-height: auto !important;
        margin: 0 !important;
        padding: 0.5rem 1rem !important;
        background: none !important;
        border: none !important;
        backdrop-filter: none !important;
        font-size: 1rem !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        border-radius: 0 !important;
        color: white !important;
        font-weight: 400 !important;
        letter-spacing: normal !important;
    }
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-mingtai);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 12px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-link {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: #D4AF37;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover,
.nav-link.active {
    color: #D4AF37;
    transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 20px;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.menu-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #D4AF37;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* === 英雄區域 === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-family: var(--font-mingtai);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ff9800;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === 精緻英雄區域 === */
.hero-elegant {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay-elegant {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(139, 69, 19, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.hero-content-elegant {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(212, 175, 55, 0.8);
    color: #D4AF37;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    font-family: var(--font-mingtai);
    font-weight: 300;
    animation: fadeInUp 1s ease-out;
}

.hero-title-elegant {
    font-size: 3.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    font-family: var(--font-mingtai);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle-elegant {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #ffffff;
    font-family: var(--font-mingtai);
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description-elegant {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 300;
    color: #ffffff;
    animation: fadeInUp 1s ease-out 0.8s both;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.3),
        0 0 15px rgba(255, 255, 255, 0.3),
        1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-description-elegant em {
    font-style: italic;
    color: #ffffff;
    font-size: 1.05rem;
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 0.8),
        0 0 24px rgba(255, 255, 255, 0.4),
        0 0 36px rgba(255, 255, 255, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

.hero-buttons-elegant {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-elegant {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid rgba(212, 175, 55, 0.8);
    color: #D4AF37;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

/* Heksagon風格的按鈕 */
.btn-heksagon {
    display: inline-block;
    padding: 20px 60px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: white;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    text-align: center;
    margin: 2rem 0;
}

.btn-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s;
}

.btn-elegant:hover::before {
    left: 100%;
}

.btn-elegant:hover {
    background: rgba(212, 175, 55, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-heksagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.btn-heksagon:hover::before {
    left: 100%;
}

.btn-heksagon:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-heksagon:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

.hero-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.contact-divider {
    color: #D4AF37;
    font-size: 1.2rem;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.decoration-left,
.decoration-right {
    position: absolute;
    top: 50%;
    width: 1px;
    height: 100px;
    background: linear-gradient(0deg, transparent, #D4AF37, transparent);
    transform: translateY(-50%);
    opacity: 0.6;
}

.decoration-left {
    left: 10%;
    animation: slideInLeft 1.5s ease-out 1.5s both;
}

.decoration-right {
    right: 10%;
    animation: slideInRight 1.5s ease-out 1.5s both;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-50px);
    }
    to {
        opacity: 0.6;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 0.6;
        transform: translateY(-50%) translateX(0);
    }
}

/* === 精緻區域樣式 === */
.section-header-elegant {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge-elegant {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #D4AF37;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    font-family: var(--font-mingtai);
    font-weight: 300;
}

.section-title-elegant {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-family: var(--font-mingtai);
    line-height: 1.3;
}

.section-divider-elegant {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 0 auto 2rem;
}

.section-subtitle-elegant {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle-elegant em {
    font-style: italic;
    color: #D4AF37;
    font-size: 1.05rem;
}




/* === 關於我們區域 === */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* === Heksagon風格關於我們區域 === */
.about-heksagon {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    padding: 120px 0;
    position: relative;
}

.about-heksagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.about-content-heksagon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text-heksagon {
    padding: 2rem 0;
}

.about-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #D4AF37;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.05);
    font-family: var(--font-mingtai);
    font-weight: 300;
}

.about-title-heksagon {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #2c2c2c;
    font-family: var(--font-mingtai);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-description-heksagon {
    margin-bottom: 3rem;
}

.about-description-heksagon p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.about-image-heksagon {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-image-heksagon img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-heksagon:hover img {
    transform: scale(1.05);
}

.image-overlay-heksagon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
}

.about-image-heksagon:hover .image-overlay-heksagon {
    opacity: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: #d32f2f;
    margin-bottom: 1.5rem;
    font-family: var(--font-mingtai);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-highlight {
    color: #d32f2f;
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.about-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* === 現代Footer === */
.footer-modern {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #2a2a2a 75%, #1a1a1a 100%);
    color: #ffffff;
    padding: 0.8rem 0 0.3rem;
    position: relative;
    overflow: hidden;
}

/* 流動線條裝飾 */
.footer-flowing-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flowing-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    opacity: 0.8;
}

.flowing-line.line-1 {
    top: 15%;
    width: 60%;
    left: -60%;
    animation: flowRight 20s linear infinite;
}

.flowing-line.line-2 {
    top: 45%;
    width: 80%;
    right: -80%;
    animation: flowLeft 25s linear infinite;
}

.flowing-line.line-3 {
    top: 75%;
    width: 50%;
    left: -50%;
    animation: flowRight 18s linear infinite;
}

@keyframes flowRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 100%)); }
}

@keyframes flowLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100vw - 100%)); }
}

/* 漸層背景 */
.footer-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* 主要內容區域 */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
    align-items: start;
    min-height: 0;
}

/* 品牌區域 */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #D4AF37;
    margin: 0;
    font-family: var(--font-mingtai);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #bbb;
    margin: 0;
    font-weight: 300;
}

.brand-desc {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* 移除了多餘的footer-info-grid */

/* 資訊區塊 */
.info-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: fit-content;
    min-height: 0;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #D4AF37;
    margin: 0 0 0.5rem 0;
    position: relative;
}

.title-icon {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-right: 0.5rem;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37 0%, transparent 100%);
}

/* 聯絡資訊 */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    transition: transform 0.2s ease;
}

.info-item:hover {
    transform: translateX(3px);
}

.item-icon {
    font-size: 1rem;
    color: #D4AF37;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 1.2rem;
    text-align: center;
}

.item-text {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.item-link {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.4;
}

.item-link:hover {
    color: #D4AF37;
    text-decoration: underline;
}

.map-link {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-link:hover {
    color: #D4AF37;
    text-decoration: underline;
}

/* 營業時間 - 卡片樣式 */
.hours-display {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 0.6rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: fit-content;
}

.hours-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.1);
}

/* 營業時間 - 簡化樣式 */
.hours-simple {
    text-align: left;
}

/* ========================================
   新設計區域樣式
======================================== */

/* === 關於我們區域 - 現代設計 === */
.about-modern {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    animation: floatUpDown 6s ease-in-out infinite;
}

.float-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-badge-modern {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.decoration-diamond {
    width: 12px;
    height: 12px;
    background: #D4AF37;
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-header {
    margin-bottom: 2rem;
}

.content-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.title-underline {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0.3));
    border-radius: 2px;
}

.content-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.golden-highlight {
    color: #D4AF37;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.content-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-modern {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-primary-modern {
    background: linear-gradient(45deg, #D4AF37, #F4D03F);
    color: #1a1a1a;
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn-modern:active .btn-ripple {
    width: 200px;
    height: 200px;
}

/* 視覺區域 */
.about-visual-area {
    position: relative;
}

.visual-container {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.main-image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bubbleFloat 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.bubble-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 50%;
    left: 5%;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

.bubble-icon svg {
    width: 20px;
    height: 20px;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* 特色展示 */
.about-features-modern {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
    color: #F4D03F;
}

.feature-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-bg {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
}

.feature-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* === 菜單展示區域 === */
.menu-showcase {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    overflow: hidden;
}

.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.steam-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.steam {
    position: absolute;
    width: 3px;
    height: 100px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50px;
    animation: steamRise 3s ease-in-out infinite;
}

.steam-1 {
    left: 20%;
    animation-delay: 0s;
}

.steam-2 {
    left: 50%;
    animation-delay: 1s;
}

.steam-3 {
    left: 80%;
    animation-delay: 2s;
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-150px) scale(0.8);
    }
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-badge-luxury {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    color: #D4AF37;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.section-title-luxury {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.luxury-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.deco-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.deco-center svg {
    width: 30px;
    height: 30px;
    color: #D4AF37;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.section-subtitle-luxury {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.luxury-quote {
    color: #D4AF37;
    font-style: italic;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.menu-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.showcase-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.showcase-visual {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.visual-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-item:hover .visual-container img {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(212, 175, 55, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .visual-overlay {
    opacity: 1;
}

.rank-crown {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: crownGlow 2s ease-in-out infinite alternate;
}

@keyframes crownGlow {
    0% { box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.8); }
}

.rank-crown svg {
    width: 25px;
    height: 25px;
    color: #1a1a1a;
}

.rank-number {
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
}

.rank-medal {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
}

.rank-medal.silver {
    background: linear-gradient(45deg, #C0C0C0, #E5E5E5);
    color: #1a1a1a;
}

.rank-medal.bronze {
    background: linear-gradient(45deg, #CD7F32, #D2691E);
}

.rank-medal:not(.silver):not(.bronze) {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
}

.hover-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.info-badges {
    display: flex;
    gap: 0.5rem;
}

.info-badges span {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-popular { background: linear-gradient(45deg, #FF6B6B, #FF8E53); }
.badge-healthy { background: linear-gradient(45deg, #4ECDC4, #44A08D); }
.badge-creamy { background: linear-gradient(45deg, #F093FB, #F5576C); }
.badge-mild { background: linear-gradient(45deg, #4FACFE, #00F2FE); }
.badge-spicy { background: linear-gradient(45deg, #FA709A, #FEE140); }
.badge-premium { background: linear-gradient(45deg, #A8EDEA, #FED6E3); }
.badge-thai { background: linear-gradient(45deg, #FF9A9E, #FECFEF); }
.badge-seafood { background: linear-gradient(45deg, #667eea, #764ba2); }

.price-display {
    background: rgba(212, 175, 55, 0.9);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.showcase-content {
    padding: 2rem;
}

.item-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-divider {
    width: 40px;
    height: 2px;
    background: #D4AF37;
    margin-bottom: 1rem;
}

.item-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.item-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.feature-point svg {
    width: 16px;
    height: 16px;
    color: #4ECDC4;
}

.menu-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-luxury {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #D4AF37, #F4D03F);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 24px;
    height: 24px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-luxury:hover .btn-glow {
    opacity: 1;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .about-content-grid,
    .menu-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title-modern,
    .section-title-luxury {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-modern,
    .menu-showcase {
        padding: 4rem 0;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .showcase-visual {
        height: 200px;
    }
    
    .section-title-modern,
    .section-title-luxury {
        font-size: 2rem;
    }
}

/* === 美食探索區域 === */
.discovery-immersive {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
    overflow: hidden;
}

.discovery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.1;
}

.layer-1 {
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: parallaxMove1 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: parallaxMove2 25s ease-in-out infinite;
}

.layer-3 {
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: parallaxMove3 30s ease-in-out infinite;
}

@keyframes parallaxMove1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -30px) rotate(180deg); }
}

@keyframes parallaxMove2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 20px) rotate(-180deg); }
}

@keyframes parallaxMove3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 25px) rotate(90deg); }
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #D4AF37, transparent);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle-1 { left: 10%; animation-delay: 0s; }
.particle-2 { left: 30%; animation-delay: 3s; }
.particle-3 { left: 50%; animation-delay: 6s; }
.particle-4 { left: 70%; animation-delay: 9s; }
.particle-5 { left: 90%; animation-delay: 12s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.discovery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.discovery-content {
    position: relative;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3.5rem;
    transition: all 0.4s ease;
}

.content-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.brand-showcase {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.brand-logo-enhanced {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #D4AF37;
    transition: all 0.3s ease;
}

.brand-logo-enhanced:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.discovery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.title-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.accent-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.accent-diamond svg {
    width: 20px;
    height: 20px;
    color: #D4AF37;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.discovery-narrative {
    margin-bottom: 2.5rem;
}

.narrative-title {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.narrative-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.experience-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    color: #D4AF37;
    flex-shrink: 0;
}

.highlight-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.discovery-actions {
    display: flex;
    gap: 1rem;
}

.btn-discovery {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-discovery.primary {
    background: linear-gradient(45deg, #D4AF37, #F4D03F);
    color: #1a1a1a;
}

.btn-discovery.secondary {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
}

.btn-discovery:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* 互動畫廊 */
.discovery-gallery {
    position: relative;
}

.gallery-container {
    position: relative;
}

.gallery-showcase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-showcase:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.showcase-main {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.main-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-showcase:hover .showcase-overlay {
    transform: translateY(0);
}

.overlay-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.overlay-description {
    color: rgba(255, 255, 255, 0.8);
    transition: opacity 0.3s ease;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.thumbnail-item {
    position: relative;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.thumbnail-item.active {
    border: 2px solid #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: scale(1.02);
}

.thumbnail-item.active:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

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

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumb-overlay {
    opacity: 1;
}

.thumb-overlay svg {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
}

.gallery-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-element {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: decoFloat 8s ease-in-out infinite;
}

.deco-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.deco-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.deco-3 {
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes decoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.8; }
}

/* === 店家特色區域 === */
.advantages-premium {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    overflow: hidden;
}

.advantages-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    animation: shapeFloat 12s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    border-radius: 20% 80% 20% 80%;
    top: 40%;
    left: 80%;
    animation-delay: 6s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: 20%;
    left: 20%;
    animation-delay: 9s;
}

@keyframes shapeFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
}

.advantages-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge-premium {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 35px;
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.section-title-premium {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.premium-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.deco-flourish {
    flex: 1;
    max-width: 150px;
}

.deco-flourish svg {
    width: 100%;
    height: 20px;
    color: #D4AF37;
    opacity: 0.8;
}

.deco-center svg {
    width: 40px;
    height: 40px;
    color: #D4AF37;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    animation: centerSpin 10s linear infinite;
}

@keyframes centerSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-subtitle-premium {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.advantages-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.advantage-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item:nth-child(even) {
    direction: rtl;
}

.advantage-item:nth-child(even) > * {
    direction: ltr;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.advantage-visual {
    position: relative;
    text-align: center;
}

.visual-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.advantage-item:hover .visual-background {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
}

.icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.advantage-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    color: #F4D03F;
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconGlow 4s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.quality-badges,
.options-showcase,
.service-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item,
.option-item,
.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge-item:hover,
.option-item:hover,
.service-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.badge-item svg,
.option-item svg,
.service-item svg {
    width: 16px;
    height: 16px;
}

.advantage-content {
    padding: 1rem;
}

.advantage-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.advantage-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.advantage-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    color: #D4AF37;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.hours-main {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

/* === CTA 立即預約區域 === */
.cta-immersive {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #8B6914 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.pattern-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: patternMove 15s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.floating-elements-cta {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ctaFloat 8s ease-in-out infinite;
}

.cta-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.cta-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.cta-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

.cta-4 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes ctaFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.1); 
        opacity: 0.6;
    }
}

.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ray {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rayMove 4s ease-in-out infinite;
}

.ray-1 {
    left: 30%;
    animation-delay: 0s;
}

.ray-2 {
    left: 50%;
    animation-delay: 1s;
}

.ray-3 {
    left: 70%;
    animation-delay: 2s;
}

@keyframes rayMove {
    0%, 100% { 
        opacity: 0;
        transform: scaleY(0);
    }
    50% { 
        opacity: 1;
        transform: scaleY(1);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-header {
    margin-bottom: 4rem;
}

.header-decoration {
    margin-bottom: 2rem;
}

.deco-star svg {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
    opacity: 0.8;
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

.cta-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1), transparent);
    transform: translate(-50%, -50%);
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}

.cta-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.subtitle-accent {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 1.2rem;
}

.cta-actions {
    margin-bottom: 4rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-cta {
    position: relative;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    justify-content: center;
}

.btn-cta.primary {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    color: #D4AF37;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta.primary:hover {
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover .btn-background {
    opacity: 1;
}

.btn-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn-cta:hover .btn-icon {
    transform: scale(1.1);
}

.action-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.divider-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.divider-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

.quick-contact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-info {
    flex: 1;
}

.contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-value {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.cta-enhancement {
    text-align: center;
}

.enhancement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.badge-icon {
    width: 24px;
    height: 24px;
    animation: badgeIconSpin 4s linear infinite;
}

@keyframes badgeIconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 響應式設計 - 新區域 */
@media (max-width: 1024px) {
    .discovery-layout,
    .advantage-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title-premium,
    .cta-title {
        font-size: 3rem;
    }
    
    .discovery-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .discovery-immersive,
    .advantages-premium,
    .cta-immersive {
        padding: 4rem 0;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .content-wrapper {
        padding: 2rem;
    }
    
    .advantage-item {
        padding: 2rem;
    }
    
    .quick-contact {
        padding: 1.5rem;
    }
    
    .section-title-premium,
    .cta-title {
        font-size: 2.5rem;
    }
    
    .discovery-title {
    font-size: 1.8rem;
    }
    
    .advantage-title {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 160px;
    }
}

/* ========================================
   頁面專屬樣式 - PAGES
======================================== */

/* === 菜單頁面樣式 === */
.page-hero-immersive {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    min-height: 60vh;
}

.hero-background-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.layer-1 {
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: layerMove1 25s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: layerMove2 30s ease-in-out infinite;
}

.layer-3 {
    background: radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: layerMove3 35s ease-in-out infinite;
}

@keyframes layerMove1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes layerMove2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(1.05); }
}

@keyframes layerMove3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.08); }
}

.floating-ingredients {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ingredient {
    position: absolute;
    width: 60px;
    height: 60px;
    color: rgba(212, 175, 55, 0.3);
    animation: ingredientFloat 8s ease-in-out infinite;
}

.ingredient-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.ingredient-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.ingredient-3 {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes ingredientFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge-luxury {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hero-title-luxury {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    line-height: 1.1;
}

.title-decoration-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.deco-line-luxury {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.deco-diamond-luxury svg {
    width: 35px;
    height: 35px;
    color: #D4AF37;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(45deg); }
}

.hero-subtitle-luxury {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description-luxury {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.luxury-quote-menu {
    color: #D4AF37;
    font-style: italic;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    font-weight: 400;
}

/* 菜單導航 */
.menu-navigation-premium {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.navigation-wrapper {
    position: relative;
}

.menu-categories-luxury {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.category-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.category-item:hover,
.category-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.category-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon,
.category-item.active .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-text {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item:hover .category-glow,
.category-item.active .category-glow {
    opacity: 1;
}

.category-indicator {
    position: relative;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.indicator-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 16.66%;
    background: linear-gradient(90deg, #D4AF37, #F4D03F);
    border-radius: 2px;
    transition: transform 0.4s ease;
    transform: translateX(0);
}

/* 菜單區域 */
.menu-section-premium {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gradient-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.wave-1 {
    animation-delay: 0s;
    transform: rotate(0deg);
}

.wave-2 {
    animation-delay: 6s;
    transform: rotate(120deg);
}

.wave-3 {
    animation-delay: 12s;
    transform: rotate(240deg);
}


.section-header-premium {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge-premium {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
}

.section-title-premium {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.title-decoration-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.deco-flourish-left,
.deco-flourish-right {
    width: 120px;
    height: 20px;
    color: #D4AF37;
    opacity: 0.8;
}

.deco-center-premium svg {
    width: 30px;
    height: 30px;
    color: #D4AF37;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    animation: centerRotate 8s linear infinite;
}

@keyframes centerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-subtitle-premium {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
}

/* 菜單卡片 */
.menu-showcase-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.menu-card-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.menu-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card-premium:hover .visual-wrapper img {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(212, 175, 55, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card-premium:hover .visual-overlay {
    opacity: 1;
}

.rank-crown-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: crownGlowPremium 2s ease-in-out infinite alternate;
}

@keyframes crownGlowPremium {
    0% { box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.8); }
}

.rank-crown-premium svg {
    width: 30px;
    height: 30px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.rank-medal-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
}

.rank-medal-premium.silver {
    background: linear-gradient(45deg, #C0C0C0, #E5E5E5);
    color: #1a1a1a;
}

.rank-medal-premium.bronze {
    background: linear-gradient(45deg, #CD7F32, #D2691E);
}

.rank-number {
    font-size: 1.2rem;
    font-weight: 900;
}

.hover-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.details-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.details-badges span {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.badge-popular-premium { background: linear-gradient(45deg, #FF6B6B, #FF8E53); }
.badge-healthy-premium { background: linear-gradient(45deg, #4ECDC4, #44A08D); }
.badge-creamy-premium { background: linear-gradient(45deg, #F093FB, #F5576C); }
.badge-mild-premium { background: linear-gradient(45deg, #4FACFE, #00F2FE); }
.badge-spicy-premium { background: linear-gradient(45deg, #FA709A, #FEE140); }
.badge-premium-premium { background: linear-gradient(45deg, #A8EDEA, #FED6E3); }
.badge-thai-premium { background: linear-gradient(45deg, #FF9A9E, #FECFEF); }
.badge-seafood-premium { background: linear-gradient(45deg, #667eea, #764ba2); }

.steam-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.steam-line {
    position: absolute;
    width: 3px;
    height: 60px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50px;
    animation: steamRisePremium 4s ease-in-out infinite;
}

.steam-1 {
    left: 30%;
    animation-delay: 0s;
}

.steam-2 {
    left: 50%;
    animation-delay: 1s;
}

.steam-3 {
    left: 70%;
    animation-delay: 2s;
}

@keyframes steamRisePremium {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-90px) scale(0.8);
    }
}

.card-content {
    padding: 2.5rem;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.dish-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    flex: 1;
}

.price-display-premium {
    background: linear-gradient(45deg, #D4AF37, #F4D03F);
    color: #1a1a1a;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.content-divider-premium {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0.3));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.dish-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.dish-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.highlight-item svg {
    width: 18px;
    height: 18px;
    color: #4ECDC4;
    flex-shrink: 0;
}

.card-action {
    text-align: center;
}

.btn-add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #D4AF37, #F4D03F);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-add-to-cart .btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-add-to-cart:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
}

.hours-days {
    font-size: 0.85rem;
    color: #bbb;
    font-weight: 400;
}

/* 響應式設計 - 菜單頁面 */
@media (max-width: 1024px) {
    .hero-title-luxury {
        font-size: 3.5rem;
    }
    
    .menu-showcase-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-categories-luxury {
        gap: 0.5rem;
    }
    
    .category-item {
        padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

    .section-title-premium {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-hero-immersive {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }
    
    .hero-title-luxury {
        font-size: 2.8rem;
    }
    
    .hero-badge-luxury {
        padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .menu-navigation-premium {
        padding: 3rem 0;
    }
    
    .menu-categories-luxury {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .category-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .menu-section-premium {
        padding: 4rem 0;
    }
    
    .section-title-premium {
        font-size: 2.2rem;
    }
    
    .card-visual {
        height: 220px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .dish-title {
        font-size: 1.3rem;
    }
    
    .price-display-premium {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* === 其他頁面通用樣式 === */
.page-hero-standard {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    min-height: 60vh;
}

.page-hero-standard .hero-background-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-title-luxury {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.page-subtitle-luxury {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 300;
}

.page-description-luxury {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* === 內容區域通用樣式 === */
.content-section-premium {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    overflow: hidden;
}

.content-wrapper-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.content-wrapper-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.content-title-premium {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.content-text-premium {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-text-premium p {
    margin-bottom: 1.5rem;
}

.hours-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
}

/* === 浮動圖片文字布局設計 === */

/* 品牌理念浮動設計 */
.brand-philosophy-floating {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
    overflow: hidden;
}

.philosophy-background-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-philosophy-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.philosophy-bubble {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    animation: philosophyFloat 12s ease-in-out infinite;
}

.philosophy-bubble.bubble-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.philosophy-bubble.bubble-2 {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

.philosophy-bubble.bubble-3 {
    top: 40%;
    left: 60%;
    animation-delay: 8s;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(212, 175, 55, 0.05));
}

/* 浮動內容區塊 */
.brand-meaning-floating {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.floating-content-block {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    gap: 4rem;
}

.floating-content-block.ding-meaning {
    flex-direction: row-reverse;
}

.floating-image-container {
    position: relative;
    flex: 0 0 45%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.floating-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.floating-content-block:hover .floating-image {
    transform: scale(1.05);
}

.floating-char-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-mingtai);
    font-size: 7rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.9);
    text-shadow: 3px 3px 15px rgba(0,0,0,0.6);
    z-index: 3;
    letter-spacing: 2px;
}

.image-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.2) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.floating-content-block:hover .image-glow-effect {
    opacity: 1;
}

.floating-text-content {
    flex: 1;
    padding: 2rem;
}

.content-badge {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4e06d);
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-mingtai);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.content-title {
    font-family: var(--font-mingtai);
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.content-description {
    font-family: var(--font-mingtai);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.content-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-family: var(--font-mingtai);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}



/* 通用標題樣式 */
.section-header-floating {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge-floating {
    display: inline-block;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #d4af37;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: var(--font-mingtai);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
}

.section-title-floating {
    font-family: var(--font-mingtai);
    font-size: 3.8rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.title-decoration-floating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.decoration-line-floating {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.decoration-center-floating {
    width: 30px;
    height: 30px;
    color: #d4af37;
}

.section-subtitle-floating {
    font-family: var(--font-mingtai);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
}

/* 動畫效果 */
@keyframes philosophyFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}



/* 響應式設計 */
@media (max-width: 1200px) {
    .floating-content-block {
        gap: 3rem;
    }
    
    .floating-image-container {
        flex: 0 0 42%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .floating-content-block {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .floating-image-container {
        flex: none;
        width: 100%;
        height: 250px;
    }
    
    .floating-char-overlay {
        font-size: 4rem;
    }
    
    .content-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .section-title-floating {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .brand-philosophy-floating {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .floating-image-container {
        height: 200px;
        border-radius: 15px;
    }
    
    .floating-char-overlay {
        font-size: 3.5rem;
        letter-spacing: 1px;
    }
    
    .content-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }
    
    .content-description {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    
    .section-title-floating {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .floating-text-content {
        padding: 1rem;
    }
}

/* === 菜單展示Gallery樣式 === */

/* 菜單展示區域 */
.menu-gallery-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
    overflow: hidden;
}

.section-header-menu {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge-menu {
    display: inline-block;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #d4af37;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: var(--font-mingtai);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
}

.section-title-menu {
    font-family: var(--font-mingtai);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.title-decoration-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.deco-center-menu {
    width: 30px;
    height: 30px;
    color: #d4af37;
}

.section-subtitle-menu {
    font-family: var(--font-mingtai);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 菜單Gallery網格 */
.menu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.menu-gallery-item {
    position: relative;
}

/* 菜單光環效果 */
.menu-light-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 30px;
    background: conic-gradient(from 0deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.15));
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}


.menu-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 0 8px rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    z-index: 1;
}

.menu-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 15px rgba(212, 175, 55, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
}

.menu-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.menu-image-container:hover img {
    transform: scale(1.05);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(212, 175, 55, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.menu-image-container:hover .menu-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.zoom-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: #d4af37;
    animation: zoomPulse 2s ease-in-out infinite;
}

.menu-title {
    font-family: var(--font-mingtai);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-subtitle {
    font-family: var(--font-mingtai);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hover-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.menu-image-container:hover .hover-glow {
    opacity: 1;
}

/* 菜單提示 */
.menu-tips {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* 底部線條動畫 */
.menu-bottom-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    overflow: hidden;
}

.moving-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    animation: lineMove 8s ease-in-out infinite;
}

.line-1 {
    top: 15px;
    width: 300px;
    animation-delay: 0s;
}

.line-2 {
    top: 30px;
    width: 250px;
    animation-delay: 2s;
}

.line-3 {
    top: 45px;
    width: 200px;
    animation-delay: 4s;
}

@keyframes lineMove {
    0% { 
        left: -300px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% { 
        left: 100%;
        opacity: 0;
    }
}

/* === 湯頭介紹區塊 === */
.soup-showcase-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
}

.soup-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.soup-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.particle-3 {
    top: 80%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}

.soup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* 湯頭區塊標題 */
.section-header-soup {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge-soup {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #d4af37;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-mingtai);
}

.section-title-soup {
    font-family: var(--font-mingtai);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.title-decoration-soup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.deco-line-left,
.deco-line-right {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.deco-center-soup {
    color: #d4af37;
    width: 24px;
    height: 24px;
    animation: sparkle 3s ease-in-out infinite;
}

.section-subtitle-soup {
    font-family: var(--font-mingtai);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* 湯頭排行榜網格 */
.soup-ranking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.soup-rank-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.soup-rank-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.soup-rank-item:hover::before {
    opacity: 1;
}

.soup-rank-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(218, 165, 32, 0.3);
}

.rank-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: linear-gradient(135deg, #daa520, #f4d03f);
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
    z-index: 3;
}

.rank-number {
    font-family: var(--font-mingtai);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.soup-rank-item.rank-1 .rank-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}


.soup-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.soup-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.soup-rank-item:hover .soup-image-container img {
    transform: scale(1.1);
}

.soup-price {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-mingtai);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent 60%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.soup-zoom-icon {
    width: 50px;
    height: 50px;
    color: #d4af37;
    animation: zoomPulse 2s ease-in-out infinite;
    z-index: 2;
}

.overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.soup-rank-item:hover .overlay-glow {
    opacity: 1;
}

.soup-rank-item:hover .image-overlay {
    opacity: 1;
}

.soup-info {
    text-align: left;
}

.soup-name {
    font-family: var(--font-mingtai);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.soup-description {
    font-family: var(--font-mingtai);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.soup-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-mingtai);
    letter-spacing: 1px;
}

/* 湯頭說明 */
.soup-note {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

/* 湯頭提醒樣式 - 參考套餐說明 */
.soup-note .note-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.soup-note .note-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #F4E79F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.soup-note .note-icon svg {
    width: 24px;
    height: 24px;
}

.soup-note .note-text {
    flex: 1;
}

.soup-note .note-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 8px;
}

.soup-note .soup-reminder-content {
    margin-top: 1rem;
}

.soup-note .reminder-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.soup-note .soup-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.soup-note .soup-list li {
    margin: 0.5rem 0;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #F4E79F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.note-icon svg {
    width: 24px;
    height: 24px;
}

.note-text {
    flex: 1;
}

.note-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 8px;
}

.note-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}


.tips-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.tips-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #F4E79F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tips-icon svg {
    width: 24px;
    height: 24px;
}

.tips-text {
    flex: 1;
}

.tips-text h4 {
    font-family: var(--font-mingtai);
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 8px;
}

.tips-text p {
    font-family: var(--font-mingtai);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* 肉品小提醒樣式 */
.meat-reminder {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(244, 223, 159, 0.08) 50%, 
        rgba(212, 175, 55, 0.12) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 20px;
    position: relative;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.meat-reminder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 50%, 
        rgba(212, 175, 55, 0.08) 100%);
    border-radius: 12px;
    pointer-events: none;
}

.meat-reminder:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
}

.meat-reminder p {
    margin: 0;
    font-family: var(--font-mingtai);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.meat-reminder p strong {
    color: #D4AF37;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .meat-reminder {
        padding: 16px 20px;
        margin-top: 16px;
        border-radius: 10px;
    }
    
    .meat-reminder p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ====================== 個人鍋區塊樣式 ====================== */

/* 個人鍋主區塊 */
.personal-pot-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(40, 40, 40, 0.9) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    overflow: hidden;
}

/* 個人鍋網格佈局 - 專為直式照片設計 */
.personal-pot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* 個人鍋項目 - 縱向卡片設計 */
.personal-pot-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
}

.personal-pot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.personal-pot-item:hover::before {
    opacity: 1;
}

.personal-pot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(218, 165, 32, 0.3);
}

/* 個人鍋圖片容器 - 專為直式照片優化 */
.pot-image-container {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
}

.pot-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.personal-pot-item:hover .pot-image-container img {
    transform: scale(1.1);
}

/* 個人鍋縮放圖標 */
.pot-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    z-index: 3;
}

.pot-zoom-icon svg {
    width: 24px;
    height: 24px;
}

.pot-image-container:hover .pot-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* 個人鍋信息 */
.pot-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pot-name {
    font-family: var(--font-mingtai);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pot-description {
    font-family: var(--font-mingtai);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.pot-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.pot-features .feature-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-mingtai);
    transition: all 0.3s ease;
}

.pot-features .feature-tag:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
    border-color: #d4af37;
}

/* 個人鍋說明 */
.personal-pot-note {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.personal-pot-note .note-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.personal-pot-note .note-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #F4E79F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.personal-pot-note .note-icon svg {
    width: 24px;
    height: 24px;
}

.personal-pot-note .note-text {
    flex: 1;
}

.personal-pot-note .note-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 8px;
}

.personal-pot-note .note-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* 個人鍋Modal樣式 */
.personal-pot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.personal-pot-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    backdrop-filter: blur(20px);
}

.personal-pot-modal .modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.personal-pot-modal .modal-header h3 {
    color: #D4AF37;
    font-family: var(--font-mingtai);
    font-size: 1.5rem;
    margin: 0;
}

.personal-pot-modal .modal-close {
    background: none;
    border: none;
    color: #D4AF37;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.personal-pot-modal .modal-close:hover {
    transform: scale(1.1);
}

.personal-pot-modal .modal-close svg {
    width: 24px;
    height: 24px;
}

.personal-pot-modal .modal-body {
    padding: 30px;
    text-align: center;
}

.personal-pot-modal .modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 大螢幕優化 - 個人鍋 */
@media (min-width: 1200px) {
    .personal-pot-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
        gap: 60px;
    }
    
    .personal-pot-item {
        max-width: none;
    }
    
    .pot-image-container {
        height: 420px;
    }
}

/* 響應式設計 - 個人鍋 */
@media (max-width: 768px) {
    .personal-pot-section {
        padding: 60px 0;
    }
    
    .personal-pot-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .personal-pot-item {
        padding: 20px;
    }
    
    .pot-image-container {
        height: 250px;
    }
    
    .pot-name {
        font-size: 1.5rem;
    }
    
    .personal-pot-note {
        padding: 20px;
    }
    
    .personal-pot-note .note-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .personal-pot-modal .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .personal-pot-modal .modal-header {
        padding: 15px 20px;
    }
    
    .personal-pot-modal .modal-body {
        padding: 20px;
    }
}

/* ====================== 用餐資訊區塊樣式 ====================== */

/* 用餐資訊主區塊 */
.dining-info-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(40, 40, 40, 0.9) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    overflow: hidden;
}

/* 用餐資訊框容器 */
.dining-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* 資訊框樣式 */
.info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-box:hover::before {
    opacity: 1;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

/* 框標題區域 */
.box-header {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(244, 223, 159, 0.1) 50%, 
        rgba(212, 175, 55, 0.15) 100%);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.box-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        transparent 100%);
    opacity: 0.5;
}

.box-title {
    font-family: var(--font-mingtai);
    font-size: 1.4rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-arrow {
    display: none;
}

/* 框內容區域 */
.box-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.box-content p {
    font-family: var(--font-mingtai);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.box-content p:last-child {
    margin-bottom: 0;
}

.box-content p:hover {
    color: rgba(255, 255, 255, 1);
}

/* 特殊樣式：用餐須知框 */
.dining-notice-box {
    border-left: 4px solid rgba(212, 175, 55, 0.6);
}

.dining-notice-box .box-header {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.25) 0%, 
        rgba(244, 223, 159, 0.12) 50%, 
        rgba(212, 175, 55, 0.18) 100%);
}

/* 特殊樣式：計費方式框 */
.billing-method-box {
    border-left: 4px solid rgba(244, 223, 159, 0.6);
}

.billing-method-box .box-header {
    background: linear-gradient(135deg, 
        rgba(244, 223, 159, 0.25) 0%, 
        rgba(212, 175, 55, 0.12) 50%, 
        rgba(244, 223, 159, 0.18) 100%);
}

/* 子項目縮排（兒童計費方式） */
.box-content p:has(+ p:first-letter) {
    margin-left: 0;
}

.box-content p[style*="margin-left"],
.box-content p:matches(·*) {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* 特殊符號樣式 */
.box-content p:contains("·") {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.box-content p:contains("·")::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0.7rem;
    width: 4px;
    height: 4px;
    background: #D4AF37;
    border-radius: 50%;
}

/* 用餐資訊響應式設計 */
@media (max-width: 768px) {
    .dining-info-section {
        padding: 60px 0;
    }
    
    .dining-info-boxes {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .info-box {
        border-radius: 15px;
    }
    
    .box-header {
        padding: 20px 25px;
    }
    
    .box-title {
        font-size: 1.2rem;
    }
    
    .box-content {
        padding: 25px;
    }
    
    .box-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .dining-info-boxes {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .box-header {
        padding: 18px 20px;
    }
    
    .box-title {
        font-size: 1.1rem;
    }
    
    .box-content {
        padding: 20px;
    }
    
    .box-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}

/* ====================== 預約頁面樣式 ====================== */

/* 預約英雄區塊 */
.reservation-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    min-height: 60vh;
}

/* 預約頁面背景層 - 與其他頁面一致 */
.reservation-hero .hero-background-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reservation-hero .background-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.reservation-hero .layer-1 {
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: layerMove1 25s ease-in-out infinite;
}

.reservation-hero .layer-2 {
    background: radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: layerMove2 30s ease-in-out infinite;
}

.reservation-hero .layer-3 {
    background: radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: layerMove3 35s ease-in-out infinite;
}

.floating-elements-reservation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-elements-reservation .element {
    position: absolute;
    color: rgba(212, 175, 55, 0.1);
    font-size: 3rem;
    animation: elementFloat 20s ease-in-out infinite;
}

.floating-elements-reservation .element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements-reservation .element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.floating-elements-reservation .element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

/* 預約系統主區塊 */
.reservation-system-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(40, 40, 40, 0.9) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    overflow: hidden;
}

.reservation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* 波浪效果 */
.gradient-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.wave-1 {
    animation: waveMove 20s ease-in-out infinite;
    animation-delay: 0s;
}

.wave-2 {
    animation: waveMove 25s ease-in-out infinite reverse;
    animation-delay: 5s;
}

.wave-3 {
    animation: waveMove 30s ease-in-out infinite;
    animation-delay: 10s;
}

/* 粒子效果 */
.reservation-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.reservation-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0.6;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: moveAcrossScreen 15s linear infinite;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    left: 20%;
    animation: moveHorizontal 12s linear infinite;
    animation-delay: 2s;
}

.particle-3 {
    top: 60%;
    left: 30%;
    animation: moveReverse 18s linear infinite;
    animation-delay: 4s;
}

.particle-4 {
    top: 80%;
    left: 40%;
    animation: moveDiagonal 20s linear infinite;
    animation-delay: 6s;
}

.particle-5 {
    top: 30%;
    right: 20%;
    animation: moveAcrossScreen 16s linear infinite reverse;
    animation-delay: 8s;
}

.particle-6 {
    top: 70%;
    right: 30%;
    animation: moveHorizontal 14s linear infinite reverse;
    animation-delay: 10s;
}

.particle-7 {
    top: 50%;
    right: 10%;
    animation: moveDiagonal 22s linear infinite reverse;
    animation-delay: 12s;
}

/* 光暈效果 */
.light-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(0deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 2px;
}

.beam-1 {
    top: 20%;
    left: 15%;
    animation: lightBeamMove 8s ease-in-out infinite;
    animation-delay: 0s;
}

.beam-2 {
    top: 60%;
    right: 25%;
    animation: lightBeamMove 10s ease-in-out infinite reverse;
    animation-delay: 4s;
}

/* 預約按鈕區域 */
.reservation-cta {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.cta-title {
    font-family: var(--font-mingtai);
    font-size: 2.2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-description {
    font-family: var(--font-mingtai);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.reservation-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4AF37, #F4E79F);
    color: #1a1a1a;
    font-family: var(--font-mingtai);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.reservation-btn:hover::before {
    left: 100%;
}

.reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.reservation-btn svg {
    width: 24px;
    height: 24px;
}

/* 預約須知區域 */
.reservation-notes {
    position: relative;
    z-index: 2;
}

.notes-header {
    text-align: center;
    margin-bottom: 50px;
}

.notes-title {
    font-family: var(--font-mingtai);
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.note-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.note-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.note-item:hover::before {
    opacity: 1;
}

.note-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.note-item .note-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #F4E79F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.note-item .note-icon svg {
    width: 28px;
    height: 28px;
}

.note-item .note-content h4 {
    font-family: var(--font-mingtai);
    font-size: 1.3rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 10px;
}

.note-item .note-content p {
    font-family: var(--font-mingtai);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* 動畫定義 */
@keyframes waveMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(0) translateY(-20px); }
    75% { transform: translateX(-20px) translateY(-10px); }
}

@keyframes moveAcrossScreen {
    0% { transform: translateX(-50px) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 50px)) translateY(-20px); opacity: 0; }
}

@keyframes moveHorizontal {
    0% { transform: translateX(-30px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 30px)); opacity: 0; }
}

@keyframes moveReverse {
    0% { transform: translateX(calc(100vw + 30px)) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(-30px) translateY(20px); opacity: 0; }
}

@keyframes moveDiagonal {
    0% { transform: translateX(-30px) translateY(20px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 30px)) translateY(-20px); opacity: 0; }
}

@keyframes lightBeamMove {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-20px); }
}

/* 響應式設計 - 預約頁面 */
@media (max-width: 768px) {
    .reservation-hero {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }
    
    .reservation-system-section {
        padding: 60px 0;
    }
    
    .cta-card {
        padding: 30px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .reservation-btn {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .note-item {
        padding: 25px;
    }
    
    .note-item .note-icon {
        width: 50px;
        height: 50px;
    }
    
    .note-item .note-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .reservation-hero {
        padding: 5rem 0 3rem;
        min-height: 45vh;
    }
    
    .reservation-system-section {
        padding: 40px 0;
    }
    
    .cta-card {
        padding: 25px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .reservation-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .notes-title {
        font-size: 1.6rem;
    }
    
    .note-item {
        padding: 20px;
    }
}

/* 菜單Modal樣式 */
.menu-modal, .soup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-modal.active, .soup-modal.active {
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-modal.active .modal-content, .soup-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: white;
}

.modal-header h3 {
    font-family: var(--font-mingtai);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #d4af37;
}

.modal-body {
    padding: 0;
    text-align: center;
    flex: 1;
    overflow: auto;
    min-height: 0;
}

.modal-body img {
    max-width: 100%;
    max-height: calc(90vh - 160px);
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.modal-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.download-btn {
    background: linear-gradient(45deg, #d4af37, #f4e06d);
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: var(--font-mingtai);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.download-btn svg {
    width: 20px;
    height: 20px;
}

/* 動畫效果 */
@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* === 聯絡頁面精緻風格 === */
.contact-showcase-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.contact-particles .particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.contact-particles .particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.contact-particles .particle-3 {
    top: 80%;
    left: 30%;
    animation-delay: 10s;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* 聯絡區塊標題 */
.section-header-contact {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge-contact {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #d4af37;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-mingtai);
}

.section-title-contact {
    font-family: var(--font-mingtai);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.title-decoration-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.title-decoration-contact .deco-line-left,
.title-decoration-contact .deco-line-right {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.deco-center-contact {
    color: #d4af37;
    width: 24px;
    height: 24px;
    animation: sparkle 3s ease-in-out infinite;
}

.section-subtitle-contact {
    font-family: var(--font-mingtai);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* 聯絡資訊網格 */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.info-header {
    margin-bottom: 2rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: #d4af37;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-content {
    text-align: center;
}

.info-title {
    font-family: var(--font-mingtai);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.info-description {
    font-family: var(--font-mingtai);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.info-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.info-features .feature-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-mingtai);
    letter-spacing: 1px;
}

/* 聯絡說明 */
.contact-note {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.contact-note .note-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-note .note-icon {
    color: #d4af37;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-note .note-text h4 {
    font-family: var(--font-mingtai);
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-note .note-text p {
    font-family: var(--font-mingtai);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .contact-showcase-section {
        padding: 4rem 0;
    }
    
    .section-title-contact {
        font-size: 2.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-item {
        padding: 2rem;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
    
    .contact-note .note-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

/* 響應式設計 */
@media (max-width: 768px) {
    .menu-gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title-menu {
        font-size: 2.5rem;
    }
    
    .menu-title {
        font-size: 1.5rem;
    }
    
    .tips-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
    }
    
    .modal-body img {
        max-height: calc(95vh - 140px);
    }
    
    /* 湯頭區塊響應式 */
    .soup-showcase-section {
        padding: 4rem 0;
    }
    
    .section-title-soup {
        font-size: 2.5rem;
    }
    
    .soup-ranking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .soup-rank-item {
        padding: 20px;
    }
    
    .soup-name {
        font-size: 1.5rem;
    }
    
    .note-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-badge-menu {
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
    }
    
    .section-title-menu {
        font-size: 2rem;
    }
    
    .menu-tips {
        padding: 1.5rem;
    }
}

/* === 各頁面特殊浮動元素 === */
.floating-elements-about,
.floating-elements-reservation,
.floating-elements-contact {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-elements-about .element,
.floating-elements-reservation .element,
.floating-elements-contact .element {
    position: absolute;
    width: 50px;
    height: 50px;
    color: rgba(212, 175, 55, 0.2);
    animation: elementFloat 10s ease-in-out infinite;
}

.floating-elements-about .element-1 {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.floating-elements-about .element-2 {
    top: 65%;
    right: 25%;
    animation-delay: 3s;
}

.floating-elements-reservation .element-1 {
    top: 30%;
    left: 15%;
    animation-delay: 1s;
}

.floating-elements-reservation .element-2 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.floating-elements-contact .element-1 {
    top: 35%;
    left: 25%;
    animation-delay: 2s;
}

.floating-elements-contact .element-2 {
    top: 55%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes elementFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-25px) rotate(90deg);
        opacity: 0.4;
    }
}

/* === 通用引用樣式 === */
.luxury-quote {
    color: #D4AF37;
    font-style: italic;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    font-weight: 400;
}

/* === 表單和互動元素樣式 === */
.form-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.form-premium:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.form-group-premium {
    margin-bottom: 2rem;
    position: relative;
}

.form-label-premium {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.form-input-premium,
.form-select-premium,
.form-textarea-premium {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input-premium::placeholder,
.form-textarea-premium::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input-premium:focus,
.form-select-premium:focus,
.form-textarea-premium:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-textarea-premium {
    min-height: 120px;
    resize: vertical;
}

.btn-submit-premium {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #D4AF37, #F4D03F);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-submit-premium .btn-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn-submit-premium:hover .btn-icon {
    transform: scale(1.1) rotate(10deg);
}

/* === 時間線和卡片增強樣式 === */
.timeline-premium {
    position: relative;
    padding: 2rem 0;
}

.timeline-item-premium {
    position: relative;
    padding: 2rem 0;
    border-left: 3px solid rgba(212, 175, 55, 0.3);
    margin-left: 2rem;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.timeline-item-premium:hover {
    border-left-color: #D4AF37;
}

.timeline-item-premium::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 2.5rem;
    width: 12px;
    height: 12px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.timeline-item-premium:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.timeline-content-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-item-premium:hover .timeline-content-premium {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

/* === 信息卡片網格 === */
.info-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.info-card-premium:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
    color: #F4D03F;
}

.info-card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.info-card-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* === 響應式設計 - 其他頁面 === */
@media (max-width: 1024px) {
    .page-title-luxury {
        font-size: 2.8rem;
    }
    
    .info-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .content-wrapper-premium {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero-standard {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }
    
    .page-title-luxury {
        font-size: 2.2rem;
    }
    
    .page-subtitle-luxury {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-hero-standard {
        padding: 5rem 0 3rem;
        min-height: 45vh;
    }
    
    .page-description-luxury {
        font-size: 1rem;
    }
    
    .content-section-premium {
        padding: 4rem 0;
    }
    
    .content-wrapper-premium {
        padding: 1.5rem;
    }
    
    .content-title-premium {
        font-size: 1.6rem;
    }
    
    .form-premium {
        padding: 2rem;
    }
    
    .info-grid-premium {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card-premium {
        padding: 2rem;
    }
    
    .timeline-item-premium {
        margin-left: 1rem;
        padding-left: 2rem;
    }
    
    .timeline-content-premium {
        padding: 1.5rem;
    }
}

.hours-note {
    color: #999;
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0.3rem;
}

/* 地圖容器 */
.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 120px;
    max-height: 120px;
    padding: 0;
    margin: 0;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 120px;
    border: none;
    border-radius: 8px;
    display: block;
    margin: 0;
    padding: 0;
}

/* 分隔線 */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    margin: 0.5rem 0 0.3rem 0;
    position: relative;
    z-index: 2;
}

/* 底部區域 */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0;
    position: relative;
    z-index: 2;
}

/* 版權區域 */
.copyright-section {
    text-align: center;
}

.copyright-text {
    color: #999;
    font-size: 0.85rem;
    margin: 0 0 0.3rem 0;
}

.developed-by {
    color: #777;
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        align-items: start;
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 0.6rem 0 0.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0.2rem;
        align-items: start;
        min-height: 0;
    }
    
    .brand-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* 社群連結 */
.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}


/* 動作按鈕 */
.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #D4AF37;
    color: white;
    border: 1px solid #D4AF37;
}

.btn-primary:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}


/* 資訊網格 */
.footer-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info-grid .info-section {
    flex: 1;
    min-width: 200px;
}

.info-section .section-title {
    font-size: 1rem;
    font-weight: 500;
    color: #D4AF37;
    margin-bottom: 1rem;
    position: relative;
}

.info-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

/* 聯絡資訊 */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-icon {
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.contact-details a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.contact-details a:hover {
    color: #D4AF37;
    transform: translateX(3px);
}


/* 快速連結 */
.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

.nav-links a:hover::before {
    width: 100%;
}



.social-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA按鈕 */
.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-footer.primary {
    background: #D4AF37;
    color: white;
    border: 1px solid #D4AF37;
}

.btn-footer.primary:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-footer.secondary {
    background: transparent;
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-footer.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

/* 右側地圖區域 */
.footer-map-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 280px;
}

.map-header .section-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.map-description {
    color: #999;
    font-size: 0.95rem;
    font-style: italic;
}

.map-container-elegant {
    position: relative;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-frame {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.location-pin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D4AF37;
    font-weight: 500;
    font-size: 0.9rem;
}

/* 版權資訊 */
.footer-copyright {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 0.8rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.copyright-content p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

/* ===============================
   About 頁面互動樣式
   =============================== */

/* 垂直時間軸樣式 - 手機優化 */
.timeline-vertical-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.timeline-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-timeline-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.timeline-wave-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.timeline-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    animation: bubbleFloat 12s ease-in-out infinite;
}

.timeline-bubble.bubble-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.timeline-bubble.bubble-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.timeline-bubble.bubble-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 70%;
    animation-delay: 6s;
}

.timeline-bubble.bubble-4 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 40%;
    animation-delay: 9s;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(15px, -10px) scale(1.1); opacity: 0.5; }
    50% { transform: translate(-10px, 15px) scale(0.9); opacity: 0.4; }
    75% { transform: translate(20px, 5px) scale(1.05); opacity: 0.6; }
}

.wave-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: waveMove 8s ease-in-out infinite;
}

.wave-line.wave-1 {
    top: 20%;
    animation-delay: 0s;
}

.wave-line.wave-2 {
    top: 50%;
    animation-delay: 2s;
}

.wave-line.wave-3 {
    top: 80%;
    animation-delay: 4s;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-100%) scaleX(0.5); }
    50% { transform: translateX(100%) scaleX(1.5); }
}

.timeline-vertical-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #D4AF37, #B8941F);
    transition: height 0.3s ease;
}

.timeline-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.5), transparent);
    filter: blur(4px);
    z-index: -1;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-node {
    position: relative;
    margin: 4rem 0;
    display: flex;
    align-items: center;
}

.timeline-node:nth-child(odd) {
    flex-direction: row;
}

.timeline-node:nth-child(even) {
    flex-direction: row-reverse;
}

.node-trigger {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
}

.node-circle {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #D4AF37, #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.node-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.node-inner {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
}

.node-year {
    display: block;
}

.node-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: nodeRing 3s ease-in-out infinite;
}

@keyframes nodeRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.node-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    opacity: 0;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0.7;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-content.left {
    margin-right: 5%;
}

.timeline-content.right {
    margin-left: 5%;
}

.timeline-content.active {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.content-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-content:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    color: #D4AF37;
    font-size: 2rem;
}

.story-title {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.story-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.story-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.story-tags .tag {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.timeline-slider-wrapper {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
    border-radius: 15px;
}

.timeline-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.timeline-slide {
    min-width: 100%;
    padding: 0 1rem;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.timeline-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.slide-image {
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-card:hover .slide-overlay {
    opacity: 1;
}

.slide-icon {
    color: #D4AF37;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide-year-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.slide-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-header {
    margin-bottom: 1.5rem;
}

.slide-title {
    color: #D4AF37;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.slide-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 400;
}

.slide-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.slide-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-item svg {
    width: 16px;
    height: 16px;
    color: #D4AF37;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.timeline-nav-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #D4AF37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    transform: translateY(-50%);
}

.nav-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}

.nav-prev {
    left: -25px;
}

.nav-next {
    right: -25px;
}

.timeline-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

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

.indicator.active {
    background: #D4AF37;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

/* 滾動提示樣式 */
.scroll-hint {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 1;
    transition: opacity 0.5s ease;
    animation: scrollHintPulse 3s ease-in-out infinite;
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-hint-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.scroll-icon,
.scroll-arrow {
    width: 20px;
    height: 20px;
    color: #D4AF37;
    animation: scrollIconBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    animation: scrollArrowMove 2s ease-in-out infinite;
}

.scroll-text {
    font-weight: 500;
    white-space: nowrap;
}

.scroll-hint-animation {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: scrollHintShimmer 3s ease-in-out infinite;
}

@keyframes scrollHintPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateX(-50%) scale(1.05); 
        opacity: 1; 
    }
}

@keyframes scrollIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

@keyframes scrollArrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes scrollHintShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.timeline-node {
    position: relative;
    margin: 4rem 0;
    display: flex;
    align-items: center;
}

.timeline-node:nth-child(odd) {
    flex-direction: row;
}

.timeline-node:nth-child(even) {
    flex-direction: row-reverse;
}

.node-trigger {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
}

.node-circle {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #D4AF37, #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.node-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.node-inner {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
}

.node-year {
    display: block;
}

.node-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: nodeRing 3s ease-in-out infinite;
}

@keyframes nodeRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.node-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    opacity: 0;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0.7;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-content.left {
    margin-right: 5%;
}

.timeline-content.right {
    margin-left: 5%;
}

.timeline-content.active {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.content-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-content:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    color: #D4AF37;
    font-size: 2rem;
}

.story-title {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.story-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.story-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.story-tags .tag {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* 品牌理念互動樣式 */
.brand-philosophy-interactive {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    overflow: hidden;
}

.philosophy-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-symbols {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.symbol {
    position: absolute;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    font-weight: bold;
    animation: symbolFloat 20s ease-in-out infinite;
    user-select: none;
    pointer-events: none;
}

.symbol-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.symbol-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.symbol-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.symbol-4 {
    top: 40%;
    right: 40%;
    animation-delay: 15s;
}

@keyframes symbolFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
    25% { transform: translate(20px, -30px) rotate(90deg); opacity: 0.2; }
    50% { transform: translate(-15px, 20px) rotate(180deg); opacity: 0.1; }
    75% { transform: translate(25px, 10px) rotate(270deg); opacity: 0.15; }
}

.radial-gradients {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
    animation: circleExpand 12s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes circleExpand {
    0%, 100% { transform: scale(1); opacity: 0.05; }
    50% { transform: scale(1.3); opacity: 0.1; }
}

.philosophy-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.philosophy-card {
    position: relative;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-front {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-back {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: rotateY(180deg);
}

.front-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.philosophy-icon {
    margin-bottom: 2rem;
}

.icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, #D4AF37, #B8941F);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.chinese-char {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.5), transparent);
    filter: blur(8px);
    z-index: -1;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.philosophy-title {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.card-hover-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.back-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.back-image {
    position: relative;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.back-text {
    flex: 1;
    text-align: center;
}

.back-text h4 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.back-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.back-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.back-tags .tag {
    background: rgba(255, 255, 255, 0.1);
    color: #D4AF37;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* 承諾牆互動樣式 */
.promise-wall-interactive {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.promise-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.promise-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.promise-wave-1,
.promise-wave-2,
.promise-wave-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05), transparent);
    animation: promiseWave 15s ease-in-out infinite;
}

.promise-wave-1 {
    animation-delay: 0s;
    clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
}

.promise-wave-2 {
    animation-delay: 5s;
    clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 80%);
}

.promise-wave-3 {
    animation-delay: 10s;
    clip-path: polygon(0 0%, 100% 20%, 100% 40%, 0% 60%);
}

@keyframes promiseWave {
    0%, 100% { transform: translateX(0) skewY(0deg); }
    50% { transform: translateX(5%) skewY(1deg); }
}

.promise-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.promise-item {
    position: relative;
}

.promise-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.promise-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.promise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #D4AF37, #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.promise-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promise-title {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promise-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.promise-highlight {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
    align-self: center;
}

.promise-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.promise-item:hover .promise-hover-effect {
    opacity: 1;
}

/* 承諾宣言樣式 */
.promise-declaration {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
}

.declaration-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.declaration-quote {
    position: relative;
    margin-bottom: 2rem;
}

.quote-mark {
    font-size: 4rem;
    color: #D4AF37;
    font-family: serif;
    line-height: 1;
}

.quote-mark.start {
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.quote-mark.end {
    position: absolute;
    bottom: -3rem;
    right: -1rem;
}

.quote-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin: 2rem 0;
}

.declaration-signature {
    margin-top: 2rem;
}

.signature-text {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 500;
}

/* 滾動驅動效果增強 */
.timeline-slider-section.scroll-active {
    position: relative;
}

.timeline-slider-section.scroll-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
    animation: scrollActiveGlow 2s ease-out;
}

@keyframes scrollActiveGlow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.timeline-slider-track.scrolling {
    filter: brightness(1.1);
}

.nav-progress.scroll-driven {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
    animation: progressGlow 0.3s ease-out;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.7); }
    100% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.9); }
}

/* 響應式設計 - 滾動提示 */
@media (max-width: 768px) {
    .scroll-hint {
        bottom: -60px;
    }
    
    .scroll-hint-content {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .scroll-icon,
    .scroll-arrow {
        width: 16px;
        height: 16px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
}

/* 左側時間軸樣式 - 高互動設計 */
.timeline-left-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-line-left {
    position: absolute;
    left: 3rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(212, 175, 55, 0.2);
    z-index: 1;
}

.timeline-progress-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #D4AF37, #B8941F);
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

.timeline-glow-left {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.5), transparent);
    filter: blur(4px);
    z-index: -1;
}

.timeline-particles {
    position: absolute;
    top: 0;
    left: -10px;
    width: 24px;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.timeline-items-left {
    position: relative;
    z-index: 2;
}

.timeline-node-left {
    position: relative;
    margin: 4rem 0;
    display: flex;
    align-items: flex-start;
    opacity: 0.7;
    transition: all 0.6s ease;
}

.timeline-node-left.active {
    opacity: 1;
    transform: translateX(10px);
}

.node-trigger-left {
    position: absolute;
    left: 3rem;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
}

.node-circle-left {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #D4AF37, #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.node-circle-left:hover {
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.node-circle-left.active {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.node-inner-left {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    z-index: 2;
}

.node-year-left {
    display: block;
}

.node-ring-left {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: nodeRingPulse 3s ease-in-out infinite;
}

@keyframes nodeRingPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
        border-width: 2px;
    }
    50% { 
        transform: scale(1.3); 
        opacity: 0.1; 
        border-width: 1px;
    }
}

.node-pulse-left {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    opacity: 0;
    animation: nodePulseWave 4s ease-in-out infinite;
}

@keyframes nodePulseWave {
    0% { 
        transform: scale(0.8); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(1.4); 
        opacity: 0.2; 
    }
    100% { 
        transform: scale(1.8); 
        opacity: 0; 
    }
}

.node-glow-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.node-circle-left:hover .node-glow-effect {
    opacity: 1;
}

.timeline-content-left {
    width: calc(100% - 6rem);
    margin-left: 6rem;
    padding: 0;
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content-left.active {
    opacity: 1;
    transform: translateX(20px);
}

.content-card-left {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.content-card-left:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.card-header-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
}

.year-badge-left {
    background: linear-gradient(45deg, #D4AF37, #B8941F);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.story-icon-left {
    width: 40px;
    height: 40px;
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.content-card-left:hover .story-icon-left {
    transform: rotate(360deg) scale(1.1);
    background: rgba(212, 175, 55, 0.2);
}

.card-image-left {
    position: relative;
    height: 220px;
    margin: 0 2rem;
    border-radius: 15px;
    overflow: hidden;
}

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

.content-card-left:hover .card-image-left img {
    transform: scale(1.1);
}

.image-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-card-left:hover .image-overlay-left {
    opacity: 1;
}

.overlay-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.overlay-particles::before,
.overlay-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
    animation: particleFloat 2s ease-in-out infinite;
}

.overlay-particles::before {
    top: -10px;
    left: -10px;
    animation-delay: 0s;
}

.overlay-particles::after {
    top: 10px;
    left: 10px;
    animation-delay: 1s;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-20px) scale(1.2); 
        opacity: 1; 
    }
}

.card-content-left {
    padding: 2rem;
}

.story-title-left {
    color: #D4AF37;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.content-card-left:hover .story-title-left {
    transform: translateX(10px);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.story-subtitle-left {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-description-left {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.story-tags-left {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag-left {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag-left:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.card-interactive-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.content-card-left:hover .card-interactive-effect {
    left: 100%;
}

/* 響應式設計 - 垂直時間軸手機優化 */
@media (max-width: 1024px) {
    .timeline-left-container {
        padding: 0 1rem;
    }
    
    .timeline-line-left {
        left: 2.5rem;
    }
    
    .node-trigger-left {
        left: 2.5rem;
    }
    
    .node-circle-left {
        width: 70px;
        height: 70px;
    }
    
    .node-inner-left {
        font-size: 0.9rem;
    }
    
    .timeline-content-left {
        width: calc(100% - 5rem);
        margin-left: 5rem;
    }
    
    .card-header-left {
        padding: 1rem 1.5rem 0.8rem;
    }
    
    .card-image-left {
        height: 180px;
        margin: 0 1.5rem;
    }
    
    .card-content-left {
        padding: 1.5rem;
    }
    
    .story-title-left {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .timeline-vertical-section {
        padding: 4rem 0;
    }
    
    .timeline-left-container {
        padding: 0 0.5rem;
    }
    
    .timeline-line-left {
        left: 2rem;
    }
    
    .node-trigger-left {
        left: 2rem;
    }
    
    .node-circle-left {
        width: 60px;
        height: 60px;
    }
    
    .node-inner-left {
        font-size: 0.8rem;
    }
    
    .timeline-content-left {
        width: calc(100% - 4.5rem);
        margin-left: 4.5rem;
    }
    
    .card-header-left {
        padding: 1rem 1rem 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .year-badge-left {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .story-icon-left {
        width: 30px;
        height: 30px;
    }
    
    .card-image-left {
        height: 150px;
        margin: 0 1rem;
    }
    
    .card-content-left {
        padding: 1rem;
    }
    
    .story-title-left {
        font-size: 1.3rem;
    }
    
    .story-subtitle-left {
        font-size: 1rem;
    }
    
    .story-description-left {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .story-tags-left {
        gap: 0.5rem;
    }
    
    .tag-left {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
}
    
    .timeline-vertical-container {
        padding: 0 1rem;
    }
    
    .timeline-line {
        left: 2rem;
        transform: none;
    }
    
    .timeline-glow {
        left: 1.8rem;
        right: auto;
        width: 8px;
    }
    
    .timeline-node {
        flex-direction: row !important;
        margin: 2.5rem 0;
        padding-left: 0;
    }
    
    .node-trigger {
        position: absolute;
        left: 2rem;
        transform: translateX(-50%);
    }
    
    .node-circle {
        width: 60px;
        height: 60px;
    }
    
    .node-inner {
        font-size: 0.75rem;
    }
    
    .node-ring {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-width: 1px;
    }
    
    .timeline-content {
        width: calc(100% - 6rem);
        margin-left: 5rem !important;
        margin-right: 0 !important;
        padding: 1.2rem;
    }
    
    .timeline-content.left,
    .timeline-content.right {
        margin-left: 5rem;
        margin-right: 0;
    }
    
    .card-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .story-title {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .story-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .story-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .story-tags .tag {
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
    }

@media (max-width: 480px) {
    .timeline-vertical-container {
        padding: 0 0.5rem;
    }
    
    .timeline-line {
        left: 1.5rem;
    }
    
    .timeline-glow {
        left: 1.3rem;
    }
    
    .node-trigger {
        left: 1.5rem;
    }
    
    .node-circle {
        width: 50px;
        height: 50px;
    }
    
    .node-inner {
        font-size: 0.7rem;
    }
    
    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 3.5rem !important;
        padding: 1rem;
    }
    
    .timeline-content.left,
    .timeline-content.right {
        margin-left: 3.5rem;
    }
    
    .card-image {
        height: 120px;
    }
    
    .story-title {
        font-size: 1.1rem;
    }
    
    .story-subtitle {
        font-size: 0.85rem;
    }
    
    .story-description {
        font-size: 0.85rem;
    }
}

/* 舊的水平滑動時間軸相關樣式保留 */
@media (max-width: 1024px) {
    .slide-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .nav-prev {
        left: -22px;
    }
    
    .nav-next {
        right: -22px;
    }
}

@media (max-width: 768px) {
    .timeline-slider-container {
        padding: 0 1rem;
    }
    
    .slide-card {
        min-height: 500px;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .nav-points {
        max-width: 300px;
    }
    
    .point-year {
        font-size: 0.8rem;
    }
    
    .point-dot {
        width: 12px;
        height: 12px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .nav-prev {
        left: -20px;
    }
    
    .nav-next {
        right: -20px;
    }
    
    .timeline-indicators {
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .declaration-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
}

/* === 回到頂部按鈕 - 現代設計 === */
.back-to-top-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.top-button-frame {
    position: relative;
    width: 80px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.top-button-border {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(212, 175, 55, 0.1) 25%,
        rgba(212, 175, 55, 0.3) 50%,
        rgba(212, 175, 55, 0.1) 75%,
        transparent 100%
    );
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.top-button-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 2;
}

.top-text {
    color: #D4AF37;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.top-arrow {
    width: 18px;
    height: 18px;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.top-arrow svg {
    width: 100%;
    height: 100%;
}

.top-button-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

/* 懸停效果 */
.back-to-top-modern:hover .top-button-frame {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.9);
}

.back-to-top-modern:hover .top-button-border {
    opacity: 1;
}

.back-to-top-modern:hover .top-text {
    color: #F4D03F;
    transform: scale(1.1);
}

.back-to-top-modern:hover .top-arrow {
    color: #F4D03F;
    transform: translateY(-2px) scale(1.1);
}

.back-to-top-modern:hover .top-button-glow {
    opacity: 1;
}

/* 點擊效果 */
.back-to-top-modern:active .top-button-frame {
    transform: translateY(-2px) scale(0.95);
    transition: all 0.1s ease;
}

/* 動畫進入效果 */
.back-to-top-modern {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
}

.back-to-top-modern.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .back-to-top-modern {
        bottom: 20px;
        right: 20px;
    }
    
    .top-button-frame {
        width: 70px;
        height: 55px;
    }
    
    .top-text {
        font-size: 0.75rem;
    }
    
    .top-arrow {
        width: 16px;
        height: 16px;
    }
}

/* === 響應式設計 === */
@media (max-width: 768px) {
    .hero-title-elegant {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-description-elegant {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-divider {
        display: none;
    }
    
    .section-title-elegant {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Heksagon風格響應式 */
    .btn-heksagon {
        padding: 16px 40px;
        font-size: 0.8rem;
        letter-spacing: 2px;
        min-width: 200px;
        backdrop-filter: none;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .about-content-heksagon {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-title-heksagon {
        font-size: 2.5rem;
    }
    
    .about-image-heksagon img {
        height: 300px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
        font-weight: 400;
    }
    
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 0;
        z-index: 9999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        overflow: hidden;
        justify-content: flex-start;
        align-items: stretch;
        display: flex;
        list-style: none;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
        pointer-events: none;
    }

    .mobile-menu-header {
        position: relative;
        width: 100%;
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        flex-shrink: 0;
        min-height: 60px;
        box-sizing: border-box;
        z-index: 10000;
    }

    .mobile-menu-logo {
        display: none;
    }

    .mobile-menu-logo::before {
        content: '🔥';
        font-size: 1.5rem;
    }

    .mobile-close-btn {
        width: 40px;
        height: 40px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mobile-close-btn:hover {
        background: rgba(212, 175, 55, 0.2);
        color: #D4AF37;
        transform: rotate(90deg);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .mobile-menu-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 1rem 2rem 0 2rem;
        overflow-y: auto;
        min-height: calc(100vh - 60px);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
        min-height: 60px;
        line-height: 1.4;
    }
    
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #D4AF37;
    }

    
    .menu-toggle {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-actions {
        flex-direction: column;
    }
    
    /* Footer響應式設計 */
    .footer-info-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .brand-content {
        text-align: center;
    }
    
    
    .footer-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 200px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* === 跳過連結（無障礙） === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #D4AF37;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* 品牌理念重新設計樣式 */
.brand-philosophy-redesign {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    overflow: hidden;
}

.philosophy-background-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-elements .element {
    position: absolute;
    font-size: 8rem;
    font-weight: bold;
    color: rgba(212, 175, 55, 0.1);
    animation: elementFloat 20s ease-in-out infinite;
    user-select: none;
    pointer-events: none;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.element-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes elementFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.2; }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05), transparent);
}

.section-header-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 6rem;
}

.section-badge-modern {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.section-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.title-decoration-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.decoration-center {
    color: #D4AF37;
    font-size: 1.5rem;
    animation: centerSpin 10s linear infinite;
}

.section-subtitle-modern {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.philosophy-content-new {
    position: relative;
    z-index: 2;
}

/* 品牌故事部分 */
.brand-story-section {
    margin-bottom: 6rem;
}

.brand-story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.story-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.dual-meaning-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.meaning-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.6s ease;
}

.meaning-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
}

.meaning-visual {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.char-display {
    font-size: 4rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.visual-decoration {
    color: rgba(212, 175, 55, 0.3);
    font-size: 2rem;
}

.meaning-content h4 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.meaning-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.keyword-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.keyword {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.keyword:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* 品牌精神部分 */
.brand-spirit-section {
    margin-top: 6rem;
}

.spirit-header {
    text-align: center;
    margin-bottom: 4rem;
}

.spirit-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.spirit-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.spirit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.spirit-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    transition: all 0.6s ease;
}

.spirit-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.spirit-icon {
    color: #D4AF37;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.spirit-item h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.spirit-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 承諾重新設計樣式 */
.promise-redesign {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    overflow: hidden;
}

.promise-background-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.promise-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
}

.decoration-circles {
    position: relative;
    width: 100%;
    height: 100%;
}

.decoration-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    animation: circleFloat 15s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 70%;
    animation-delay: 10s;
}

@keyframes circleFloat {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.3; }
    50% { transform: scale(1.2) translateY(-20px); opacity: 0.1; }
}

.section-header-promise {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 6rem;
}

.section-badge-promise {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.section-title-promise {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.title-decoration-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.promise-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.promise-diamond {
    color: #D4AF37;
    font-size: 1.5rem;
    animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.section-subtitle-promise {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.promise-content-new {
    position: relative;
    z-index: 2;
}

.promise-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
}

.promise-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.6s ease;
    overflow: hidden;
}

.promise-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s ease;
}

.promise-card-new:hover::before {
    left: 100%;
}

.promise-card-new:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.15);
}

.promise-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.promise-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D4AF37;
    opacity: 0.8;
}

.promise-icon-new {
    color: #D4AF37;
    font-size: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.promise-title-new {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.promise-description-new {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.promise-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* 承諾宣言新設計 */
.promise-statement-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.statement-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 4rem 3rem;
    position: relative;
}

.statement-decoration {
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 2rem;
}

.statement-quote p:first-child {
    font-size: 2rem;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.statement-detail {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.statement-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.signature-line {
    width: 60px;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
}

.signature-text {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* 響應式設計 - 新區域 */
@media (max-width: 1024px) {
    .dual-meaning-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .spirit-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promise-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .brand-philosophy-redesign,
    .promise-redesign {
        padding: 4rem 0;
    }
    
    .section-title-modern,
    .section-title-promise {
        font-size: 2.5rem;
    }
    
    .char-display {
        font-size: 3rem;
    }
    
    .meaning-card,
    .promise-card-new {
        padding: 2rem 1.5rem;
    }
    
    .statement-container {
        padding: 2.5rem 2rem;
    }
    
    .statement-quote p:first-child {
        font-size: 1.5rem;
    }
}

/* Reservation Page Styles - 精緻設計 */

/* Luxury Quote Reservation */
.luxury-quote-reservation {
    color: #D4AF37;
    font-style: italic;
    font-weight: 300;
    position: relative;
    padding: 0 1rem;
}

/* Reservation Placeholder Section */
.reservation-placeholder-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.placeholder-background,
.reservation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Placeholder Content */
.placeholder-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    color: #D4AF37;
    animation: iconPulse 3s ease-in-out infinite;
}

.placeholder-icon svg {
    width: 60px;
    height: 60px;
}

.placeholder-title {
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.placeholder-subtitle {
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.placeholder-message {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.placeholder-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.placeholder-message p:last-child {
    margin-bottom: 0;
    color: #D4AF37;
    font-weight: 500;
}

.reservation-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reservation-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #D4AF37;
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.reservation-particles .particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.reservation-particles .particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.reservation-particles .particle-3 {
    top: 80%;
    left: 30%;
    animation-delay: 6s;
}

/* Section Header Reservation */
.section-header-reservation {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.section-badge-reservation {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.section-title-reservation {
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.title-decoration-reservation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.title-decoration-reservation .deco-line-left,
.title-decoration-reservation .deco-line-right {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.deco-center-reservation {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #D4AF37;
}

.deco-center-reservation svg {
    width: 20px;
    height: 20px;
}

.section-subtitle-reservation {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
}

/* Reservation Form Card */
.reservation-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.reservation-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* Form Section Card */
.form-section-card {
    padding: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.form-section-card:last-of-type {
    border-bottom: none;
}

.form-section-card .section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #D4AF37;
}

.form-section-card .section-icon svg {
    width: 28px;
    height: 28px;
}

.section-title-card {
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.form-group-luxury {
    position: relative;
}

.form-group-luxury.form-group-full {
    grid-column: 1 / -1;
}

.form-label-luxury {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.form-input-luxury,
.form-textarea-luxury {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input-luxury::placeholder,
.form-textarea-luxury::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input-luxury:focus,
.form-textarea-luxury:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea-luxury {
    resize: vertical;
    min-height: 120px;
}

/* Special Requirements */
.special-requirements {
    margin-top: 1rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.requirement-item input[type="checkbox"] {
    display: none;
}

.requirement-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.requirement-item input[type="checkbox"]:checked + .requirement-checkmark {
    background: #D4AF37;
    border-color: #D4AF37;
}

.requirement-item input[type="checkbox"]:checked + .requirement-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
}

.requirement-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Reservation Summary Card */
.reservation-summary-card {
    margin: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(15px);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
}

.summary-icon svg {
    width: 20px;
    height: 20px;
}

.summary-header h4 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin: 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-value {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 400;
}

/* Form Footer Card */
.form-footer-card {
    padding: 3rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.terms-agreement {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.terms-agreement input[type="checkbox"] {
    display: none;
}

.terms-checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.terms-agreement input[type="checkbox"]:checked + .terms-checkmark {
    background: #D4AF37;
    border-color: #D4AF37;
}

.terms-agreement input[type="checkbox"]:checked + .terms-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 0.9rem;
    font-weight: bold;
}

.terms-text a {
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.terms-text a:hover {
    border-bottom-color: #D4AF37;
}

/* Submit Button Luxury */
.btn-submit-luxury {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-submit-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-submit-luxury .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.btn-submit-luxury .btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit-luxury:hover .btn-icon {
    transform: scale(1.1);
}

.btn-submit-luxury .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit-luxury:hover .btn-glow {
    left: 100%;
}

/* Reservation Notes Showcase */
.reservation-notes-showcase {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.notes-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.notes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    color: rgba(212, 175, 55, 0.1);
    animation: elementFloat 6s ease-in-out infinite;
}

.float-icon.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-icon.icon-2 {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.float-icon svg {
    width: 100%;
    height: 100%;
}

/* Section Header Notes */
.section-header-notes {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.section-badge-notes {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-title-notes {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.title-decoration-notes {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.title-decoration-notes .deco-line-left,
.title-decoration-notes .deco-line-right {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.deco-center-notes {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #D4AF37;
}

.deco-center-notes svg {
    width: 20px;
    height: 20px;
}

.section-subtitle-notes {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
    line-height: 1.6;
}

/* Notes Showcase Grid */
.notes-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.note-showcase-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.note-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.6s ease;
}

.note-showcase-item:hover::before {
    left: 100%;
}

.note-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.note-visual {
    position: relative;
    margin-bottom: 2rem;
}

.note-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #000;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.note-showcase-item:hover .note-icon-modern {
    transform: scale(1.1);
}

.note-icon-modern svg {
    width: 40px;
    height: 40px;
}

.note-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.note-showcase-item:hover .note-glow {
    opacity: 1;
}

.note-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.note-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    background: rgba(212, 175, 55, 0.08);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 400;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(5px);
}

/* Contact Quick Luxury */
.contact-quick-luxury {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    overflow: hidden;
}

.contact-background-luxury {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.contact-showcase {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: #D4AF37;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
}

.contact-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-btn.primary:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-btn .btn-icon {
    width: 20px;
    height: 20px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-btn:hover .btn-shine {
    left: 100%;
}

.contact-info-quick {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.info-item svg {
    width: 20px;
    height: 20px;
    color: #D4AF37;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notes-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .reservation-placeholder-section,
    .reservation-notes-showcase,
    .contact-quick-luxury {
        padding: 4rem 0;
    }
    
    .placeholder-title {
        font-size: 2.2rem;
    }
    
    .placeholder-subtitle {
        font-size: 1.1rem;
    }
    
    .placeholder-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
    }
    
    .placeholder-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .placeholder-message {
        padding: 2rem;
        margin-top: 1.5rem;
    }
    
    .section-title-reservation,
    .section-title-notes {
        font-size: 2.5rem;
    }
    
    .form-section-card {
        padding: 2rem;
    }
    
    .reservation-summary-card {
        margin: 2rem;
        padding: 2rem;
    }
    
    .form-footer-card {
        padding: 2rem;
    }
    
    .notes-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .note-showcase-item {
        padding: 2rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-quick {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .placeholder-title {
        font-size: 1.8rem;
    }
    
    .placeholder-subtitle {
        font-size: 1rem;
    }
    
    .placeholder-icon {
        width: 80px;
        height: 80px;
    }
    
    .placeholder-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .placeholder-message {
        padding: 1.5rem;
    }
    
    .placeholder-message p {
        font-size: 1rem;
    }
    
    .section-title-reservation,
    .section-title-notes {
        font-size: 2rem;
    }
    
    .form-section-card {
        padding: 1.5rem;
    }
    
    .reservation-form-card {
        margin: 0 1rem;
    }
    
    .contact-btn {
        min-width: 140px;
        padding: 0.8rem 1.5rem;
    }
}

/* ===== 套餐展示區塊樣式 ===== */
.foodset-showcase-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
}

.foodset-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.foodset-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.foodset-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(218, 165, 32, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.foodset-particles .particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.foodset-particles .particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.foodset-particles .particle-3 {
    bottom: 30%;
    left: 80%;
    animation-delay: 10s;
}

.foodset-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
}

/* 套餐區塊標題 */
.section-header-foodset {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge-foodset {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #daa520, #f4d03f);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.section-title-foodset {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-decoration-foodset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.title-decoration-foodset .deco-line-left,
.title-decoration-foodset .deco-line-right {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
}

.deco-center-foodset {
    width: 30px;
    height: 30px;
    color: #daa520;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-subtitle-foodset {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 套餐排行榜網格 */
.foodset-ranking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.foodset-rank-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.foodset-rank-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.foodset-rank-item:hover::before {
    opacity: 1;
}

.foodset-rank-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(218, 165, 32, 0.3);
}

/* 排名徽章 */
.foodset-rank-item .rank-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: linear-gradient(135deg, #daa520, #f4d03f);
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
    z-index: 3;
}

.foodset-rank-item.rank-1 .rank-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

/* 套餐圖片容器 */
.foodset-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    cursor: pointer;
}

.foodset-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.foodset-image-container:hover img {
    transform: scale(1.1);
}

.foodset-image-container .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.foodset-image-container:hover .image-overlay {
    opacity: 1;
}

.foodset-zoom-icon {
    width: 60px;
    height: 60px;
    color: #ffffff;
    background: rgba(218, 165, 32, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.foodset-image-container:hover .foodset-zoom-icon {
    transform: scale(1);
}

/* 套餐信息 */
.foodset-info {
    color: #ffffff;
}

.foodset-name {
    font-family: var(--font-mingtai);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.foodset-description {
    font-family: var(--font-mingtai);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.foodset-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.foodset-features .feature-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-mingtai);
    transition: all 0.3s ease;
}

.foodset-features .feature-tag:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
    border-color: #d4af37;
}

/* 套餐說明 */
.foodset-note {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.foodset-note .note-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.foodset-note .note-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #F4E79F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.foodset-note .note-icon svg {
    width: 24px;
    height: 24px;
}

.foodset-note .note-text {
    flex: 1;
}

.foodset-note .note-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 8px;
}

.foodset-note .note-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* 套餐Modal樣式 */
.foodset-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.foodset-modal.active {
    opacity: 1;
}

.foodset-modal .modal-content {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.foodset-modal.active .modal-content {
    transform: scale(1);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .foodset-showcase-section {
        padding: 80px 0;
    }
    
    .section-title-foodset {
        font-size: 2.5rem;
    }
    
    .foodset-ranking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .foodset-rank-item {
        padding: 20px;
    }
    
    .foodset-image-container {
        height: 200px;
    }
    
    /* 套餐說明手機版特殊處理 */
    .foodset-note .note-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }
    
    .foodset-note .note-icon {
        width: 40px;
        height: 40px;
        margin-top: 5px;
    }
    
    .foodset-note .note-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .foodset-note .note-text h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .foodset-note .note-details p {
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    /* 湯頭提醒手機版特殊處理 */
    .soup-note .note-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }
    
    .soup-note .note-icon {
        width: 40px;
        height: 40px;
        margin-top: 5px;
    }
    
    .soup-note .note-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .soup-note .note-text h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .soup-note .reminder-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .soup-note .soup-list li {
        font-size: 0.9rem;
        margin: 0.4rem 0;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .section-title-foodset {
        font-size: 2rem;
    }
    
    .foodset-features {
        justify-content: center;
    }
    
    /* 極小螢幕套餐說明優化 */
    .foodset-note {
        padding: 20px;
    }
    
    .foodset-note .note-content {
        gap: 12px;
    }
    
    .foodset-note .note-icon {
        width: 35px;
        height: 35px;
        margin-top: 3px;
    }
    
    .foodset-note .note-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .foodset-note .note-text h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .foodset-note .note-details p {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    /* 極小螢幕湯頭提醒優化 */
    .soup-note {
        padding: 20px;
    }
    
    .soup-note .note-content {
        gap: 12px;
    }
    
    .soup-note .note-icon {
        width: 35px;
        height: 35px;
        margin-top: 3px;
    }
    
    .soup-note .note-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .soup-note .note-text h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .soup-note .reminder-title {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .soup-note .soup-list li {
        font-size: 0.85rem;
        margin: 0.3rem 0;
    }
    
    .btn-heksagon {
        backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.4) !important;
        padding: 14px 30px;
        font-size: 0.75rem;
        min-width: 180px;
    }
    
    .btn-heksagon:hover {
        background: rgba(212, 175, 55, 0.15) !important;
        backdrop-filter: none !important;
    }
}
