/* Avukat Profil Sayfası Stilleri */

.team-profile {
    background-color: #f8f9fa;
}

.lawyer-profile-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lawyer-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.profile-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.profile-content {
    padding-left: 30px;
}

.profile-section {
    margin-bottom: 30px;
}

.profile-section:last-child {
    margin-bottom: 0;
}

.profile-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c19d5f;
    display: inline-block;
}

.profile-info {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.8;
}

.profile-info p {
    margin-bottom: 8px;
    color: #5a5a5a;
}

.education-item {
    display: flex;
    margin-bottom: 12px;
    line-height: 1.6;
}

.education-label {
    font-weight: 600;
    color: #2c2c2c;
    min-width: 180px;
    flex-shrink: 0;
}

.education-value {
    color: #5a5a5a;
    flex: 1;
}

.publications-list {
    list-style-position: inside;
    padding-left: 0;
    margin: 0;
}

.publications-list li {
    margin-bottom: 12px;
    color: #5a5a5a;
    line-height: 1.6;
    padding-left: 10px;
}

.publications-list li:last-child {
    margin-bottom: 0;
}

.profile-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #c19d5f, transparent);
    margin: 60px auto;
    width: 80%;
}

/* Responsive Design */
@media (max-width: 991px) {
    .profile-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .lawyer-profile-card {
        padding: 30px 20px;
    }

    .profile-section-title {
        font-size: 16px;
    }

    .education-label {
        min-width: 160px;
        font-size: 14px;
    }

    .education-value {
        font-size: 14px;
    }

    .publications-list {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .lawyer-profile-card {
        padding: 20px 15px;
        margin-bottom: 40px;
    }

    .profile-section {
        margin-bottom: 25px;
    }

    .profile-section-title {
        font-size: 15px;
    }

    .education-item {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .education-label {
        margin-bottom: 5px;
    }

    .profile-divider {
        margin: 40px auto;
        width: 90%;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lawyer-profile-card {
    animation: fadeInUp 0.6s ease-out;
}

.lawyer-profile-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Sosyal Medya Linkleri */
.social-media-links {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.social-media-links h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #5a5a5a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
    color: #ffffff;
}

.social-icon.twitter:hover,
.social-icon.x:hover {
    background-color: #000000;
    color: #ffffff;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
    color: #ffffff;
}

/* Detay Sayfası Stilleri */
.lawyer-detail-page {
    background-color: #f8f9fa;
}

.lawyer-detail-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    margin-bottom: 60px;
}

.lawyer-detail-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.lawyer-detail-header .subtitle {
    font-size: 18px;
    color: #c19d5f;
    font-weight: 500;
}

.lawyer-detail-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 50px;
    margin-bottom: 40px;
}

.lawyer-detail-content .profile-section {
    margin-bottom: 40px;
}

.lawyer-detail-content .profile-section:last-child {
    margin-bottom: 0;
}

.lawyer-bio {
    font-size: 16px;
    line-height: 1.9;
    color: #4a4a4a;
    text-align: justify;
}

.lawyer-bio p {
    margin-bottom: 20px;
}

.lawyer-bio p:last-child {
    margin-bottom: 0;
}

.back-to-team {
    margin-top: 40px;
    text-align: center;
}

.back-to-team a {
    display: inline-flex;
    align-items: center;
    color: #c19d5f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-team a:hover {
    color: #1a1a1a;
}

.back-to-team a i {
    margin-right: 8px;
}

@media (max-width: 767px) {
    .lawyer-detail-header h1 {
        font-size: 32px;
    }

    .lawyer-detail-content {
        padding: 30px 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Sayfa Altı Sosyal Medya Bölümü */
.social-media-section {
    background-color: #f8f9fa;
}

.social-media-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.social-media-section p {
    color: #5a5a5a;
    font-size: 16px;
    line-height: 1.6;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.social-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #5a5a5a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon-large:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-icon-large.linkedin:hover {
    background-color: #0077b5;
    color: #ffffff;
}

.social-icon-large.x:hover {
    background-color: #000000;
    color: #ffffff;
}

.social-icon-large.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-icon-large.youtube:hover {
    background-color: #ff0000;
    color: #ffffff;
}

@media (max-width: 767px) {
    .social-media-section h3 {
        font-size: 24px;
    }

    .social-media-section p {
        font-size: 14px;
    }

    .social-icon-large {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .social-icons-large {
        gap: 15px;
    }
}

