/* Video Banner Stilleri */
.video-banner {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.banner-text {
    width: 100%;
    padding: 0 15px;
}

/* Servis Kartları */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "•";
    color: var(--bs-primary);
    position: absolute;
    left: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .video-banner {
        height: auto;
        aspect-ratio: 16/9;
        min-height: auto;
    }
    
    .banner-text h1 {
        font-size: 2.5rem !important;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px !important;
    }
}

/* Animasyonlar */
.animate__animated {
    animation-duration: 1s;
}