﻿.contact-us-page {
    padding-top: 80px;
    padding-bottom: 150px;
    min-height: 100vh;
    background-color: #fafafa;
}

/* 簡化的頁面標題區域 */
.page-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0d6efd; /* 改為主要藍色，與網站整體色調一致 */
    margin: 0;
}

.page-subtitle {
    font-size: 1.1rem;
    margin: 0;
}

.contact-card {
    position: relative;
    z-index: 1;
}

/* 簡化卡片標題背景 */
.card-header.bg-light {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: white;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

    .contact-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        border-color: #dee2e6;
    }

.contact-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    margin: 0 auto;
}

.contact-icon {
    font-size: 1.5rem;
    color: #6c757d;
}

.contact-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.email-link, .phone-link {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .email-link:hover, .phone-link:hover {
        color: #007bff;
        text-decoration: underline;
    }

.contact-person {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.additional-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

@@media (max-width: 768px) {
    .contact-us-page {
        padding-top: 100px;
        padding-bottom: 200px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-item {
        margin-bottom: 2rem;
    }

    .card-body {
        padding: 2rem !important;
    }

    .additional-info {
        margin-bottom: 3rem;
    }
}
