.tf-slideshow .slider-wrap {
    background-image: var(--coach-hero-desktop);
    padding: 60px 0;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1024px) {
    .tf-slideshow .slider-wrap {
        background-image: var(--coach-hero-mobile);
    }
}

.section-video-consult {
    padding-top: 60px;
    padding-bottom: 60px;
}

.video-consult-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-width: 400px;
    margin: 0 auto;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/vid.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.video-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.video-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.video-placeholder-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.play-button-text {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.video-consult-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.video-consult-cta {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e87c41;
}

@media (max-width: 767px) {
    .video-consult-content {
        text-align: center;
    }

    .video-consult-cta {
        padding: 20px;
        border-left: none;
        border-top: 4px solid #e87c41;
    }

    .d-flex.flex-wrap {
        justify-content: center;
    }

    .video-consult-wrapper {
        max-width: 100%;
    }
}
