/* 寮圭獥閬僵灞� */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

/* 寮圭獥瀹瑰櫒 */
.modal-container {
    width: 90%;
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-container.active {
    transform: scale(1) translateY(0);
}

/* 寮圭獥澶撮儴 */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #112131;
    color: #ffffff;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 寮圭獥鍐呭鍖� */
.modal-body {
    padding: 25px;
}

/* 棰勭害琛ㄥ崟 */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form > div {
    clear: both;
}

/* 杈撳叆妗嗘牱寮� */
.name210711,
.input210711 {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.name210711:focus,
.input210711:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

/* 涓嬫媺閫夋嫨妗嗘牱寮� */
.select61 {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.select61:focus {
    border-color:var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

/* 鏃ユ湡閫夋嫨妗� */
#date_info {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

#date_info:focus {
    border-color:var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

/* 鏂囨湰鍩熸牱寮� */
.textarer210711 {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    box-sizing: border-box;
    min-height: 100px;
    resize: vertical;
}

.textarer210711:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

/* 琛ㄥ崟鏍囩 */
.fmyu {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
}

/* 琛ㄥ崟鎸夐挳鍖� */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.submit-btn {
    flex: 1;
    padding: 14px 20px;
    background-color: #112131;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a365d;
}

.contact-btn {
    flex: 1;
    padding: 14px 20px;
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* 瀹㈡湇淇℃伅 */
.contact-info {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
}

/* 姘镐箙鍏抽棴閾炬帴 */
.yjgb {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #999999;
    cursor: pointer;
    text-decoration: underline;
}

.yjgb:hover {
    color: var(--primary-color);
}

/* 鍝嶅簲寮忚璁� */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-width: none;
        margin: 10px;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-header h2 {
        font-size: 16px;
    }

    .modal-body {
        padding: 20px;
    }

    .name210711,
    .input210711,
    .select61,
    #date_info,
    .textarer210711 {
        padding: 10px 12px;
        font-size: 13px;
    }

    .form-actions {
        flex-direction: column;
    }

    .submit-btn,
    .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .fmyu {
        font-size: 13px;
    }

    .contact-info {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 14px;
    }

    .modal-body {
        padding: 15px;
    }

    .contact-info {
        font-size: 11px;
    }
}

/* 淇冮攢寮圭獥鏍峰紡 */
.promo-modal {
    max-width: 380px;
}

.promo-header {
    background-color: #f5f5f5;
    padding: 10px 15px;
}

.promo-header h2 {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.promo-close {
    color: #999;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.promo-close:hover {
    background-color: #e5e5e5;
    color: #333;
}

.promo-body {
    padding: 0;
}

.promo-content {
    text-align: center;
    padding: 20px 15px;
}

.promo-logo {
    margin-bottom: 15px;
}
.btnbox{
    display: flex;
    gap: 10px;
    justify-content: center;
}

.promo-button {
 width: 40%;
    padding: 12px 20px;
    background-color: #112131;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}
.contact-button{
 width: 40%;
    padding: 16px 30px;
    background-color: #112131;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}
.promo-button:hover {
    background-color: #1a365d;
}
.contact-button:hover {
    background-color: #1a365d;
}

.promo-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 8px 0;
}