.kapcsolat-section {
    background-color: #F5F0E8;
    padding: 80px 20px;
    text-align: center;
}

.kapcsolat-focim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 51px;
    color: #0A4B55;
    margin-bottom: 80px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.kapcsolat-focim span {
    color: #996C2D
}

/* Lépések sor */
.kapcsolat-steps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
    flex-wrap: nowrap;
}

.kapcsolat-step {
    flex: 1 1 0;
    max-width: 280px;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.kapcsolat-step p {
    color: #0A4B55;
    font-size: 16px;
    line-height: 23px;
}

/* Számkör */
.step-szam {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #D7AF96;
    background-color: #F5F0E8;
    color: #D7AF96;
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    line-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-cim {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0A4B55;
    line-height: 24px;
    margin-bottom: 16px;
    min-height: 60px;
}

.step-hr {
    width: 60px;
    height: 1px;
    background-color: #D7AF96;
    border: none;
    margin: 0 auto 16px;
    opacity: 1;
}

.step-szoveg {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #0A4B55;
    opacity: 0.85;
}

@media (max-width: 992px) {
    .kapcsolat-focim {
        font-size: 28px;
    }

    .kapcsolat-step {
        max-width: 100%;
        width: 100%;
    }

    .step-cim {
        min-height: unset;
    }
}

/* Cím animáció */
.kapcsolat-title-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.kapcsolat-title-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lépés dobozok - balról jobbra */
.kapcsolat-step-anim {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease var(--step-delay, 0s), transform 0.8s cubic-bezier(0.34, 1.3, 0.64, 1) var(--step-delay, 0s);
}

.kapcsolat-step-anim.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Kapcsolat Carousel */
#kapcsolatCarousel .carousel-indicators {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 40px 0 0 0;
    padding: 0;
    z-index: 2;
}

#kapcsolatCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0A4B55;
}

#kapcsolatCarousel .carousel-indicators [data-bs-target].active {
    background-color: #D7AF96 !important
}

#kapcsolatCarousel .carousel-indicators .active {
    opacity: 1;
}

#kapcsolatCarousel .kapcsolat-step {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#kapcsolatCarousel .step-szoveg {
    flex-grow: 1;
}

#kapcsolatCarousel .carousel-item {
    min-height: 360px;
}