/* 预约组件样式 */
.reservation-component {
    background: linear-gradient(135deg, #1677FF 0%, #2D8EFF 50%, #4CA6FF 100%);
    padding: 60px 20px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    position: relative;
    overflow: hidden;
}

/* 可选：添加微妙的背景图案 */
.reservation-component::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reservation-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.reservation-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.reservation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.reservation-btn {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    background: transparent;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.reservation-btn:hover::before {
    transform: scaleX(1);
}

.demo-btn {
    color: #fff;
}

.demo-btn:hover {
    color: #1677FF;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.pdf-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pdf-btn::before {
    background: rgba(255, 255, 255, 0.9);
}

.pdf-btn:hover {
    color: #1677FF;
    border-color: #fff;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.reservation-guide {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.reservation-guide::before {
    content: '📖';
    margin-right: 8px;
    font-size: 1rem;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reservation-title {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.reservation-subtitle {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.reservation-buttons {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.reservation-guide {
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .reservation-component {
        padding: 40px 20px;
    }
    
    .reservation-title {
        font-size: 1.75rem;
    }
    
    .reservation-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .reservation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reservation-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .reservation-title {
        font-size: 1.5rem;
    }
    
    .reservation-subtitle {
        font-size: 0.95rem;
    }
    
    .reservation-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}