/* Profil Sayfası Stilleri */
.profile-image {
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

/* Eğitim Bilgileri */
.education-item {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.education-item:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

/* Sertifikalar */
.certificate-item {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.certificate-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.25rem;
}

/* Ofis Görselleri */
.office-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.office-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.office-image-item:hover img {
    transform: scale(1.1);
}

.office-image-item .image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    margin: 0;
}

/* Yorumlar */
.review-item {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.review-item:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.review-rating {
    color: #ffc107;
}

/* İletişim Bilgileri */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info-item i {
    width: 25px;
    margin-right: 0.5rem;
}

/* Pro Üyelik Badge */
.pro-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ffc107;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .profile-image {
        width: 150px !important;
        height: 150px !important;
    }
    
    .certificate-item img,
    .office-image-item img {
        height: 200px;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
} 