/* ===================================
   果然健康 (Indeed Healthy) - Main Styles
   現代化響應式網站 - GSAP + Anime.js
   =================================== */

/* ===================================
   CSS Variables - 果然健康配色系統
   =================================== */
:root {
    /* Primary Colors - 橙色健康系 */
    --primary-orange: #FF8C00;      /* 主橙色 */
    --primary-green: #7CB342;       /* 健康綠 */
    --primary-yellow: #FFD54F;      /* 活力黃 */
    --dark-orange: #E67E22;         /* 深橙色 */
    --light-orange: #FFB74D;        /* 淺橙色 */
    
    /* Accent Colors */
    --accent-red: #FF6347;          /* 番茄紅 */
    --accent-blue: #4169E1;         /* 知識藍 */
    --accent-purple: #9C27B0;       /* 紫色 */
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-cream: #FFF8F0;
    --color-light-bg: #FFFAF5;
    --color-gray-100: #F5F5F5;
    --color-gray-300: #E0E0E0;
    --color-gray-600: #757575;
    --color-gray-900: #212121;
    
    /* Text Colors */
    --text-primary: #2C2C2C;
    --text-secondary: #5A5A5A;
    --text-light: #8A8A8A;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 140, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 140, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(255, 140, 0, 0.2);
    --shadow-xl: 0 12px 32px rgba(255, 140, 0, 0.25);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    
    /* Transitions */
    --transition-smooth: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
}

/* ===================================
   Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--color-light-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Header Styles
   =================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

/* Header States */
#header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Header 隱藏狀態（向下滾動時） */
#header.header-hidden {
    transform: translateY(-100%);
}

/* 頂部透明時的文字顏色 */
#header.header-transparent .logo,
#header.header-transparent .main-nav-menu a,
#header.header-transparent .mobile-menu-trigger {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#header.header-transparent .main-nav-menu a i {
    color: white;
}

#header.header-transparent .logo-img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

#header.header-transparent .brand-name,
#header.header-transparent .brand-subtitle {
    color: white;
}

/* 透明狀態下的 hover 效果 */
#header.header-transparent .main-nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#header.header-transparent .main-nav-menu li.current-menu-item a {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Main Navigation */
.main-nav {
    padding: var(--spacing-sm) 0;
    transition: var(--transition-smooth);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 4px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Desktop Navigation Menu */
.desktop-menu {
    display: flex;
}

.main-nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    align-items: center;
}

.main-nav-menu li {
    position: relative;
}

.main-nav-menu li a {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    display: block;
}

.main-nav-menu li a:hover,
.main-nav-menu li.current-menu-item a {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Mobile Menu Toggle - 現代化漢堡選單按鈕
   =================================== */
.mobile-menu-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-trigger:hover {
    background: rgba(255, 140, 0, 0.1);
}

.mobile-menu-trigger:active {
    transform: scale(0.95);
}

.hamburger-box {
    width: 28px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    position: absolute;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
                background-color 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -9px;
}

.hamburger-inner::after {
    bottom: -9px;
}

/* 漢堡選單打開時的動畫 */
.mobile-menu-trigger.is-active .hamburger-inner {
    transform: rotate(45deg);
    background: var(--primary-orange);
}

.mobile-menu-trigger.is-active .hamburger-inner::before {
    transform: rotate(-90deg) translateX(-9px);
    opacity: 0;
}

.mobile-menu-trigger.is-active .hamburger-inner::after {
    transform: translateY(-18px) rotate(-90deg);
}

/* 透明 header 時的漢堡選單 */
#header.header-transparent .hamburger-inner,
#header.header-transparent .hamburger-inner::before,
#header.header-transparent .hamburger-inner::after {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

/* 背景圖片層 */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/果然健康-封面.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroZoomIn 25s ease-in-out infinite alternate;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* 漸層遮罩層 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(255, 140, 0, 0.35) 0%, 
        rgba(230, 126, 34, 0.3) 50%,
        rgba(255, 140, 0, 0.25) 100%
    );
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    background-size: cover, cover;
    background-position: center, center;
    opacity: 0.8;
    z-index: 2;
    animation: subtleFloat 20s ease-in-out infinite;
}

/* Hero SVG 背景裝飾 */
.hero-svg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.9;
    pointer-events: none;
}

.hero-svg-decoration svg {
    width: 100%;
    height: 100%;
}

.hero-svg-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.hero-svg-circle {
    opacity: 0;
    transform-origin: center;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.hero-svg-dot {
    opacity: 0;
    transform-origin: center;
}

.hero-svg-line {
    opacity: 0;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--spacing-md);
    color: var(--color-white);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: #FFFFFF;
    text-shadow: 
        0 0 30px rgba(255, 140, 0, 0.8),
        0 0 60px rgba(255, 140, 0, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 45px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 
        0 0 20px rgba(255, 140, 0, 0.6),
        0 2px 15px rgba(0, 0, 0, 0.8),
        0 1px 8px rgba(0, 0, 0, 0.9);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    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.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--color-white);
    color: var(--primary-orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--primary-orange);
    transform: translateY(-3px);
    border-color: var(--color-white);
}

/* Hero 按鈕加強版 */
.btn-hero {
    padding: 20px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: white;
}

.btn-hero.btn-primary:hover {
    background: linear-gradient(135deg, #FF6B00, #FF4500);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.7);
}

.btn-hero.btn-outline {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid #FFFFFF;
    color: #FF8C00;
}

.btn-hero.btn-outline:hover {
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.7);
    border-color: transparent;
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: 80px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #FF8C00);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   Category Cards
   =================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.category-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* 避免阻擋內部連結點擊 */
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.2);
    border-color: var(--primary-orange);
}

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

.category-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: var(--transition-fast);
}

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

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    z-index: 10; /* 確保連結在最上層 */
}

.category-link:hover {
    gap: 12px;
}

/* Vision Cards - 理念卡片 */
.vision-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* 避免阻擋內部連結點擊 */
}

.vision-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.2);
    border-color: var(--primary-orange);
}

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

.vision-card .category-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: var(--transition-fast);
}

.vision-card:hover .category-icon {
    transform: scale(1.15) rotate(10deg);
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.vision-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===================================
   Article Cards
   =================================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.article-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.2);
}

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

.article-card:hover .article-image {
    transform: scale(1.1);
}

.article-content {
    padding: var(--spacing-md);
}

.article-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-white);
}

.category-healthy_recipe { background: var(--primary-orange); }
.category-anti_cancer_recipe { background: var(--primary-green); }
.category-anti_cancer_food { background: var(--accent-red); }
.category-health_knowledge { background: var(--accent-blue); }

.article-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.article-excerpt {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 4px 12px;
    background: var(--color-gray-100);
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    transition: var(--transition-fast);
}

.read-more:hover {
    gap: 12px;
}

/* ===================================
   Footer
   =================================== */
#footer {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 100%);
    color: var(--text-primary);
    padding: 60px 0 20px;
    position: relative;
    border-top: 3px solid var(--primary-orange);
}

#footer::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 8px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: var(--text-secondary);
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

/* ===================================
   Responsive Design - 5 Breakpoints
   =================================== */

/* Large Desktop: 1400px+ */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Desktop: 1025px - 1399px */
@media (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablet: 769px - 1024px */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .hero-section {
        padding-top: 70px;
    }
    
    /* Hero 響應式 */
    .hero-title {
        font-size: 3rem;
        margin-bottom: 25px;
        text-shadow: 
            0 0 25px rgba(255, 140, 0, 0.7),
            0 0 50px rgba(255, 140, 0, 0.5),
            0 3px 15px rgba(0, 0, 0, 0.8),
            0 2px 8px rgba(0, 0, 0, 0.9);
    }
    
    .hero-tagline {
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 35px;
        text-shadow: 
            0 0 15px rgba(255, 140, 0, 0.5),
            0 2px 12px rgba(0, 0, 0, 0.8),
            0 1px 6px rgba(0, 0, 0, 0.9);
    }
    
    .btn-hero {
        padding: 16px 35px;
        font-size: 1.05rem;
    }
    
    .article-header {
        padding-top: 70px;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-trigger {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .article-header::after {
        width: 300px;
        height: 300px;
        right: -20%;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    #footer {
        padding: 35px 0 25px;
    }
    
    /* Company Info Section - 全新卡片式設計 */
    .footer-section.company-info {
        text-align: center;
        background: linear-gradient(135deg, rgba(255, 140, 0, 0.08) 0%, rgba(255, 215, 0, 0.08) 100%);
        padding: 25px 20px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    .footer-section.company-info h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
        color: var(--primary-orange);
    }
    
    .footer-section.company-info .company-description {
        display: none; /* 全部隱藏描述 */
    }
    
    .footer-section.company-info a[style*="display: inline-flex"] {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
        margin-top: 8px !important;
        box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3) !important;
    }
    
    .footer-section.company-info a[style*="display: inline-flex"] i {
        font-size: 1.2rem !important;
    }
    
    /* 三個區塊 - 卡片網格式設計 */
    .footer-section.quick-links,
    .footer-section.categories,
    .footer-section.services {
        background: white;
        padding: 18px 15px;
        border-radius: 12px;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
        text-align: center;
        font-weight: 700;
        padding-bottom: 8px;
        border-bottom: 2px solid rgba(255, 140, 0, 0.15);
    }
    
    /* 快速連結標題顏色 */
    .footer-section.quick-links h4 {
        color: var(--primary-orange);
    }
    
    /* 內容分類標題顏色 */
    .footer-section.categories h4 {
        color: #FF6B6B;
    }
    
    /* 我們的服務標題顏色 */
    .footer-section.services h4 {
        color: #4ECDC4;
    }
    
    /* 選項內容 - 2 欄網格 */
    .footer-section .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
        text-align: left;
    }
    
    .footer-section .footer-links li {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .footer-section .footer-links a {
        display: block;
        padding: 4px 0;
        transition: all 0.2s ease;
    }
    
    .footer-section .footer-links a:hover {
        padding-left: 5px;
    }
    
    /* 服務項目不使用連結樣式 */
    .footer-section.services .footer-links li {
        display: flex;
        align-items: center;
        padding: 4px 0;
    }
    
    .footer-bottom {
        padding-top: 20px;
        margin-top: 15px;
        font-size: 0.8rem;
        border-top: 1px solid rgba(255, 140, 0, 0.1);
        text-align: center;
    }
    
    .footer-bottom p {
        color: var(--text-secondary);
    }
}

/* Small Mobile: ≤480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-shadow: 
            0 0 20px rgba(255, 140, 0, 0.7),
            0 0 40px rgba(255, 140, 0, 0.5),
            0 3px 12px rgba(0, 0, 0, 0.8),
            0 2px 6px rgba(0, 0, 0, 0.9);
    }
    
    .hero-tagline {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 30px;
        text-shadow: 
            0 0 12px rgba(255, 140, 0, 0.5),
            0 2px 10px rgba(0, 0, 0, 0.8),
            0 1px 5px rgba(0, 0, 0, 0.9);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
    }
    
    .btn-hero {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Footer 480px - 超緊湊卡片式 */
    #footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        gap: 0;
    }
    
    /* Company Info - 480px */
    .footer-section.company-info {
        padding: 20px 15px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .footer-section.company-info h4 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .footer-section.company-info a[style*="display: inline-flex"] {
        padding: 10px 25px !important;
        font-size: 0.9rem !important;
        margin-top: 8px !important;
        gap: 8px !important;
    }
    
    .footer-section.company-info a[style*="display: inline-flex"] i {
        font-size: 1.1rem !important;
    }
    
    /* 其他區塊 - 480px */
    .footer-section.quick-links,
    .footer-section.categories,
    .footer-section.services {
        padding: 15px 12px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }
    
    .footer-section .footer-links {
        gap: 6px 10px;
    }
    
    .footer-section .footer-links li {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer-bottom {
        padding-top: 15px;
        margin-top: 12px;
        font-size: 0.75rem;
    }
}

/* ===================================
   Mobile Menu - 現代化全屏選單
   =================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.97) 0%, rgba(230, 126, 34, 0.95) 100%);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    /* 移除 transition，由 GSAP 完全控制動畫 */
    overflow: hidden;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 背景裝飾 */
.mobile-menu-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    /* animation: float 20s infinite ease-in-out; */ /* 已停用，保持靜態 */
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    /* animation-delay: 0s; */
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    /* animation-delay: 5s; */
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
    /* animation-delay: 10s; */
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* 選單內容 */
.mobile-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow-y: auto;
    /* 初始狀態，動畫由 GSAP 控制 */
    transform: translateY(30px);
    opacity: 0;
}

/* Header with Logo */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.mobile-brand-text {
    display: flex;
    flex-direction: column;
}

.mobile-brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.mobile-brand-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* 關閉按鈕 */
.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    cursor: pointer;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.close-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.close-icon span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    top: 50%;
    left: 0;
    border-radius: 2px;
}

.close-icon span:first-child {
    transform: rotate(45deg);
}

.close-icon span:last-child {
    transform: rotate(-45deg);
}

/* Navigation */
.mobile-menu-nav {
    flex: 1;
    padding: 20px 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    margin-bottom: 8px;
    /* 動畫由 GSAP 控制 - 初始狀態 */
    opacity: 0;
    transform: translateX(-50px);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    text-decoration: none;
}

.mobile-menu-link:hover,
.mobile-menu-item.active .mobile-menu-link {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-right: 15px;
}

.menu-icon i {
    font-size: 1.4rem;
    color: white;
}

.menu-text {
    flex: 1;
    font-size: 1.15rem;
}

.menu-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-arrow i {
    font-size: 0.9rem;
    color: white;
}

.mobile-menu-link:hover .menu-arrow {
    transform: translateX(4px);
}

/* Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-gray-100);
}

.menu-item-has-children.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 56px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mobile-submenu li a:hover {
    background: white;
    color: var(--primary-orange);
    padding-left: 60px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 30px 0 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-social-links .social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mobile-tagline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Sub Menu (Desktop) */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid var(--color-gray-100);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    list-style: none;
}

.sub-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sub-menu a:hover {
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary-orange);
    padding-left: 25px;
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary-orange); }
.text-secondary { color: var(--text-secondary); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* ===================================
   文章專區頁面樣式 (Articles Page)
   =================================== */
.search-section {
    padding: 40px 0 20px;
}

.search-bar {
    margin-bottom: 30px;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
    background: white;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid var(--color-gray-300);
    background: white;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.filter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), #FF8C00);
    color: white;
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.filter-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.articles-section {
    padding-top: 20px;
}

.article-image-wrapper {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* ===================================
   文章詳細頁面樣式 (Article Detail)
   =================================== */
.article-header {
    min-height: 250px;
    height: 35vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.96), rgba(230, 126, 34, 0.92));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-top: 80px;
}

/* 玻璃質感背景 */
.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    animation: subtleFloat 15s ease-in-out infinite;
}

/* SVG 容器 */
.article-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

@keyframes subtleFloat {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.article-header .hero-content {
    position: relative;
    z-index: 2;
}

/* SVG 裝飾圖案 */
.hero-svg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.hero-svg-decoration svg {
    width: 100%;
    height: 100%;
}

.hero-svg-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.hero-svg-circle {
    fill: rgba(255, 255, 255, 0.15);
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 3;
    opacity: 0.8;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
}

.article-category-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.article-header .hero-title {
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    font-weight: 800;
}

.article-header .hero-description {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.article-header .article-meta {
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    margin-top: 20px;
}

.article-header .article-meta span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.article-featured-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.article-body {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.article-body h2 {
    color: var(--primary-orange);
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 15px;
}

.article-body h3 {
    color: var(--primary-orange);
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.article-body p {
    margin-bottom: 16px;
    line-height: 1.9;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.article-body ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.article-body li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.article-body .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.article-body .list-icon {
    font-size: 1.2rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.article-body .list-content {
    flex: 1;
}

.article-body .article-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.article-body .tag {
    background: linear-gradient(135deg, var(--primary-orange), #FF8C00);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    display: inline-block;
    margin: 5px;
    box-shadow: 0 2px 8px rgba(255,140,0,0.3);
}

/* ===================================
   圖文並排佈局 (Two Column Layout)
   =================================== */
.article-two-column-layout {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 40px;
    align-items: start;
}

.article-image-column {
    position: relative;
}

.article-featured-image-sticky {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: visible;
    transition: all 0.3s ease;
}

.article-featured-image-sticky:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.article-featured-image-sticky > img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* 圖片輪播 - 現代化設計 */
.image-slider {
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    background: #f5f5f5;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.slider-item.active {
    opacity: 1;
    pointer-events: auto;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 縮圖導航 */
.slider-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
}

.thumb-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thumb-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.thumb-item.active {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.thumb-item:hover .thumb-overlay {
    background: rgba(255, 140, 0, 0.4);
}

.thumb-item.active .thumb-overlay {
    opacity: 0;
}

.thumb-overlay span {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.article-content-column {
    min-height: auto;
}

.article-body-compact {
    background: white;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    line-height: 1.8;
}

.main-section-title {
    color: var(--primary-orange);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-orange);
    position: relative;
}

.main-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
}

.sub-section-title {
    color: var(--primary-orange);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-section-title i {
    font-size: 1.2rem;
}

.numbered-section-title {
    color: var(--primary-orange);
    font-size: 1.7rem;
    font-weight: 700;
    margin: 20px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(230, 126, 34, 0.08));
    border-radius: 15px;
    border-left: 5px solid var(--primary-orange);
}

.number-badge {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.category-title {
    color: var(--dark-orange);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 15px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 5px;
}

.category-title i {
    font-size: 0.5rem;
    color: var(--primary-orange);
}

.label-line {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
}

.label-line::before {
    content: '▸';
    position: absolute;
    left: 5px;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.label-line strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-line {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 5px 0;
    padding-left: 10px;
    position: relative;
}

.content-line::before {
    content: '•';
    position: absolute;
    left: -5px;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.3rem;
}

.article-tags-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 2px dashed rgba(255, 140, 0, 0.2);
}

.article-tags-inline .tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.article-tags-inline .tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.social-share {
    background: var(--color-gray-100);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.social-share h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-share .btn {
    margin: 6px;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===================================
   關於我們 & 聯絡我們頁面樣式
   =================================== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.story-text p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-quote {
    background: linear-gradient(135deg, rgba(255,140,0,0.1), rgba(255,140,0,0.05));
    border-left: 4px solid var(--primary-orange);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.story-quote p {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.logo-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gradient-bg {
    background: linear-gradient(135deg, #FFF8F0, #FFFAF5);
}

/* ===================================
   理念區塊 (Vision Section) - 左右並排
   =================================== */
.vision-two-column {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 50px;
    align-items: start;
}

.vision-left {
    position: sticky;
    top: 120px;
}

.vision-left .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.vision-left .section-subtitle {
    text-align: left;
    margin-bottom: 30px;
}

.belief-quote-side {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255,140,0,0.05);
    border-left: 4px solid var(--primary-orange);
    border-radius: 10px;
}

.belief-quote-side p {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: 600;
    font-style: italic;
    margin: 10px 0;
    line-height: 1.7;
}

.quote-icon-small {
    font-size: 2rem;
    color: var(--primary-orange);
    opacity: 0.4;
    font-family: Georgia, serif;
}

.quote-icon-small.closing {
    transform: rotate(180deg);
    display: inline-block;
}

.vision-cards-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-card-horizontal {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vision-card-horizontal:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.vision-icon-small {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,140,0,0.1), rgba(230,126,34,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-emoji-small {
    font-size: 2.5rem;
}

.vision-content {
    flex: 1;
}

.vision-content h3 {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.vision-content p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.vision-interactive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.vision-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.vision-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,140,0,0.2), transparent);
    opacity: 0.3;
}

.vision-emoji {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    display: block;
    line-height: 100px;
}

.vision-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.vision-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
}

.vision-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,140,0,0.1);
}

.belief-quote-compact {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 50px auto 0;
    padding: 30px;
}

.belief-quote-compact p {
    font-size: 1.4rem;
    color: var(--primary-orange);
    font-weight: 600;
    font-style: italic;
    margin: 0;
    line-height: 1.8;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-icon.closing {
    transform: rotate(180deg);
    display: inline-block;
}

/* ===================================
   願景區塊 (Mission Section) - 左右並排
   =================================== */
.mission-two-column {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 50px;
    align-items: start;
}

.mission-left {
    position: sticky;
    top: 120px;
}

.mission-left .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.mission-left .section-subtitle {
    text-align: left;
    margin-bottom: 25px;
}

.mission-heart-wrapper-small {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.mission-heart-icon-small {
    font-size: 2.5rem;
    color: var(--accent-red);
}

.heart-pulse-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,0,0,0.2);
    pointer-events: none;
}

.mission-statement-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 20px 0 15px 0;
    line-height: 1.6;
}

.highlight-text-small {
    color: var(--primary-orange);
}

.mission-description-small {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.target-vertical-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.target-item-compact {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.target-item-compact:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.target-icon-small {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.target-icon-small i {
    font-size: 1.6rem;
    color: white;
}

/* 團隊區塊 (Team Section) - Spotlight 設計 */
.team-header-spotlight {
    text-align: center;
    margin-bottom: 60px;
}

.team-title-wrapper {
    margin-bottom: 35px;
}

.team-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.team-intro-spotlight {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.team-intro-spotlight p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
    font-style: italic;
}

.team-quote-icon {
    color: var(--primary-orange);
    opacity: 0.3;
    font-size: 1.5rem;
    vertical-align: middle;
}

.team-quote-icon.fa-quote-left {
    margin-right: 10px;
}

.team-quote-icon.fa-quote-right {
    margin-left: 10px;
}

.team-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card-spotlight {
    background: white;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.team-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.team-card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.team-photo-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
}

.photo-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
    opacity: 0.6;
}

.photo-ring-2 {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 2px solid var(--dark-orange);
    border-radius: 50%;
    border-bottom-color: transparent;
    border-right-color: transparent;
    opacity: 0.4;
}

.team-photo-spotlight {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.founder-badge,
.planner-badge {
    position: absolute;
    top: 0;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.founder-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.planner-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.team-content-spotlight {
    padding-top: 20px;
}

.team-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.team-role-spotlight {
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin: 0 0 20px 0;
}

.team-role-spotlight i {
    margin-right: 8px;
}

.team-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--dark-orange));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.team-bio-spotlight {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 25px 0;
}

.team-skills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(230, 126, 34, 0.1));
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.team-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

/* 舊版團隊區塊 (保留以防需要) */
.team-two-column {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 50px;
    align-items: start;
}

.team-left {
    position: sticky;
    top: 120px;
}

.team-left .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.team-left .section-subtitle {
    text-align: left;
    margin-bottom: 25px;
}

.team-intro {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.team-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

.team-cards-compact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.team-member-horizontal {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-member-horizontal:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.team-photo-small {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.team-info {
    flex: 1;
}

.team-info h3 {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.team-role {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.team-bio-small {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.mission-compact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.mission-main-card {
    background: linear-gradient(135deg, rgba(255,140,0,0.05), rgba(230,126,34,0.05));
    border: 2px solid rgba(255,140,0,0.2);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.mission-heart-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.mission-heart-icon {
    font-size: 3rem;
    color: var(--accent-red);
    position: relative;
    z-index: 2;
}

.heart-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,0,0,0.3);
    pointer-events: none;
}

.mission-statement {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.highlight-text {
    color: var(--primary-orange);
    position: relative;
    padding: 0 5px;
}

.mission-description-compact {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.target-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.target-item {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.target-icon-circle {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.target-icon-circle i {
    font-size: 1.5rem;
    color: white;
}

.target-info {
    flex: 1;
    text-align: left;
}

.target-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.target-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.click-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-orange);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.mission-card {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
}

.mission-intro {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.mission-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.target-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--color-gray-100);
}

.target-section h4 {
    color: var(--primary-orange);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.target-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.target-card {
    flex: 1;
    min-width: 200px;
    background: #FFF8F0;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.target-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.target-card h5 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.target-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-member h3 {
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.team-role {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-primary);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    padding: 14px 32px;
}

.belief-section h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.belief-quote {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.flex-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.founder-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-gray-300);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Noto Sans TC', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.contact-info-item {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(255,140,0,0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.success-message {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #E8F5E9;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #4CAF50;
}

.success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.success-message p {
    color: #558B2F;
    margin-bottom: 25px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-card h2 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-size: 2rem;
}

.form-card > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group .required {
    color: #FF6347;
}

.contact-details {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 30px;
    color: white;
}

.contact-details h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
}

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

.contact-item-content h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    line-height: 1.6;
}

.map-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-card h4 {
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #E0E0E0, #F5F5F5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.social-media-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.social-media-card h3 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.social-media-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

.social-link {
    flex: 1;
    min-width: 120px;
    padding: 15px;
    color: white;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 600;
}

.hours-card {
    background: #FFF8F0;
    padding: 30px;
    border-radius: 24px;
    border: 2px solid var(--primary-orange);
}

.hours-card h3 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.hours-list {
    color: var(--text-primary);
    line-height: 2;
}

.hours-list p {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.hours-list p:last-child {
    margin: 0;
}

.faq-section {
    background: #F5F5F5;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
}

.faq-item a {
    color: var(--primary-orange);
    font-weight: 600;
}

/* ===================================
   響應式調整
   =================================== */
@media (max-width: 768px) {
    /* Hero Section 調整 */
    .article-header {
        min-height: 250px;
        height: auto;
        padding: 80px 20px 40px;
    }
    
    .article-header .hero-content {
        padding: 0 10px;
    }
    
    .article-category-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
        margin-bottom: 15px;
    }
    
    .article-header .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .article-header .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .article-header .article-meta {
        font-size: 0.9rem;
        gap: 10px;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .article-header .article-meta span {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    /* 文章詳細頁面 */
    .article-body {
        padding: 25px 20px !important;
    }
    
    .article-body h2 {
        font-size: 1.5rem !important;
    }
    
    .article-body h3 {
        font-size: 1.2rem !important;
    }
    
    .article-body p,
    .article-body li {
        font-size: 1rem !important;
    }
    
    .article-tags {
        text-align: center;
    }
    
    /* 圖文並排響應式 */
    .article-two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-featured-image-sticky {
        position: relative;
        top: 0;
    }
    
    /* 圖片輪播響應式 */
    .slider-container {
        height: 350px;
    }
    
    .slider-thumbs {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .thumb-item {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }
    
    .thumb-overlay span {
        font-size: 18px;
    }
    
    .article-content-column {
        min-height: auto;
    }
    
    .article-body-compact {
        padding: 25px;
    }
    
    .main-section-title {
        font-size: 1.8rem;
    }
    
    .sub-section-title {
        font-size: 1.3rem;
    }
    
    .numbered-section-title {
        font-size: 1.4rem;
        padding: 16px;
    }
    
    .number-badge {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    
    .category-title {
        font-size: 1.15rem;
    }
    
    .label-line {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .content-line {
        font-size: 1rem;
    }
    
    /* 關於我們 & 聯絡我們 */
    .story-grid,
    .two-column-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .flex-container {
        flex-direction: column !important;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .mission-content {
        padding: 30px 20px !important;
    }
    
    .team-grid {
        grid-template-columns: 1fr !important;
    }
    
    .target-grid {
        flex-direction: column;
    }
    
    .target-card {
        min-width: 100%;
    }
    
    /* 理念和願景響應式 - 左右並排 */
    .vision-two-column,
    .mission-two-column,
    .team-two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-left,
    .mission-left,
    .team-left {
        position: relative;
        top: 0;
    }
    
    .vision-card-horizontal,
    .target-item-compact,
    .team-member-horizontal {
        padding: 20px;
    }
    
    .vision-icon-small,
    .target-icon-small {
        width: 60px;
        height: 60px;
    }
    
    .vision-emoji-small {
        font-size: 2rem;
    }
    
    .mission-statement-small {
        font-size: 1.3rem;
    }
    
    /* Spotlight 團隊區塊響應式 */
    .team-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-card-spotlight {
        padding: 30px;
    }
    
    .team-photo-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .team-name {
        font-size: 1.7rem;
    }
    
    .team-intro-spotlight {
        padding: 25px 30px;
    }
    
    .team-intro-spotlight p {
        font-size: 1.05rem;
    }
    
    .team-photo-small {
        width: 80px;
        height: 80px;
    }
    
    /* 舊版理念和願景 */
    .vision-interactive-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vision-card {
        padding: 30px 25px;
    }
    
    .target-compact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mission-main-card {
        padding: 35px 25px;
    }
    
    .mission-statement {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .article-header {
        min-height: 220px;
        height: auto;
        padding: 70px 15px 35px;
    }
    
    .article-header .hero-content {
        padding: 0 5px;
    }
    
    .article-category-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 12px;
    }
    
    .article-header .hero-title {
        font-size: 1.5rem;
        line-height: 1.35;
        margin-bottom: 12px;
    }
    
    .article-header .hero-description {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 12px;
    }
    
    .article-header .article-meta {
        font-size: 0.8rem;
        gap: 8px;
        margin-top: 12px;
        justify-content: center;
    }
    
    .article-header .article-meta span {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .article-body {
        padding: 20px 15px !important;
    }
    
    .social-share {
        flex-direction: column !important;
    }
    
    .social-share .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* 緊湊型文章內容響應式 */
    .article-body-compact {
        padding: 20px 18px;
    }
    
    .main-section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    /* Contact Page - 480px */
    .section[style*="padding: 60px 0"] img[alt="果然健康 Logo"] {
        max-width: 180px !important;
        width: 180px !important;
        height: 180px !important;
    }
    
    .section[style*="padding: 60px 0"] h2[style*="font-size: 2.2rem"] {
        font-size: 1.4rem !important;
    }
    
    .section[style*="padding: 60px 0"] p[style*="font-size: 1.05rem"] {
        font-size: 0.9rem !important;
    }
    
    /* LINE Card - 480px */
    .section[style*="padding: 60px 0"] div[style*="background: linear-gradient(135deg, #00B900"] {
        padding: 25px 18px !important;
    }
    
    .section[style*="padding: 60px 0"] div[style*="background: linear-gradient(135deg, #00B900"] h3 {
        font-size: 1.3rem !important;
    }
    
    .section[style*="padding: 60px 0"] div[style*="background: linear-gradient(135deg, #00B900"] p {
        font-size: 0.9rem !important;
    }
    
    /* LINE Card Icon Size */
    .section[style*="padding: 60px 0"] div[style*="width: 70px; height: 70px"] {
        width: 60px !important;
        height: 60px !important;
    }
    
    .section[style*="padding: 60px 0"] div[style*="width: 70px; height: 70px"] i {
        font-size: 1.8rem !important;
    }
    
    /* CTA Button - 480px */
    .section[style*="padding: 60px 0"] .line-contact-btn {
        padding: 14px 25px !important;
        font-size: 1rem !important;
    }
    
    .section[style*="padding: 60px 0"] .line-contact-btn span {
        font-size: 1rem !important;
    }
    
    .section[style*="padding: 60px 0"] .line-contact-btn i {
        font-size: 1.1rem !important;
    }
    
    /* Service Hours Title */
    .section h3[style*="font-size: 1.8rem"] {
        font-size: 1.5rem !important;
    }
    
    /* Why Contact Us - 改為單欄 */
    .section div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .section h3[style*="font-size: 2rem"] {
        font-size: 1.6rem !important;
    }
    
    .sub-section-title {
        font-size: 1.15rem;
        margin-top: 25px;
    }
    
    .numbered-section-title {
        font-size: 1.2rem;
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .number-badge {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .category-title {
        font-size: 1.05rem;
    }
    
    .label-line {
        font-size: 0.95rem;
        padding-left: 18px;
    }
    
    .content-line {
        font-size: 0.95rem;
        padding-left: 15px;
    }
    
    .article-tags-inline {
        justify-content: center;
    }
    
    /* 理念和願景響應式 - 左右並排手機版 */
    .vision-card-horizontal,
    .target-item-compact {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .team-member-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .team-info {
        text-align: center;
    }
    
    .vision-icon-small,
    .target-icon-small {
        width: 50px;
        height: 50px;
    }
    
    .vision-emoji-small {
        font-size: 1.8rem;
    }
    
    .target-icon-small i {
        font-size: 1.3rem;
    }
    
    .mission-statement-small {
        font-size: 1.1rem;
    }
    
    .mission-description-small {
        font-size: 0.95rem;
    }
    
    /* Spotlight 團隊區塊手機版 */
    .team-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .team-intro-spotlight {
        padding: 20px 25px;
    }
    
    .team-intro-spotlight p {
        font-size: 1rem;
    }
    
    .team-card-spotlight {
        padding: 25px 20px;
    }
    
    .team-photo-wrapper {
        width: 130px;
        height: 130px;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
    
    .team-role-spotlight {
        font-size: 1rem;
    }
    
    .team-bio-spotlight {
        font-size: 0.95rem;
    }
    
    .founder-badge,
    .planner-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .skill-tag {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
    
    .team-photo-small {
        width: 70px;
        height: 70px;
    }
    
    .belief-quote-side {
        padding: 20px;
    }
    
    .belief-quote-side p {
        font-size: 1.05rem;
    }
    
    /* 舊版理念和願景 */
    .vision-card {
        padding: 25px 20px;
    }
    
    .vision-emoji {
        font-size: 3rem;
    }
    
    .vision-title {
        font-size: 1.3rem;
    }
    
    .vision-text {
        font-size: 0.95rem;
    }
    
    .mission-main-card {
        padding: 30px 20px;
    }
    
    .mission-statement {
        font-size: 1.2rem;
    }
    
    .mission-description-compact {
        font-size: 1rem;
    }
    
    .belief-quote-compact p {
        font-size: 1.1rem;
    }
    
    .target-item {
        padding: 20px 15px;
    }
}

/* ===================================
   團隊卡片樣式 (about.php)
   =================================== */
.team-card {
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.25) !important;
}

/* 響應式 - 團隊區塊 */
@media (max-width: 768px) {
    .section .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .team-cards-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Contact Page - Main Contact Section */
    .section[style*="padding: 60px 0"] .container > div[style*="max-width: 1100px"] {
        max-width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box;
    }
    
    .section[style*="padding: 60px 0"] .container > div[style*="max-width: 1100px"] > div[style*="grid-template-columns: 400px 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        grid-template-columns: unset !important;
    }
    
    /* Contact Page - Logo Section */
    .section[style*="padding: 60px 0"] img[alt="果然健康 Logo"] {
        max-width: 200px !important;
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto 20px !important;
        display: block !important;
    }
    
    .section[style*="padding: 60px 0"] h2[style*="font-size: 2.2rem"] {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
    }
    
    .section[style*="padding: 60px 0"] p[style*="font-size: 1.05rem"] {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Contact Page - LINE Card */
    .section[style*="padding: 60px 0"] div[style*="background: linear-gradient(135deg, #00B900"] {
        padding: 30px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
    }
    
    .section[style*="padding: 60px 0"] div[style*="background: linear-gradient(135deg, #00B900"] h3 {
        font-size: 1.4rem !important;
    }
    
    /* LINE Card Header - 橫向改為垂直 */
    .section[style*="padding: 60px 0"] div[style*="background: linear-gradient(135deg, #00B900"] > div[style*="display: flex"] {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    .section[style*="padding: 60px 0"] div[style*="background: linear-gradient(135deg, #00B900"] div[style*="text-align: left"] {
        text-align: center !important;
    }
    
    /* LINE Card Features Grid */
    .section[style*="padding: 60px 0"] div[style*="background: linear-gradient(135deg, #00B900"] > div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    /* LINE Button 響應式 */
    .section[style*="padding: 60px 0"] .line-contact-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        visibility: visible !important;
        padding: 16px 30px !important;
        font-size: 1.1rem !important;
    }
    
    .section[style*="padding: 60px 0"] .line-contact-btn span {
        font-size: 1.1rem !important;
    }
    
    /* Contact Page - Service Hours Grid (3欄改單欄) */
    .section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Contact Page - Why Contact Us (4欄改雙欄) */
    .section div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* ===================================
   Testimonials Section - 會員見證
   =================================== */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    cursor: default;
    will-change: transform, box-shadow;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(255, 140, 0, 0.15) !important;
}

/* Testimonial Card 响应式调整 */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .testimonial-card {
        padding: 25px !important;
    }
    
    .testimonial-card div[style*="display: flex; align-items: center"] {
        flex-direction: column;
        text-align: center;
        gap: 15px !important;
    }
    
    .testimonial-card div[style*="width: 80px; height: 80px"] {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
    }
    
    .testimonial-card h3 {
        font-size: 1.2rem !important;
    }
    
    .testimonial-card div[style*="display: flex; gap: 12px"] {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .testimonial-card span[style*="padding: 8px 16px"] {
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
    }
    
    .testimonial-card p[style*="font-size: 1.05rem"] {
        font-size: 0.95rem !important;
    }
}

/* 星星评分动画 */
.testimonial-card .fa-star {
    transition: all 0.3s ease;
}

.testimonial-card:hover .fa-star {
    transform: scale(1.1);
}

.testimonial-card:hover .fa-star:nth-child(1) {
    transition-delay: 0s;
}

.testimonial-card:hover .fa-star:nth-child(2) {
    transition-delay: 0.05s;
}

.testimonial-card:hover .fa-star:nth-child(3) {
    transition-delay: 0.1s;
}

.testimonial-card:hover .fa-star:nth-child(4) {
    transition-delay: 0.15s;
}

.testimonial-card:hover .fa-star:nth-child(5) {
    transition-delay: 0.2s;
}

/* 成果标签动画 */
.testimonial-card span[style*="border-radius: 20px"] {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.testimonial-card:hover span[style*="border-radius: 20px"] {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Statistics Section - 數據統計
   =================================== */
.statistics-section {
    position: relative;
}

.statistics-grid {
    position: relative;
    z-index: 2;
}

.stat-card {
    will-change: transform;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.stat-icon {
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(10deg);
}

.stat-number {
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* 響應式調整 */
@media (max-width: 768px) {
    .statistics-section {
        padding: 50px 0 !important;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .stat-card {
        padding: 25px 15px !important;
    }
    
    .stat-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .stat-icon i {
        font-size: 1.8rem !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-label {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .statistics-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ===================================
   Timeline Section - 時間軸區塊
   =================================== */

/* 彈跳提示動畫 */
@keyframes bounce-hint {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.timeline-hint {
    animation: bounce-hint 2s ease-in-out infinite;
}

.timeline-section {
    padding: 80px 0;
}

.timeline-header h2 {
    font-size: 2.5rem;
}

.timeline-header p {
    font-size: 1.2rem;
}

/* 橫向滑動容器樣式 */
.timeline-scroll-container {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.timeline-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.timeline-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25) !important;
}

/* 箭頭按鈕樣式 */
.timeline-arrow:hover {
    background: white !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

.timeline-arrow:active {
    transform: translateY(-50%) scale(0.95) !important;
}

/* 時間軸響應式設計 */
@media (max-width: 768px) {
    .timeline-section {
        padding: 50px 0 !important;
    }
    
    .timeline-header {
        margin-bottom: 30px !important;
    }
    
    .timeline-header h2 {
        font-size: 1.8rem !important;
    }
    
    .timeline-header h2 i {
        display: block;
        margin: 0 auto 10px !important;
        font-size: 2rem;
    }
    
    .timeline-header p {
        font-size: 1rem !important;
        padding: 0 20px;
    }
    
    /* 手機版隱藏箭頭按鈕 */
    .timeline-arrow {
        display: none !important;
    }
    
    /* 調整滑動容器 padding */
    .timeline-scroll-container {
        padding: 20px 20px 30px !important;
    }
    
    .timeline-card {
        flex: 0 0 260px !important;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 40px 0 !important;
    }
    
    .timeline-header h2 {
        font-size: 1.6rem !important;
    }
    
    .timeline-card {
        flex: 0 0 240px !important;
    }
    
    .timeline-scroll-track {
        gap: 15px !important;
        padding: 0 15px !important;
    }
}

