@charset "utf-8";
/* CSS Document */

        /* --- 表單區塊 --- */
        .form-label {
            color: #666666;
            font-size: 15px;
            margin-bottom: 5px;
        }

        .form-control {
            border: 1px solid #dddddd;
            border-radius: 2px;
            padding: 10px 15px;
            font-size: 15px;
            color: #555555;
        }

        .form-control::placeholder {
            color: #bbbbbb;
        }

        .form-control:focus {
            border-color: #61a59a;
            box-shadow: 0 0 0 0.2rem rgba(97, 165, 154, 0.25);
        }

        .textarea-message {
            height: 100%;
            min-height: 250px;
        }

        /* --- 驗證碼特殊樣式 --- */
        .captcha-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .captcha-input {
            max-width: 150px; /* 限制驗證碼輸入框寬度 */
        }

        .captcha-image {
            background: linear-gradient(45deg, #e0e0e0 25%, #eeeeee 25%, #eeeeee 50%, #e0e0e0 50%, #e0e0e0 75%, #eeeeee 75%, #eeeeee 100%);
            background-size: 20px 20px;
            width: 100px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            font-style: italic;
            color: #333;
            letter-spacing: 4px;
            text-decoration: line-through; /* 模擬防機器人干擾線 */
            user-select: none; /* 防止反白複製 */
            border-radius: 2px;
        }

        .btn-refresh {
            background: transparent;
            border: none;
            color: #666666;
            font-size: 22px;
            cursor: pointer;
            padding: 0 5px;
            transition: transform 0.3s, color 0.3s;
        }

        .btn-refresh:hover {
            color: #61a59a;
            transform: rotate(90deg); /* 懸停時順時針旋轉一點點 */
        }

        /* 必填提示 */
        .required-note {
            color: #888888;
            font-size: 13px;
            margin-top: 10px;
        }

        /* 送出按鈕 */
        .btn-submit-wrapper {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 60px;
        }

        .btn-submit {
            background-color: #61a59a;
            color: #ffffff;
            border: none;
            padding: 10px 50px;
            font-size: 16px;
            letter-spacing: 2px;
            border-radius: 2px;
            transition: background-color 0.3s;
        }

        .btn-submit:hover {
            background-color: #4a8a81;
            color: #ffffff;
        }

        /* --- 中間分隔區塊與聯絡資訊 --- */
        .divider-image {
            width: 100%;
            max-width: 750px; 
            margin-left:auto; 
            margin-right:auto; 
            display: block;
        }

        .contact-info-text {
            text-align: center;
            font-size: 16px;
            color: #666666;
            margin-bottom: 40px;
            letter-spacing: 1px;
            line-height: 1.8;
        }

        .contact-info-text span {
            display: inline-block;
            margin: 0 10px;
        }

        /* --- 底部 QR Code 與地圖區塊 --- */
        .line-qr-box {
            border: 2px solid #00c300;
            padding: 15px;
            background-color: #ffffff;
            text-align: center;
            margin-bottom: 15px;
        }

        .line-qr-box img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }

        .btn-line {
            background-color: #00c300;
            color: #ffffff;
            width: 100%;
            padding: 10px 0;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 4px;
            letter-spacing: 1px;
            transition: opacity 0.3s;
        }

        .btn-line:active{
            /*opacity: 0.85;*/
            color: #ffffff !important;
            background-color: #00a300 !important;
        }
        .btn-line:hover {
            /*opacity: 0.85;*/
            color: #ffffff;
            background-color: #00a300;
        }

        .map-box {
            width: 100%;
            height: 100%;
            min-height: 350px;
            border: 1px solid #dddddd;
            background-color: #e9ecef;
        }

        .map-box iframe {
            width: 100%;
            height: 100%;
            min-height: 350px;
            border: 0;
        }

        @media (max-width: 768px) {
            .textarea-message {
                margin-top: 20px;
                height: 200px;
            }
            .contact-info-text span {
                display: block;
                margin: 5px 0;
            }
            .contact-info-text .separator {
                display: none;
            }
            .line-section {
                margin-bottom: 30px;
            }
        }
@media (min-width: 992px) {
    .divider-image{
        margin-bottom: 20px;
    }
}
@media (max-width: 991px) {
    .divider-image{
        margin-bottom: 20px;
    }
}