.budi-kontakt-tab__wrapper {
    position: relative;
    overflow: hidden;
}

/* Background layers container */
.budi-kontakt-tab__backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Individual background layers */
.budi-kontakt-tab__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.budi-kontakt-tab__background.active {
    opacity: 1;
    z-index: 2;
}

.budi-kontakt-tab__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.budi-kontakt-tab__wrapper>div:not(.budi-kontakt-tab__backgrounds) {
    position: relative;
    z-index: 4;
}

.budi-kontakt-tab__title {
    margin-bottom: 22px;
    color: var(--color-sub);
}

.budi-kontakt-tab__description {
    margin-bottom: 30px;
    max-width: 444px;
    color: var(--color-sub);
}

/* Custom tab buttons styling */
.budi-kontakt-tab__buttons {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.budi-kontakt-tab__item {
    margin-bottom: 15px;
}

.budi-kontakt-tab__content-container {
    background: #191A19;
    border: 2px solid #F8F6EB;
    padding: 40px 55px;
    position: relative;
    min-height: 700px;
}

.budi-kontakt-tab__content-container .row {
    margin: 0;
}

.budi-kontakt-tab__content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.budi-kontakt-tab__content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Ensure the tab content inner has proper positioning */
.budi-kontakt-tab__content-inner {
    position: relative;
    z-index: 5;
}

/* Tab content title styling */
.budi-kontakt-tab__content-title {
    margin-bottom: 40px;
    color: #F8F6EB;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}


/* Quando booking widget */
#quandoo-booking-widget iframe {
    width: 100% !important;
}

/* WPCF7 */
.budi-kontakt-tab__wrapper div.wpcf7 .wpcf7-list-item label {
    display: flex;
    gap: 13px;
    align-items: center;
    font-size: 12px;
    line-height: 1.3em;
}

@media screen and (max-width: 992px) {
    .budi-kontakt-tab__content-container {
        padding: 30px;
    }
}

@media screen and (max-width: 767px) {
    .budi-kontakt-tab__content-container {
        padding-inline: 18px;
    }
}