/* Help section */
.help-section {
    padding: 80px 0;
    background-color: var(--help-bg);
    text-align: center;
    color: var(--text-color);
}

.help-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-color);
    line-height: 1.2;
}

.help-section p {
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Nowy karuzelowy układ usług */
.services-carousel-container {
    position: relative;
    max-width: 90%;
    margin: 0 auto 40px;
}

.services-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.services-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 5px;
    -ms-overflow-style: none;
    /* Internet Explorer i Edge */
    scrollbar-width: none;
    /* Firefox */
}

.services-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari i Opera */
}

.help-item {
    min-width: 220px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    scroll-snap-align: center;
            pointer-events: none;
}

.help-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: -1;
    transform: scale(0.9);
    opacity: 0;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.help-item:hover::before {
    transform: scale(1);
    opacity: 1;
}

.help-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.help-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: var(--transition);
    filter: none;
}

.help-item:hover .help-icon {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.help-item p {
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    transition: var(--transition);
    margin-bottom: 5px;
    color: var(--text-color);
    font-family: 'Cinzel', serif !important;
    font-weight: 500;
}

.help-item:hover h3 {
    color: var(--primary-color);
}

/* Nawigacja karuzeli */
.services-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.services-prev,
.services-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.services-prev:hover,
.services-next:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.services-dots {
    display: flex;
    gap: 8px;
}

.services-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.services-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Wskazówka przewijania */
.services-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 14px;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.services-scroll-hint i {
    animation: scrollHint 1.5s infinite;
}

@keyframes scrollHint {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.help-action {
    margin-top: 40px;
}

.help-action .oval-button {
    background-color: rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--text-color);
}

.help-action .oval-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsywność */
@media (max-width: 992px) {
    .services-carousel-container {
        max-width: 95%;
    }

    .help-item {
        min-width: 200px;
    }

    .help-icon {
        width: 60px;
        height: 60px;
    }

    .help-icon img {
        width: 30px;
        height: 30px;
    }

    .help-item h3 {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .services-carousel-container {
        max-width: 100%;
    }

    .help-item {
        min-width: 180px;
    }

    .services-carousel-nav {
        gap: 15px;
    }

    .services-prev,
    .services-next {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .help-item {
        min-width: 160px;
        padding: 15px;
    }

    .help-icon {
        width: 50px;
        height: 50px;
    }

    .help-icon img {
        width: 25px;
        height: 25px;
    }

    .help-item h3 {
        font-size: 11px;
    }

    .services-scroll-hint {
        font-size: 12px;
    }

    .help-section h2 {
        font-size: 38px;
    }
}