/* Services Section */
.services-section {
    padding: 100px 40px;
    background: black;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.services-section .section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-section .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #888;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-section .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.services-section .section-subtitle {
    color: #888;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.carousel-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    background: black;
    border-radius: 16px;
    padding: 20px;
}

.carousel-track {
    display: flex;
    gap: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    min-width: 260px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(103, 126, 234, 0.2);
}

.service-number {
    display: inline-flex;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(103, 126, 234, 0.4);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 14px;
    color: #b4b4b4;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive for Services */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 20px;
    }

    .services-section .section-title {
        font-size: 32px;
    }

    .carousel-container {
        padding: 15px;
    }

    .service-card {
        min-width: 220px;
        padding: 20px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-features li {
        font-size: 13px;
    }

    .carousel-track {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 12px;
        border-radius: 12px;
    }

    .service-card {
        min-width: 180px;
        padding: 16px;
    }

    .service-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .service-features li {
        font-size: 12px;
        padding: 5px 0;
    }

    .service-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
        margin-bottom: 12px;
    }

    .carousel-track {
        gap: 12px;
    }
}