/* ============================================
   Services Page Specific Styles
   ============================================ */

/* Services Detail Section */
.services-detail {
    min-height: 100vh;
    background-color: #000000;
    color: white;
    padding: 150px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



/* Services List Container */
.services-list-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: clamp(50px, 5vw, 100px);
    /* Remove gap for WeChat compatibility */
}

/* Service Item */
.service-item {
    font-family: 'Alibaba PuHuiTi', sans-serif;
    font-size: clamp(36px, 4vw + 1rem, 60px);
    line-height: 1.3;
    text-align: center;
    color: white;
    margin: 0 0 50px 0;
    /* Use margin instead of gap */
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: 0px red solid;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item:hover {
    color: var(--primary-orange);
    transform: scale(1.05);
}

.service-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
}

.service-item a:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-orange);
    text-underline-offset: 14px;
    text-decoration-thickness: 2px;
    /* Optional: add some distance */
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media (max-width: 768px) {
    .services-detail {
        padding: 120px 20px 60px;
    }



    .services-list-container {
        gap: 0;
        margin-top: 0;
        /* Remove gap for WeChat compatibility */
    }

    .service-item {
        font-size: clamp(24px, 6vw, 36px);
        line-height: 1.4;
        margin-bottom: 40px;
        /* Use margin instead of gap for WeChat browser */
    }

    .service-item:last-child {
        margin-bottom: 0;
        /* Remove margin from last item */
    }
}