/* --- 查詢頁面 Section --- */
.enquiry-section {
    padding: 40px 0;
    background-color: #fff;
}

.enquiry-title {
    font-size: 32px;
    font-weight: bold;
    color: #0E1618;
    letter-spacing: 2px;
}

/* 聯絡資料卡片 (還原截圖樣式) */
.contact-info-box {
    background: #fff;
    border: 1px solid #eee;
    border-left: 5px solid #D7385E; /* 左側粉紅粗線 */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.contact-info-box p {
    margin-bottom: 5px;
}

/* 表單區域 */
.form-title {
    font-size: 25px;
    font-weight: bold;
    color: #000;
}

.form-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* 輸入框樣式 */
.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 4px; /* 輕微圓角 */
    padding: 10px 15px;
    font-size: 14px;
    background-color: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: #D7385E;
    box-shadow: 0 0 0 0.2rem rgba(215, 56, 94, 0.15);
}

/* 提交按鈕 */
.btn-submit {
    background-color: #E0988A; /* 類似截圖中的淡磚紅色/三文魚色 */
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #D7385E; /* Hover 時變深粉紅 */
    color: #fff;
    transform: translateY(-2px);
}

/* --- 手機版適配 --- */
@media (max-width: 991px) {
    .enquiry-section {
        padding: 40px 10px;
    }
    
    .enquiry-title {
        font-size: 26px;
        margin-bottom: 30px !important;
    }

    .contact-info-box {
        padding: 20px;
        font-size: 14px;
    }
    
    .btn-submit {
        width: 100%; /* 手機版按鈕全寬 */
    }
}