/* ==========================================
   main.css - 珠海奧迪通租車官網主樣式
   全新換代版 v5.0 | 2026-05-02
   主色調: 天藍 + 黃金 + 澳門綠點綴
   風格: 度假感·玻璃擬態·大留白
   ========================================== */

/* ============ 字體定義 ============ */
@font-face {
    font-family: 'ZHTitle';
    src: url('../img/font/JingNanBoBoHei-Bold-2.ttf') format('truetype');
    font-display: swap;
}

/* ============ CSS變量定義 ============ */
:root {
    /* 主色 */
    --primary: #0A6EBD;
    --primary-dark: #064A82;
    --primary-light: #3D9BE0;
    --sky-blue: #87CEEB;
    --light-blue: #E8F2FC;
    --secondary: #0B1D3A;
    --gold: #D4A843;
    --gold-dark: #B8891F;
    --golden: #ffc107;
    --purple: #6B2D8B;
    --vermilion: #C0392B;
    /* 澳門綠 — ZH獨有點綴色 */
    --macau-green: #00785C;
    --macau-green-light: #E8F5E9;
    /* 彩虹七色 */
    --rainbow-red: #FF6B6B;
    --rainbow-orange: #FFA94D;
    --rainbow-yellow: #FFD43B;
    --rainbow-green: #69DB7C;
    --rainbow-blue: #4DABF7;
    --rainbow-indigo: #748FFC;
    --rainbow-violet: #DA77F2;
    /* 中性色 */
    --dark: #071225;
    --light: #F4F8FC;
    --gray: #DDE5EF;
    --silver: #D8D8D8;
    --green: #009c3b;
    --warn: #ff9800;
    /* 動畫 & 圓角 — ZH比SZ更圓更柔 */
    --transition: all 0.4s ease;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-blur: blur(16px);
    /* 字體 */
    --font-family: 'Segoe UI', 'Microsoft JhengHei', system-ui, -apple-system, sans-serif;
    --font-title: 'ZHTitle', 'Microsoft JhengHei', sans-serif;
}

/* ============ 動畫關鍵幀 ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(3%, 2%) rotate(1.5deg); }
    66% { transform: translate(-2%, 3%) rotate(-1deg); }
}
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
    50% { box-shadow: 0 0 0 14px rgba(212,175,55,0); }
}
@keyframes slideDown {
    from { max-height: 0; opacity: 0; }
    to { max-height: 500px; opacity: 1; }
}
@keyframes ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}
@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ============ 基礎重置 ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-family);
    color: #333;
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============ 全局列表 & 鏈接 ============ */
ul, ol { list-style: none; padding: 0; margin: 0; }
li { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:hover { color: var(--primary); }

/* ============ 容器 ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2%; }

/* ============ 排版 ============ */
h1 {
    font-family: var(--font-title);
    color: var(--secondary);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06rem;
    line-height: 1.3;
}
h2 { color: var(--secondary); font-size: 2rem; font-weight: 700; letter-spacing: 0.1rem; text-align: center; }
h3 { font-size: 1.4rem; line-height: 1.8; letter-spacing: 0.08rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { line-height: 1.8; }

/* ============ 英雄橫幅區 — 沈浸式大圖 ============ */
 section { padding: 1rem 3%; }

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: linear-gradient(to bottom,
    #1a91ff 0%,    /* 顶部高空·深邃晴朗蓝 */
    #4facfe 40%,   /* 上层天空·干净明亮 */
    #73bcff 70%,   /* 中层天空·柔和通透 */
    #96d1ff 100%   /* 近地面·极浅清新蓝 */
  );
      z-index: 0;
}

/* ============ 白雲裝飾 ============ */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    z-index: 2;
    animation: float-cloud linear infinite;
    filter: blur(1px);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
}

/* 雲朵1 - 蓬鬆型 */
.cloud-1 {
    width: 140px;
    height: 45px;
    top: 12%;
    left: -180px;
    animation-duration: 35s;
    animation-delay: 0s;
    opacity: 0.85;
}

.cloud-1::before {
    width: 65px;
    height: 65px;
    top: -35px;
    left: 25px;
}

.cloud-1::after {
    width: 75px;
    height: 55px;
    top: -22px;
    right: 25px;
}

/* 雲朵2 - 纖細型 */
.cloud-2 {
    width: 110px;
    height: 32px;
    top: 28%;
    left: -150px;
    animation-duration: 42s;
    animation-delay: 8s;
    opacity: 0.75;
}

.cloud-2::before {
    width: 48px;
    height: 48px;
    top: -22px;
    left: 18px;
}

.cloud-2::after {
    width: 55px;
    height: 40px;
    top: -15px;
    right: 18px;
}

/* 雲朵3 - 圓潤型 */
.cloud-3 {
    width: 100px;
    height: 38px;
    top: 20%;
    left: -140px;
    animation-duration: 38s;
    animation-delay: 18s;
    opacity: 0.8;
}

.cloud-3::before {
    width: 52px;
    height: 52px;
    top: -28px;
    left: 15px;
}

.cloud-3::after {
    width: 58px;
    height: 45px;
    top: -18px;
    right: 15px;
}

@keyframes float-cloud {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 0.85;
    }
    95% {
        opacity: 0.85;
    }
    100% {
        transform: translateX(calc(100vw + 250px));
        opacity: 0;
    }
}

/* ============ 彩虹裝飾 ============ */
.rainbow {
    position: absolute;
    top: -5%;
    right: -20%;
    width: 650px;
    height: 320px;
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    animation: rainbow-shimmer 7s ease-in-out infinite;
}

.rainbow svg {
    width: 100%;
    height: 100%;
    filter: none;
}

.rainbow-arc {
    fill: none;
    transition: opacity 0.3s ease;
}

/* 紅色（最外層）- 宽度20px，透明度0.6 */
.arc-red {
    stroke-width: 20;
    stroke: rgba(255, 51, 51, 0.6);
    filter: none;
}

/* 橙色 - 宽度9px，透明度0.65 */
.arc-orange {
    stroke-width: 9;
    stroke: rgba(255, 136, 34, 0.65);
    filter: none;
}

/* 黃色 - 宽度4px（最窄），透明度0.7 */
.arc-yellow {
    stroke-width: 4;
    stroke: rgba(255, 255, 51, 0.7);
    filter: none;
}

/* 綠色 - 宽度17px（第二宽），透明度0.65 */
.arc-green {
    stroke-width: 17;
    stroke: rgba(51, 255, 85, 0.65);
    filter: none;
}

/* 藍色 - 宽度12px，透明度0.7 */
.arc-blue {
    stroke-width: 12;
    stroke: rgba(51, 102, 255, 0.7);
    filter: none;
}

/* 靛色 - 宽度11px，透明度0.75 */
.arc-indigo {
    stroke-width: 11;
    stroke: rgba(106, 13, 173, 0.75);
    filter: none;
}

/* 紫色（最內層）- 宽度10px，透明度0.8 */
.arc-violet {
    stroke-width: 10;
    stroke: rgba(180, 80, 240, 0.8);
    filter: none;
}

@keyframes rainbow-shimmer {
    0%, 100% {
        opacity: 0.7;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 4rem 1.5rem;
}
.hero-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    letter-spacing: 0.06rem;
}
.hero-title-accent {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--gold), #F5D78E, var(--gold), #F5D78E);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    margin-top: 0.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}




/* ============ 天空主题按钮 ============ */
.btn-sky-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    color:var(--macau-green);
    border-radius: var(--radius-lg);
    font-size: 1.3rem;
    letter-spacing: 1px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, 
        var(--rainbow-orange) 0%, 
        var(--rainbow-yellow) 50%, 
        var(--rainbow-violet) 100%);

}
/* 星星光点装饰（伪元素） */
.btn-sky-primary::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 
        15px 10px 0 1px rgba(255, 255, 255, 0.5),
        35px 25px 0 0.5px rgba(255, 255, 255, 0.4),
        60px 8px 0 1.5px rgba(255, 255, 255, 0.6),
        80px 30px 0 0.8px rgba(255, 255, 255, 0.3);
    animation: twinkle 3s ease-in-out infinite;
}
.btn-sky-primary::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 20%;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: 
        20px -15px 0 1px rgba(255, 255, 255, 0.4),
        45px 10px 0 0.5px rgba(255, 255, 255, 0.5);
    animation: twinkle 3s ease-in-out infinite 1.5s;
}
/* Hover效果：星星发光 + 按钮提亮 */
.btn-sky-primary:hover {
    /* 背景提亮，模拟阳光照射 */
    background: linear-gradient(135deg, #A8DFF0 0%, #7BC4E8 50%, #6BA8F0 100%);
    transform: translateY(-3px) scale(1.03);
    /* 增强的光晕效果 */
    box-shadow: 
        0 10px 35px rgba(135, 206, 235, 0.6),
        0 0 30px rgba(135, 206, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #fff;
}
/* Hover时星星更亮 */
.btn-sky-primary:hover::before,
.btn-sky-primary:hover::after {
    opacity: 1;
    filter: brightness(1.5) drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.btn-sky-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.4rem;
    /* 半透明白色，模拟云朵 */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.2);
}
.btn-sky-secondary:hover {
    /* Hover时变得更明亮 */
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(135, 206, 235, 0.4),
        0 0 20px rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-trust {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.95rem;
    opacity: 0.95;
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--secondary) ;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s ease;
    white-space: nowrap;
}
.hero-trust span:hover { background: rgba(255,255,255,0.4); }

/* ============ 章節標題 ============ */
.section-title {
    font-family: var(--font-title);
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2rem;
    letter-spacing: 0.1rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--macau-green), var(--primary), var(--gold));
    border-radius: 2px;
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ 核心賣點卡片 — 玻璃擬態 ============ */
.section-usp { padding: 5rem 0; }
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.usp-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.usp-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--macau-green), var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.usp-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,120,92,0.12), 0 8px 25px rgba(10,110,189,0.08);
}
.usp-item:hover::before { transform: scaleX(1); }
.usp-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.usp-item h3 { font-size: 1.3rem; color: var(--secondary); margin-bottom: 0.8rem; font-weight: 700; }
.usp-item p { font-size: 0.95rem; color: #555; line-height: 1.8; }

/* ============ 服務卡片 — 沈浸式漸變頭 ============ */
.section-services { padding: 5rem 0; background: #fff; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,120,92,0.08);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,120,92,0.12), 0 8px 25px rgba(0,0,0,0.06);
}
.service-card-header {
    padding: 2rem 1.8rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.service-card-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255,255,255,0.15));
}
.service-card-header h3,.service-card-header h3 a:hover { color: #fff; font-size: 1.3rem; margin-top: 0.8rem; }

.service-card-header p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 0.5rem; }
.service-card-header .card-icon { font-size: 3rem; }
.service-card-body {
    padding: 1.8rem;
}
.service-card-body p { color: #555; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.service-card-body .btn-hero-primary {
    font-size: 0.95rem;
    padding: 0.7rem 1.8rem;
}
.service-tag {
    display: inline-block;
    background: var(--macau-green-light);
    color: var(--macau-green);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-right: 0.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    border: 1px solid rgba(0,120,92,0.15);
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.service-link:hover { color: var(--gold-dark); transform: translateX(4px); }

/* ============ 場景標籤 ============ */
.section-scenes { padding: 5rem 0; background: linear-gradient(180deg, var(--light) 0%, #fff 100%); }
.scene-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.scene-tags li {
    display: inline-block;
    background: #fff;
    color: var(--secondary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--gray);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.scene-tags li:hover {
    background: linear-gradient(135deg, var(--macau-green), var(--primary));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,120,92,0.2);
}
.scene-tags li a { color: inherit; }

/* ============ 數據統計區 ============ */
.section-stats {
    background: linear-gradient(160deg, var(--secondary) 0%, var(--macau-green) 50%, var(--primary-dark) 100%);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.section-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212,168,67,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0,120,92,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-num {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700;
    display: block;
    text-shadow: 0 2px 10px rgba(212,168,67,0.3);
}
.stat-unit { font-size: 1.4rem; color: rgba(255,255,255,0.95); }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.8); display: block; margin-top: 0.3rem; }
.stats-grid li {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.stats-grid li:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }

/* ============ 核心優勢區 ============ */
.section-advantages { padding: 5rem 0; background: #fff; }
.advantage-list { max-width: 1000px; margin: 0 auto; }
.advantage-list li {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--gray);
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
}
.advantage-list li:hover { background: var(--light); }
.advantage-list li:last-child { border-bottom: none; }
.adv-num {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--macau-green), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.adv-content h3 { font-size: 1.3rem; color: var(--secondary); margin-bottom: 0.5rem; font-weight: 700; }
.adv-content p { font-size: 0.95rem; color: #555; line-height: 1.8; }

/* ============ 價格參考表格 ============ */
.pricing-table {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto 0;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,120,92,0.08);
    border-collapse: collapse;
}
.pricing-table thead {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--macau-green) 100%);
    color: #fff;
}
.pricing-table th {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}
.pricing-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,120,92,0.06);
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(0,120,92,0.04) 0%, rgba(212,168,67,0.04) 100%);
    transform: scale(1.005);
}
.pricing-table td {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    color: var(--secondary);
    text-align: center;
    line-height: 1.6;
}
.pricing-table td:first-child { text-align: left; font-weight: 600; }
.pricing-table .price-highlight { color: var(--vermilion); font-weight: 700; font-size: 1.05rem; }
.pricing-note { text-align: center; margin-top: 1rem; color: #666; font-size: 0.9rem; }
.pricing-tip-box {
    background: linear-gradient(135deg, rgba(0,120,92,0.06) 0%, rgba(212,168,67,0.06) 100%);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border-left: 4px solid var(--macau-green);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-tip-box strong { color: var(--secondary); display: block; margin-bottom: 0.8rem; }
.pricing-tip-box ul { list-style: none; padding: 0; }
.pricing-tip-box li { padding: 0.4rem 0; font-size: 0.9rem; color: #555; line-height: 1.7; }

/* ============ FAQ區 ============ */
.section-faq { padding: 5rem 0; background: var(--light); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: 0 6px 24px rgba(0,120,92,0.1); }
.faq-q {
    padding: 1.3rem 2rem;
    font-size: 1.05rem;
    color: var(--secondary);
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--macau-green);
}
.faq-q:hover { background: var(--macau-green-light); }
.faq-q::after { content: '+'; font-size: 1.8rem; color: var(--primary); transition: transform 0.3s ease; font-weight: 300; }
.faq-item.open .faq-q { background: var(--macau-green-light); border-left-color: var(--primary); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding: 1rem 2rem; font-size: 0.95rem; color: #555; line-height: 1.8; }
.faq-a a { color: var(--primary); text-decoration: underline; }

/* ============ 行動召喚區 ============ */
.section-cta {
    background: linear-gradient(160deg, var(--secondary) 0%, var(--macau-green) 45%, var(--primary) 100%);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212,168,67,0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0,120,92,0.15) 0%, transparent 40%);
    pointer-events: none;
}
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    position: relative;
    z-index: 1;
}
.cta-content h2 { font-size: 2rem; color: #fff; margin-bottom: 1rem; text-align: left; }
.cta-content p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 1.5rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(212,168,67,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary-lg:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,168,67,0.55); color: #fff; }
.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-lg);
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-secondary-lg:hover { background: rgba(255,255,255,0.25); border-color: #fff; color: #fff; }
.cta-qr { text-align: center; flex-shrink: 0; }
.cta-qr img { border-radius: var(--radius-md); }
.cta-qr p { font-size: 0.9rem; margin-top: 0.5rem; opacity: 0.85; }

/* ============ 底部 (仅保留容器级样式) ============ */
#site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    padding: 4rem 0 0;
}
.footer-inner {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============ 新聞區 ============ */
.section-news { padding: 5rem 0; background: #fff; }
.news-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.news-header .section-title { margin: 0; }
.news-more-link { color: var(--primary); font-weight: 600; white-space: nowrap; }
.news-more-link:hover { color: var(--gold-dark); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}
.news-item {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.news-item-img {
    display: block;
    position: relative;
    overflow: hidden;
}
.news-item-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.news-item:hover .news-item-img img { transform: scale(1.05); }
.news-item-cat {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--primary);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.news-item-body { padding: 1.3rem; }
.news-item-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: #999; margin-bottom: 0.5rem; }
.news-item-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-item-title a { color: inherit; }
.news-item-title a:hover { color: var(--primary); }
.news-item-summary { font-size: 0.9rem; color: #666; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============ 溫馨提示框 ============ */
.warm-tip {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--macau-green);
    box-shadow: 0 2px 12px rgba(0,120,92,0.1);
}
.warm-tip-title {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.warm-tip-list { list-style: none; padding: 0; margin: 0; }
.warm-tip-list li {
    font-size: 0.95rem;
    color: #555;
    padding: 0.5rem 0 0.5rem 1.8rem;
    margin-bottom: 0.3rem;
    line-height: 1.7;
    position: relative;
    border-bottom: 1px dashed rgba(0,120,92,0.2);
}
.warm-tip-list li:last-child { border-bottom: none; }
.warm-tip-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--macau-green);
    font-weight: 700;
}
.warm-tip-note { margin-top: 1rem; padding-top: 1rem; border-top: 2px solid rgba(0,120,92,0.2); font-size: 0.9rem; color: #777; }
.warm-tip strong { color: var(--secondary); font-weight: 700; }

/* ============ 團餐定價卡片 ============ */
.tuncan-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}
.tuncan-pricing-card {
    background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,120,92,0.08);
    transition: all 0.4s ease;
}
.tuncan-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(0,120,92,0.12);
    border-color: var(--macau-green);
}
.tuncan-pricing-card .card-header {
    padding: 2rem;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--macau-green), var(--primary));
}
.tuncan-pricing-card .card-body { padding: 1.5rem 2rem; }
.tuncan-pricing-card h3 { color: #fff; font-size: 1.3rem; }
.tuncan-pricing-card .price { font-size: 2rem; font-weight: 700; color: #fff; }
.tuncan-pricing-card .price small { font-size: 0.9rem; font-weight: 400; }
.tuncan-pricing-card ul { list-style: none; padding: 0; margin: 1rem 0; }
.tuncan-pricing-card li { padding: 0.4rem 0; font-size: 0.9rem; color: #555; border-bottom: 1px dashed var(--gray); }
.tuncan-pricing-card li:last-child { border-bottom: none; }
.tuncan-pricing-card li::before { content: "✓ "; color: var(--macau-green); font-weight: 700; }

/* ============ 客戶評價 ============ */
.section-reviews { padding: 5rem 0; background: var(--light); }
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}
.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.review-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; }
.review-text { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--macau-green), var(--primary));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
}
.review-info h4 { font-size: 0.95rem; color: var(--secondary); margin-bottom: 0; }
.review-info p { font-size: 0.8rem; color: #999; }
.review-tag {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--macau-green-light);
    color: var(--macau-green);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============ 路線卡片 (澳粵直通用) ============ */
.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}
.route-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border: 1px solid var(--gray);
    transition: all 0.3s ease;
    position: relative;
}
.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,120,92,0.12);
    border-color: var(--macau-green);
}
.route-card h3 { color: var(--secondary); font-size: 1.2rem; margin-bottom: 0.5rem; }
.route-card .route-price { color: var(--vermilion); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.8rem; }
.route-card .route-price small { font-size: 0.85rem; font-weight: 400; color: #666; }
.route-card p { font-size: 0.9rem; color: #555; line-height: 1.7; }

/* ============ 安全保障區 ============ */
.safety-section { background: linear-gradient(180deg, var(--light) 0%, #fff 100%); }
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.safety-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border-top: 4px solid var(--macau-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ============ 白雲與彩虹響應式適配 ============ */
@media (max-width: 768px) {
    .rainbow {
        width: 400px;
        height: 200px;
        top: -8%;
        right: -25%;
        opacity: 0.6;
    }
    
    .cloud-1 {
        width: 90px;
        height: 30px;
    }
    
    .cloud-1::before {
        width: 42px;
        height: 42px;
        top: -22px;
        left: 16px;
    }
    
    .cloud-1::after {
        width: 48px;
        height: 35px;
        top: -14px;
        right: 16px;
    }
    
    .cloud-2 {
        width: 70px;
        height: 22px;
    }
    
    .cloud-2::before {
        width: 32px;
        height: 32px;
        top: -15px;
        left: 12px;
    }
    
    .cloud-2::after {
        width: 36px;
        height: 26px;
        top: -10px;
        right: 12px;
    }
    
    .cloud-3 {
        width: 65px;
        height: 25px;
    }
    
    .cloud-3::before {
        width: 34px;
        height: 34px;
        top: -18px;
        left: 10px;
    }
    
    .cloud-3::after {
        width: 38px;
        height: 29px;
        top: -12px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .rainbow {
        width: 300px;
        height: 150px;
        top: -10%;
        right: -30%;
        opacity: 0.5;
    }
    
    .cloud { display: none; } /* 超小屏幕隱藏白雲，避免干擾內容 */
}
