/* 基礎樣式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* 導航欄 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* 首頁橫幅 */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 背景城市剪影 */
.city-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    opacity: 0.3;
}

.building {
    width: 20px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px 2px 0 0;
    animation: buildingGlow 3s ease-in-out infinite;
}

.building:nth-child(2) {
    height: 50px;
    animation-delay: 0.5s;
}

.building:nth-child(3) {
    height: 35px;
    animation-delay: 1s;
}

.building:nth-child(4) {
    height: 45px;
    animation-delay: 1.5s;
}

@keyframes buildingGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

/* 數據流動畫 */
.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.data-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: dataFlow 4s linear infinite;
}

.data-line:nth-child(1) {
    top: 20%;
    width: 100px;
    left: -100px;
    animation-delay: 0s;
}

.data-line:nth-child(2) {
    top: 60%;
    width: 80px;
    left: -80px;
    animation-delay: 1.5s;
}

.data-line:nth-child(3) {
    top: 80%;
    width: 120px;
    left: -120px;
    animation-delay: 3s;
}

@keyframes dataFlow {
    0% { transform: translateX(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(400px); opacity: 0; }
}

/* 主要卡車動畫 */
.truck-animation {
    font-size: 4rem;
    color: white;
    animation: truckMove 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

/* 速度線條 */
.speed-lines {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.speed-line {
    width: 15px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 2px 0;
    animation: speedLine 0.8s ease-out infinite;
}

.speed-line:nth-child(2) {
    animation-delay: 0.2s;
}

.speed-line:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes speedLine {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-20px); opacity: 0; }
}

/* 包裹元素 */
.packages {
    position: absolute;
    top: 20%;
    right: 10%;
}

.package {
    font-size: 1.5rem;
    color: #fbbf24;
    margin: 10px 0;
    animation: packageFloat 2s ease-in-out infinite;
}

.package:nth-child(2) {
    animation-delay: 0.5s;
}

.package:nth-child(3) {
    animation-delay: 1s;
}

@keyframes packageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 倉庫圖標 */
.warehouse {
    position: absolute;
    bottom: 20%;
    left: 10%;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: warehousePulse 2s ease-in-out infinite;
}

@keyframes warehousePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* 配送中心 */
.delivery-center {
    position: absolute;
    top: 30%;
    left: 15%;
    font-size: 1.8rem;
    color: #10b981;
    animation: deliverySpin 3s linear infinite;
}

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

/* 路線和配送點 */
.route-line {
    position: absolute;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 10%;
}

.delivery-points {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 10%;
    display: flex;
    justify-content: space-between;
}

.point {
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
    margin-top: -5px;
    animation: pulse 2s infinite;
}

.point:nth-child(2) {
    animation-delay: 0.5s;
}

.point:nth-child(3) {
    animation-delay: 1s;
}

.point:nth-child(4) {
    animation-delay: 1.5s;
}

/* 衛星圖標 */
.satellite {
    position: absolute;
    top: 15%;
    right: 20%;
    font-size: 1.5rem;
    color: #8b5cf6;
    animation: satelliteOrbit 4s linear infinite;
}

@keyframes satelliteOrbit {
    0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

/* 連接線 */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    animation: connectionFlow 3s ease-in-out infinite;
}

.connection-line:nth-child(1) {
    top: 25%;
    left: 20%;
    width: 60px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.connection-line:nth-child(2) {
    top: 65%;
    right: 25%;
    width: 50px;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.connection-line:nth-child(3) {
    bottom: 30%;
    left: 50%;
    width: 40px;
    transform: rotate(15deg);
    animation-delay: 2s;
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* 科技元素 */
.tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.tech-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
    animation: techBlink 2s ease-in-out infinite;
}

.tech-dot:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.tech-dot:nth-child(2) {
    top: 40%;
    right: 25%;
    animation-delay: 0.5s;
}

.tech-dot:nth-child(3) {
    bottom: 30%;
    left: 40%;
    animation-delay: 1s;
}

.tech-dot:nth-child(4) {
    bottom: 60%;
    right: 35%;
    animation-delay: 1.5s;
}

@keyframes techBlink {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes truckMove {
    0%, 100% { transform: translateX(-50px); }
    50% { transform: translateX(50px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* 區段標題 */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* 功能特色 */
.features {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* 模組服務 */
.modules {
    padding: 5rem 0;
    background: white;
}

.modules-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

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

.module-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.module-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.module-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.module-text ul {
    list-style: none;
}

.module-text li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.module-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.module-visual {
    text-align: center;
}

.module-visual i {
    font-size: 6rem;
    color: #2563eb;
    opacity: 0.8;
}

/* 系統整合 */
.integration {
    padding: 5rem 0;
    background: #f8fafc;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.integration-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.integration-icon i {
    font-size: 1.8rem;
    color: white;
}

.integration-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.integration-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* 技術應用 */
.technology {
    padding: 5rem 0;
    background: white;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon i {
    font-size: 2rem;
    color: white;
}

.tech-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tech-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* 客戶端介面 */
.client-interface {
    padding: 5rem 0;
    background: #f8fafc;
}

.client-features {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.client-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.client-feature:nth-child(even) {
    direction: rtl;
}

.client-feature:nth-child(even) .client-text {
    direction: ltr;
}

.client-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.client-text p {
    color: #6b7280;
    line-height: 1.6;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-interface {
    width: 100%;
    text-align: center;
}

.tracking-info h4,
.chat-interface h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tracking-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.status-dot.active {
    background: #10b981;
}

.chat-bubble {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    display: inline-block;
    max-width: 200px;
}

/* 聯絡我們 */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
}

.contact-info {
    margin: 0 auto;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.map-embed {
    margin-top: 10px;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.map-embed iframe {
    width: 100%;
    min-height: 220px;
    border-radius: 10px;
    border: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* 頁腳 */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p,
.footer-section li {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 2rem;
    }

    .module-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .client-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .client-feature:nth-child(even) {
        direction: ltr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phone-mockup {
        width: 240px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .features-grid,
    .integration-grid,
    .tech-showcase {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
    }
}

/* 滾動動畫 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 載入動畫 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 客戶端介面美化 */
.enhanced-mockup {
    box-shadow: 0 8px 32px rgba(60, 60, 120, 0.18), 0 1.5px 8px rgba(0,0,0,0.08);
    background: #f3f4f6;
    position: relative;
    overflow: visible;
}

.phone-bg-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #e0e7ff 0%, #fbbf24 100%);
    opacity: 0.18;
}

.phone-decor {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    background: #fbbf24;
}
.decor1 { width: 60px; height: 60px; top: 10px; left: 20px; }
.decor2 { width: 40px; height: 40px; bottom: 30px; right: 30px; }
.decor3 { width: 30px; height: 30px; top: 60px; right: 40px; }

/* 進度條 */
.progress-bar {
    width: 80%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 5px;
    margin: 18px auto 10px auto;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.progress {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    border-radius: 5px;
    transition: width 0.6s cubic-bezier(.4,2,.6,1);
}

/* 物流路線圖示 */
.mini-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 10px 0 0 0;
}
.mini-route .mini-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    border-radius: 2px;
}
.mini-route .start { color: #10b981; font-size: 1.1rem; }
.mini-route .end { color: #f59e0b; font-size: 1.1rem; }
.mini-route .fa-truck-moving { color: #2563eb; font-size: 1.2rem; }

/* 客戶訊息泡泡 */
.client-messages {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    position: relative;
}
.msg-bubble {
    display: inline-block;
    max-width: 80%;
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 0.98rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #fff;
    color: #374151;
    position: relative;
    word-break: break-all;
}
.msg-bubble.left {
    align-self: flex-start;
    background: #e0e7ff;
    color: #2563eb;
}
.msg-bubble.right {
    align-self: flex-end;
    background: #fbbf24;
    color: #7c3aed;
}

/* 聊天泡泡 */
.chat-bubble {
    display: inline-block;
    max-width: 80%;
    padding: 10px 18px;
    border-radius: 18px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #e0e7ff;
    color: #2563eb;
    margin-bottom: 8px;
    position: relative;
    word-break: break-all;
}
.chat-bubble.right {
    background: #fbbf24;
    color: #7c3aed;
    align-self: flex-end;
}
.chat-bubble.left {
    background: #e0e7ff;
    color: #2563eb;
    align-self: flex-start;
}

/* 客戶評價星星 */
.client-rating {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 1.1rem;
}
.client-rating .star {
    color: #fbbf24;
    margin: 0 1px;
}
.client-rating .rating-text {
    margin-left: 8px;
    color: #6b7280;
    font-size: 0.98rem;
    font-weight: 500;
}

/* 手機mockup細節微調 */
.enhanced-mockup .phone-screen {
    background: #fff;
    box-shadow: 0 2px 12px rgba(60,60,120,0.08);
    border: 1.5px solid #e0e7ff;
    position: relative;
    overflow: hidden;
} 