﻿/* ========================================= */
/* === 我們是你的陪跑者 (三格特色區塊) === */
/* ========================================= */
.service-features {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

    .service-features .section-title {
        font-size: 2rem;
        font-weight: bold;
        color: var(--text-dark);
        margin-bottom: 50px;
        letter-spacing: 2px;
    }

.features-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.1);
}

    .icon-circle .emoji-icon {
        font-size: 45px;
    }

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 800px) {
    .features-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

/* ========================================= */
/* === 快速導覽 (瘦長三格卡片) === */
/* ========================================= */
.tall-cards-grid {
    max-width: 1000px;
    margin: 20px auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
}

.tall-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .tall-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        border-color: var(--primary-blue);
    }

    .tall-card .card-icon {
        font-size: 45px;
        margin-bottom: 25px;
    }

    .tall-card h3 {
        font-size: 1.3rem;
        font-weight: bold;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .tall-card p {
        font-size: 1rem;
        color: #777;
        margin: 0;
    }

/* ========================================= */
/* === 資訊區塊 (六宮格 + 全寬大按鈕) === */
/* ========================================= */
.six-grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.grid-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
    overflow: hidden;
}

    .grid-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        border-color: var(--primary-blue);
    }

.card-image-wrapper {
    width: 100%;
    height: 180px;
    background-color: #fcfcfc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

    .card-image-wrapper img {
        width: 120px;
        height: auto;
        transition: transform 0.3s;
    }

.grid-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

    .card-content h3 {
        font-size: 1.25rem;
        font-weight: bold;
        color: var(--dark-blue);
        margin: 0;
        text-align: center;
    }

.full-width-card {
    flex-direction: row;
    align-items: center;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

    .full-width-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .full-width-card .card-image-wrapper {
        width: 200px;
        height: 150px;
        border-bottom: none;
        border-right: 1px solid #eeeeee;
        background-color: transparent;
        flex-shrink: 0;
    }

    .full-width-card .card-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 30px 50px;
        flex-grow: 1;
    }

        .full-width-card .card-content h3 {
            font-size: 1.6rem;
            margin: 0;
            color: var(--dark-blue);
        }

.fake-btn {
    padding: 12px 35px;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.2s;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.grid-card:hover .fake-btn {
    background-color: var(--hover-yellow);
}

.full-width-card .fake-btn {
    margin: 0;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .six-grid-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .six-grid-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .full-width-card {
        flex-direction: column;
    }

        .full-width-card .card-image-wrapper {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid #f0f0f0;
        }

        .full-width-card .card-content {
            flex-direction: column;
            align-items: center;
            padding: 25px 20px;
            gap: 15px;
        }

        .full-width-card .fake-btn {
            width: 100%;
        }
}
