/* 会议服务专属样式 - 去除公共样式后的完整版 */

/* 页面标题与主轮播图 */
.page-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 60px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.page-header-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    color: white;
    background: rgba(0,0,0,0.6);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* 主轮播图样式 */
.header-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.header-slide.active {
    opacity: 1;
}

.header-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.header-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* 服务卡片网格布局 */
.services-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* 服务卡片通用样式 */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h2 {
    font-size: 1.5rem;
    color: #0a2463;
    margin-bottom: 15px;
}

.service-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.consult-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.consult-btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff6b6b);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* 服务卡片轮播专用样式 */
.service-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.service-slide.active {
    opacity: 1;
}

.service-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.service-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* 场地服务特殊样式 */
.venue-service-card .service-img {
    height: 250px;
}

.venue-type-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 36, 99, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 2;
}

/* 联系人卡片特殊样式 */
.contact-card {
    background: linear-gradient(135deg, #0a2463, #1e88e5);
    color: white;
}

.contact-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-content h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    font-size: 1.8rem;
    color: #ff6b6b;
    min-width: 30px;
    text-align: center;
}

.wechat-qrcode {
    text-align: center;
    margin-top: auto;
    padding-top: 20px;
}

.wechat-qrcode img {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    border: 3px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: white;
    padding: 5px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .page-header {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .venue-service-card .service-img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 400px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-img {
        height: 180px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .venue-type-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}