/* Yeni Modüller CSS - Foto Galeri, Video Galeri, Referanslar, Müşteri Görüşleri */

/* FOTO GALERİ */
.gallery-area {
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: #fff;
}

/* VİDEO GALERİ */
.video-gallery-area {
    position: relative;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumb {
    position: relative;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-popup:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-popup i {
    font-size: 24px;
    color: #333;
    margin-left: 3px;
}

.video-content {
    padding: 15px;
    background: #fff;
}

.video-content h4 {
    font-size: 16px;
    margin: 0;
    color: #333;
}

/* REFERANSLAR */
.references-area {
    position: relative;
}

.reference-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.reference-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
}

/* MÜŞTERİ GÖRÜŞLERİ */
.testimonials-area {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.testimonials-area .section-title h2,
.testimonials-area .section-title p {
    color: #fff;
}

.testimonial-slider {
    position: relative;
}

.testimonial-item {
    padding: 40px;
}

.testimonial-content {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: #fff;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial-author span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-item img,
    .video-thumb img {
        height: 200px;
    }
    
    .reference-item {
        padding: 15px;
    }
    
    .reference-item img {
        max-height: 60px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .gallery-item img,
    .video-thumb img {
        height: 180px;
    }
    
    .video-popup {
        width: 50px;
        height: 50px;
    }
    
    .video-popup i {
        font-size: 20px;
    }
}
