/* 服務信息頁面樣式 */
/* Page Hero Section */
.contact-hero {
    background: url('/pc_static/images/header-bg-1.jpg') center center / cover no-repeat;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-header {
    position: relative;
    z-index: 1;
}

.contact-header h1 {
    font-size: 48px;
    line-height: 46px;
    font-weight: 600;
    margin: 0 0 16px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 服務內容容器 */
.service-content {
    min-height: calc(100vh - 140px);
    padding: 86px 16px 60px 16px;
}

/* PC端適配 */
@media (min-width: 1024px) {
    .service-content {
        padding: 120px 32px 60px 32px;
    }
    
    .service-content-wrapper .container {
        max-width: 1200px;
    }
}


/* 服務介紹內容 */
.service-description {
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .service-description {
        width: 100%;
        margin-bottom: 0;
    }
}

/* 服務模塊 */
.service-block {
    display: none;
}

.service-block.active {
    display: block;
}

/* 服務內容區塊 */
.service-block-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .service-block-content {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }
    
    /* 團隊包車圖片在左邊 */
    .service-block[data-service="team"] .service-block-content {
        flex-direction: row-reverse;
    }
}

/* 文字區域 */
.service-text-section {
    flex: 1;
}

/* 圖片區域 */
.service-image-section {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .service-image-section {
        width: 45%;
    }
}

/* Swiper輪播圖樣式 */
.service-image-swiper {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #2a2a2a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .service-image-swiper {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .service-image-swiper {
        height: 500px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
}

.service-image-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-image-swiper:hover .service-image {
    transform: scale(1.05);
}

/* Fade效果优化 */
.service-image-swiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.service-image-swiper .swiper-slide-active {
    opacity: 1;
}

/* Swiper分頁器樣式 */
.service-image-swiper .swiper-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: auto !important;
}

.service-image-swiper .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    margin: 0 !important;
    display: inline-block;
}

.service-image-swiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.service-image-swiper .swiper-pagination-bullet-active {
    background: var(--primary-gold);
    opacity: 1;
    box-shadow: 0 0 12px rgba(255, 207, 112, 0.6);
    width: 50px;
}

/* 自定義分頁器樣式 */
.service-image-swiper .swiper-pagination-bullet-custom {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    margin: 0 !important;
    display: inline-block;
}

.service-image-swiper .swiper-pagination-bullet-custom:hover {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.service-image-swiper .swiper-pagination-bullet-active-custom {
    background: var(--primary-gold);
    opacity: 1;
    box-shadow: 0 0 12px rgba(255, 207, 112, 0.6);
    width: 50px;
}

/* 區塊標題 */
.section-title {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 700;
    margin: 6px 0 14px 0;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 24px;
        margin: 8px 0 24px 0;
    }
}

/* 服務流程 */
.service-flow-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
}

@media (min-width: 1024px) {
    .service-flow-section {
        padding-top: 30px;
    }
    
    .service-flow-section .container {
        max-width: 1200px;
    }
}

.flow-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    position: relative;
}

@media (min-width: 1024px) {
    .flow-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 40px;
    }
    
    /* 添加连接线效果 */
    /* .flow-steps::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: #333333;
        transform: translateY(-50%);
        z-index: 0;
        opacity: 0.3;
    } */
}

.flow-step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.flow-step:hover {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 24px rgba(255, 207, 112, 0.15);
}

@media (min-width: 1024px) {
    .flow-step {
        padding: 32px 24px;
        gap: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    }
    
    .flow-step:hover {
        background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    }
}

.step-index {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-index:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 207, 112, 0.5);
}

@media (min-width: 1024px) {
    .step-index {
        width: 48px;
        height: 48px;
        font-size: 24px;
        background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
        box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
    }
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 1024px) {
    .step-content {
        gap: 8px;
        margin-top: 8px;
    }
}

.step-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .step-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
}

.step-desc {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .step-desc {
        font-size: 15px;
        line-height: 1.6;
        color: #b0b0b0;
    }
}

/* 服務收費 */
.service-pricing-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    margin-bottom: 28px;
}

@media (min-width: 1024px) {
    .service-pricing-section {
        padding-top: 60px;
        margin-bottom: 60px;
    }
    
    .service-pricing-section .container {
        max-width: 1200px;
    }
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 1024px) {
    .pricing-table {
        gap: 16px;
        margin-top: 40px;
    }
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

.pricing-row:hover {
    transform: translateX(4px);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 16px rgba(255, 207, 112, 0.1);
}

@media (min-width: 1024px) {
    .pricing-row {
        padding: 28px 32px;
        gap: 32px;
        background: linear-gradient(135deg, #2a2a2a 0%, #222222 100%);
        border-radius: 16px;
    }
    
    .pricing-row:hover {
        background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
        box-shadow: 0 8px 24px rgba(255, 207, 112, 0.15);
    }
}

.pricing-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 1024px) {
    .pricing-item {
        gap: 8px;
    }
}

.pricing-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .pricing-title {
        font-size: 22px;
        font-weight: 700;
    }
}

.pricing-desc {
    color: #cccccc;
    font-size: 12px;
}

@media (min-width: 1024px) {
    .pricing-desc {
        font-size: 16px;
        color: #b0b0b0;
    }
}

.pricing-value {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
}

@media (min-width: 1024px) {
    .pricing-value {
        font-size: 28px;
        text-align: right;
        font-weight: 800;
        letter-spacing: 0.5px;
        background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* 不支持渐变文字的浏览器fallback */
    @supports not (background-clip: text) {
        .pricing-value {
            color: var(--primary-gold);
            background: none;
            -webkit-text-fill-color: var(--primary-gold);
        }
    }
}

.pricing-note {
    color: #333333;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    margin-top: 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #FFCF70 0%, #FFE5B4 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.2);
    font-weight: 500;
}

@media (min-width: 1024px) {
    .pricing-note {
        font-size: 15px;
        padding: 24px 40px;
        margin-top: 32px;
        border-radius: 16px;
    }
}

/* 聯絡表單區域 */
.contact-form-section {
    padding: 80px 0;
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/pc_static/images/earth.gif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .contact-form-section {
        padding: 100px 0;
    }
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .form-wrapper {
        padding: 50px;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h2 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
    .form-header h2 {
        font-size: 28px;
    }
}

.form-header p {
    font-size: 14px;
    color: #e0e0e0;
    margin: 0;
}

@media (min-width: 1024px) {
    .form-header p {
        font-size: 16px;
    }
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.layui-form-item {
    margin-bottom: 20px;
}

.layui-input-wrapper {
    position: relative;
}

.layui-input,
.layui-select,
.layui-textarea {
    width: 100%;
    padding: 0 16px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--family-font);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-sizing: border-box;
    line-height: 48px;
}

.layui-input:focus,
.layui-select:focus,
.layui-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 207, 112, 0.2);
}

.layui-input::placeholder,
.layui-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.layui-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.layui-textarea {
    resize: vertical;
    min-height: 120px;
    height: auto;
    line-height: 1.6;
    padding: 16px;
}

.layui-btn.submit-btn {
    width: 100%;
    height: fit-content;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--family-font);
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
}

.layui-btn.submit-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 207, 112, 0.4);
}

.layui-btn.submit-btn:active {
    transform: translateY(0);
}

/* 需求表單 */
.service-request-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    margin-bottom: 110px;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.request-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.request-form .form-group label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.request-form .form-group input,
.request-form .form-group textarea {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 14px;
}

.request-submit-btn {
    width: 100%;
    margin-top: 4px;
}

@media (max-width: 375px) {
    .request-form .form-row {
        grid-template-columns: 1fr;
    }
}

.service-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .service-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
}

.service-text {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

@media (min-width: 1024px) {
    .service-text {
        font-size: 16px;
        line-height: 1.8;
    }
}

.service-text p {
    color: #333333;
    margin-bottom: 16px;
}

.service-text p:last-child {
    margin-bottom: 0;
}

/* 固定底部按鈕 */
.fixed-bottom-btn {
    position: fixed;
    bottom: 0; /* 底部導航高度 */
    left: 0;
    right: 0;
    background: linear-gradient(to top, #1a1a1a 0%, #1a1a1a 70%, transparent 100%);
    padding: 16px 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: var(--primary-black);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 207, 112, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 207, 112, 0.3);
}

.contact-btn svg {
    flex-shrink: 0;
}

/* 聯絡表單彈窗 */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    background: #2a2a2a;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #999999;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.modal-body {
    padding: 12px;
}

/* 表單樣式 */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 207, 112, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group textarea {
    min-height: 100px;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    color: var(--primary-black);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 響應式設計 */
@media (max-width: 768px) {
    
    .fixed-bottom-btn {
        padding: 12px 16px;
    }
    
    .modal-content {
        margin: 16px;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 12px;
    }
}

@media (max-width: 375px) {
    
    .fixed-bottom-btn {
        padding: 10px 12px;
    }
    
    .contact-btn {
        padding: 14px 20px;
    }
    
    .modal-content {
        margin: 12px;
        max-height: 90vh;
    }
}

/* 確保所有屏幕尺寸下字號保持固定 */
@media (max-width: 320px) {
    .service-title {
        font-size: 16px !important;
    }
    
    .service-text {
        font-size: 14px !important;
    }
    
    .contact-btn {
        font-size: 16px !important;
    }
    
    .modal-header h3 {
        font-size: 16px !important;
    }
    
    .form-group label {
        font-size: 14px !important;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 14px !important;
    }
    
    .submit-btn {
        font-size: 16px !important;
    }
    
    .service-image::before {
        font-size: 14px !important;
    }
}

/* 觸摸反饋 */
.contact-btn,
.close-btn,
.submit-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contact-btn:active,
.close-btn:active,
.submit-btn:active {
    transform: scale(0.98);
}

/* 滾動優化 */
.service-content {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* 固定底部按鈕的陰影效果 */
.fixed-bottom-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
    pointer-events: none;
}

/* 立即預約按鈕區域 - 黑白金設計風格 */
.booking-section {
    margin-top: 80px;
    text-align: center;
}

.booking-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* .booking-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    z-index: 2;
} */

.booking-content > * {
    position: relative;
    z-index: 3;
}

.booking-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 12px;
    font-weight: 400;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: #000000;
    padding: 14px 46px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 207, 112, 0.3);
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.booking-btn:hover::before {
    left: 100%;
}

.booking-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 207, 112, 0.5);
    border-color: var(--gold-dark);
}

.booking-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 207, 112, 0.4);
}

.btn-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000000;
}

.btn-icon {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    color: #000000;
}

.booking-btn:hover .btn-icon {
    transform: translateX(5px) scale(1.1);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .booking-section {
        margin-top: 60px;
    }
    
    .booking-content {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .booking-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .booking-content {
        padding: 30px 15px;
        margin: 0 15px;
    }
    
    .booking-title {
        font-size: 1.8rem;
    }
    
    .booking-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .booking-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* FAQ 常見問題區域 */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: #f0f2f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon path {
    fill: currentColor;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.faq-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.faq-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.faq-image:hover .faq-img {
    transform: scale(1.05);
}

/* FAQ 響應式設計 */
@media (max-width: 1024px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-content {
        gap: 40px;
    }
    
    .faq-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .faq-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 16px 20px;
        font-size: 13px;
    }
    
    .faq-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-content {
        gap: 24px;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 16px 14px 16px;
        font-size: 12px;
    }
    
    .faq-img {
        height: 250px;
    }
}
