/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
}

/* 导航栏样式 */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(180deg);
}

/* 移动端响应式样式 */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }
    .nav-links a:nth-child(6) { transition-delay: 0.6s; }
}

/* 轮播图样式 */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

/* 服务项目样式 */
.services {
    padding: 5rem 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2533;
    font-size: 2.8rem;
    font-weight: 600;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #3498db;
    transition: width 0.3s ease;
}

.services h2:hover::after {
    width: 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover i {
    transform: scale(1.2) rotate(360deg);
    color: #2980b9;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
    transform: translateY(-5px);
    opacity: 0.8;
}

.service-card:hover p {
    transform: translateY(-5px);
    opacity: 1;
}

@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-10px) rotateX(0deg);
    }
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    transform: translateY(-5px);
}

/* .service-card:hover {
    transform: translateY(-5px);
} */

.service-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* 客户反馈样式 */
.testimonials {
    padding: 5rem 10%;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-weight: bold;
    color: #3498db;
}

/* 联系我们样式 */
.contact {
    padding: 5rem 10%;
    background: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #3498db;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #2980b9;
}

/* 页脚样式 */
footer {
    text-align: center;
    padding: 2rem;
    background: #2c3e50;
    color: white;
}

/* 响应式设计 */
/* 移动端导航按钮 */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0.5rem 0;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .services-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .contact-info {
        padding: 2rem;
    }
    
    .contact-container-new {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .contact-card {
        width: 100%;
        max-width: 300px;
    }


    .section-header h2 {
        font-size: 2rem;
    }

    .showcase-item {
        flex-direction: column;
    }

    .showcase-image,
    .showcase-content {
        width: 100%;
    }
}
/* 在现有样式基础上添加以下内容 */

.section-desc {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* 服务卡片悬停效果增强 */


/* 客户反馈样式 */
.testimonials {
    padding: 5rem 10%;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-weight: bold;
    color: #3498db;
}

/* 联系我们样式 */
.contact {
    padding: 6rem 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2.5rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3498db;
}

/* 新的联系我们样式 */
.contact-container-new {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2.5rem;
    text-align: center;
    width: 300px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52,152,219,0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
    transform: scale(1.05);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-info {
    padding: 3rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.info-item i {
    font-size: 1.8rem;
    color: white;
}

.info-item p {
    color: white;
    font-size: 1.1rem;
}

.contact-action {
    margin-top: 3rem;
}

.email-btn {
    background: white;
    color: #3498db;
    padding: 1.2rem 2.5rem;
}

.email-btn:hover {
    background: #f8f9fa;
}

.contact-note {
    color: rgba(255,255,255,0.8);
}

.map-container {
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .map-container {
        min-height: 350px;
    }
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #2980b9;
}

.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(52,152,219,0.3);
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(52,152,219,0.4);
    background: linear-gradient(135deg, #2980b9 0%, #2573a7 100%);
}

.contact-form button:hover::before {
    transform: translateX(100%);
}

.contact-form button i {
    font-size: 1.3rem;
    background: rgba(255,255,255,0.15);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.contact-form button:hover i {
    background: rgba(255,255,255,0.25);
    transform: rotate(360deg) scale(1.1);
}

/* 页脚样式 */
footer {
    text-align: center;
    padding: 2rem;
    background: #2c3e50;
    color: white;
}

/* 响应式设计 */
/* 移动端导航按钮 */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0.5rem 0;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .services-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .contact-info {
        padding: 2rem;
    }
    
    .contact-container-new {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .contact-card {
        width: 100%;
        max-width: 300px;
    }


    .section-header h2 {
        font-size: 2rem;
    }

    .showcase-item {
        flex-direction: column;
    }

    .showcase-image,
    .showcase-content {
        width: 100%;
    }
}
/* 特色板块样式 */
.features {
    padding: 5rem 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: auto;
    padding: 1rem 0;
    justify-content: center;
}

.feature-card {
    flex: 0 0 300px;
    min-width: 300px;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* 展示说明部分样式 */
.showcase {
    padding: 6rem 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(52,152,219,0.3), transparent);
}

.showcase-content {
    padding: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.5rem;
    background: rgba(52,152,219,0.08);
    color: #3498db;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.tag i {
    font-size: 1rem;
    color: #3498db;
}

.tag:hover {
    background: rgba(52,152,219,0.15);
    transform: translateX(5px);
}

.showcase-content h3 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.showcase-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #3498db, transparent);
}

.showcase-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    margin: 2rem 0;
    padding-left: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    border-bottom-color: #3498db;
}

.feature-list i {
    color: #3498db;
    font-size: 1.2rem;
    background: rgba(52,152,219,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-list li:hover i {
    background: #3498db;
    color: white;
    transform: rotate(360deg);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

.learn-more:hover {
    background: #2980b9;
    gap: 1.2rem;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52,152,219,0.4);
}

@media (max-width: 768px) {
    .showcase-content h3 {
        font-size: 2rem;
    }
    
    .showcase-content p {
        font-size: 1rem;
    }
    
    .feature-list li {
        padding: 0.8rem 0;
    }
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    background: rgba(52,152,219,0.08);
    color: #3498db;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(52,152,219,0.1);
}

.section-header h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 3rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-2deg);
    transition: all 0.5s ease;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.showcase-image:hover {
    transform: perspective(1000px) rotateY(0);
}

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

.image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255,255,255,0.95);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(5px);
}

.badge-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

@media (max-width: 968px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-image img {
        height: 400px;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .showcase-container {
        gap: 4rem;
    }
}
/* Mental Health Section Styles */
.mental-health {
    padding: 5rem 10%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.mental-health-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mental-health-content {
    padding-right: 2rem;
}

.mental-health-content .content-header {
    margin-bottom: 2rem;
}

.mental-health-content .tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.mental-health-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.mental-health-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mental-health-content .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.mental-health-content .feature-list li {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.mental-health-content .feature-list li i {
    color: #4caf50;
    margin-right: 0.5rem;
}

.mental-health-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mental-health-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mental-health-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.mental-health-image .image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.9);
    padding: 1rem;
    border-radius: 8px;
}

.mental-health-image .badge-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1976d2;
    margin-right: 1rem;
}

.mental-health-image .badge-text {
    display: flex;
    flex-direction: column;
}

.mental-health-image .badge-text small {
    font-size: 0.8rem;
    color: #666;
}

.mental-health-image .badge-text span {
    font-weight: bold;
    color: #2c3e50;
}

/* Showcase content tag styles */
.showcase-content .tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.showcase-content .tag i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .mental-health-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mental-health-content {
        padding-right: 0;
    }

    .mental-health-image {
        height: 300px;
    }
}

/* 预订部分样式 */
.booking {
    padding: 6rem 10%;
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

.booking .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.booking .section-subtitle {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.booking h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.booking h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fdbb2d, #b21f1f);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.booking h2:hover::after {
    width: 120px;
}

.booking .section-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.booking-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.booking-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.15);
}

.booking-card:hover::before {
    transform: translateX(100%);
}

.booking-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s ease;
}

.booking-card:hover i {
    transform: scale(1.2) rotate(15deg);
}

.booking-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.booking-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
}

.contact-details p {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-details i {
    font-size: 1.2rem;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #1a2a6c;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #fdbb2d;
    color: white;
}

.booking-btn.phone-btn {
    background: #b21f1f;
    color: white;
}

.booking-btn.phone-btn:hover {
    background: #fdbb2d;
}

@media (max-width: 768px) {
    .booking {
        padding: 4rem 5%;
    }
    
    .booking h2 {
        font-size: 2rem;
    }
    
    .booking-card {
        padding: 2rem;
    }
}