/* Anadolu SMS - Hakkımızda Sayfası Özel CSS */

/* Ek Hizmetler Bölümü */
.ek-hizmetler-bg {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.ek-hizmetler-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #06039475 0%, rgba(41, 26, 85, 0) 100%);
    z-index: 1;
}

.ek-hizmetler-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.ek-hizmetler-bg .container {
    position: relative;
    z-index: 2;
}

.ek-hizmetler-bg .sub-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.ek-hizmetler-bg .main-title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 50px;
}

/* Hizmet Kartları */
.hizmet-kart {
background: #0000009c;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hizmet-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hizmet-icon {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hizmet-kart h4 {
    color: #ffffff78;
    margin-bottom: 15px;
    font-weight: 600;
}

.hizmet-kart p {
    color: #fff3f3;
    line-height: 1.6;
    margin: 0;
}

/* İstatistikler Bölümü */
.istatistikler-bg {
    background: #f8f9fa;
    padding: 80px 0;
}

.istatistik-item {
    padding: 30px;
    text-align: center;
}

.istatistik-sayi {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
    line-height: 1;
}

.istatistik-label {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

/* Video Fallback */
.ek-hizmetler-bg:not(:has(video)) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Video Yükleme Durumu */
.ek-hizmetler-bg video {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ek-hizmetler-bg video.loaded {
    opacity: 1;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .ek-hizmetler-bg {
        padding: 60px 0;
    }
    
    .ek-hizmetler-bg video {
        display: none; /* Mobilde video gizle, performans için */
    }
    
    .ek-hizmetler-bg::before {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    }
    
    .ek-hizmetler-bg .main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .hizmet-kart {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .hizmet-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .istatistikler-bg {
        padding: 60px 0;
    }
    
    .istatistik-sayi {
        font-size: 36px;
    }
    
    .istatistik-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .ek-hizmetler-bg .main-title {
        font-size: 24px;
    }
    
    .hizmet-kart {
        padding: 20px;
    }
    
    .hizmet-icon {
        font-size: 36px;
    }
    
    .istatistik-sayi {
        font-size: 32px;
    }
}

/* SEO İçerik Bölümü */
.seo-icerik-bg {
    background: #f8f9fa;
    padding: 60px 0;
}

.seo-icerik h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

.seo-icerik h3 {
    color: #1a36c0;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.seo-icerik p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-icerik ul {
    color: #000000;
    line-height: 1.8;
    padding-left: 20px;
}

.seo-icerik li {
    margin-bottom: 8px;
}

/* Responsive SEO İçerik */
@media (max-width: 768px) {
    .seo-icerik-bg {
        padding: 40px 0;
    }
    
    .seo-icerik h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .seo-icerik h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .seo-icerik h2 {
        font-size: 22px;
    }
    
    .seo-icerik h3 {
        font-size: 18px;
    }
}
