/* Müşteri Fotoğrafları Bölümü */
.customer-photos-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.customer-photos-section .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary);
}

.customer-photos-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-center {
    text-align: center;
    margin-top: 30px;
}

.cta-center .btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
}

.cta-center .btn-outline {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.cta-center .btn-outline:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.cta-center .btn i {
    margin-right: 10px;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .customer-photos-section .section-title {
        font-size: 24px;
    }

    .customer-photos-section .section-subtitle {
        font-size: 14px;
    }

    .cta-center .btn {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}