.announcement-bar{
    background: #695842;
    color: #fff;
}

/* 聯絡我們 */
.booking-title {
    display: inline-block;
    margin: 0 0 24px;
    padding: 8px 32px 10px;
    color: #4d3d2e;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.7);
    line-height: 1.3;
    position: relative;
}

.booking-title::before,
.booking-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 2px;
    background: #b88a62;
    transform: translateY(-50%);
}

.booking-title::before { left: -30%; }
.booking-title::after { right: -30%; }

.booking-panel,
.booking-process-box {
    background: rgba(255,255,255,0.72);
    padding: 25px 28px 20px;
    min-height: 100%;
}

.booking-panel-title {
    margin: 0 0 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #4d3d2e;
    display: inline-block;
    position: relative;
    padding-left: 12px;
}

.booking-panel-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    background: #e4a866;
}

.booking-form .form-control,
.booking-form select,
.booking-form textarea {
    border: 1px solid #d8d3cd;
    background: #f3f1ee;
    border-radius: 0;
    color: #4d3d2e;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 1rem;
}

.booking-form textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.booking-form .form-control::placeholder,
.booking-form textarea::placeholder {
    color: #8b8178;
}

.booking-form .form-group {
    margin-bottom: 1rem;
}

.custom-label {
    display: block;
    margin-bottom: 8px;
    color: #5d524d;
    font-size: 1rem;
}

.yes-no {
    gap: 18px;
    color: #4d3d2e;
    font-size: 1rem;
}

.yes-no input {
    margin-right: 8px;
}

.booking-process-box .process-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0 18px;
    border-bottom: 1px solid #d9d2ca;
}

.booking-process-box .process-step.last {
    border-bottom: none;
    padding-bottom: 0;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d3b289;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 4px;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #3b312d;
    font-weight: 700;
}

.step-content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #5b514c;
}

.method-list {
    gap: 15px;
    margin-top: 22px;
    margin-bottom: 18px;
    flex-wrap: nowrap;
}

.method-btn {
    min-width: 150px;
    border-radius: 999px;
    background: linear-gradient(180deg, #cbb29b, #ad8767);
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    border: none;
    box-shadow: none;
}

.method-btn i {
    margin-right: 8px;
}

.consent-text {
    color: #5e524d;
    font-size: 0.9rem;
}

.btn-custom01 {
    background: #f3e1cf;
    color: #4a3d35;
    border: 1px solid #d2b08a;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
}

.btn-custom01:hover {
    background: #e9d0af;
    color: #2f2824;
}

.header-menu-toggle {
    width: 100%;
    margin: 0;
    padding: 10px 4px;
    border: 0;
    background: transparent;
    color: #545454;
    font-family: "Noto Serif TC";
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
    color: #695842;
    outline: none;
}

@media (min-width: 992px) {
    .header-menu-toggle {
        width: auto;
        text-align: center;
    }
}

@media (min-width: 1111px) {
    .header-menu-toggle {
        padding: 10px 9px;
    }
}

@media (min-width: 1280px) {
    .header-menu-toggle {
        padding: 10px;
        color: #705f4a;
        font-size: 0.9em;
        line-height: 21px;
    }
}

@media (max-width: 991px) {
    .header-menu-toggle {
        padding: 10px 42px 10px 15px;
        color: #000;
    }

    .booking-title::before,
    .booking-title::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .method-list {
        flex-wrap: wrap;
    }
}