/* Video thumbnail ve lazy loading stili */
.process-video-section,
.process-video-section-mobile {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #92a467;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #7a8c54;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-overlay.active {
    display: flex;
}

.video-overlay-inner {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

.video-player {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

/* Video Modal Stilleri */
.custom-video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    margin: auto;
    width: 90%;
    max-width: 1000px;
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

#popupVideo {
    width: 100%;
    display: block;
}

@media (max-width: 767px) {
    .process-video-section,
    .process-video-section-mobile {
        padding: 40px 0;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
} 