/* ========================================
   MODERN PERSONEL LİSTE TASARIMI
   Temiz, Profesyonel, Güvenilir
======================================== */

:root {
    --primary: #ff6b35;
    --primary-dark: #d94a15;
    --secondary: #2d3436;
    --accent: #F8E16C;
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --border-color: #E5E7EB;

    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Layout */
.page-wrapper {
    background-color: var(--bg-light);
    min-height: 60vh;
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-light);
}

.breadcrumb-nav a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-nav .active {
    color: var(--secondary);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background-color: var(--white);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Main Content */
.main-section {
    padding: 3rem 0 5rem;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

/* Section Header */
.section-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.expert-count {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Search & Filter */
#searchInput {
    position: relative;
    padding-left: 2.5rem !important;
}

#searchInput::placeholder {
    color: var(--text-light);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.team-card-image {
    position: relative;
    padding-top: 133.33%;
    /* 3:4 Portrait Ratio */
    background-color: var(--bg-light);
    overflow: hidden;
}

.team-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242, 92, 36, 0.85), rgba(255, 127, 80, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.team-card:hover .team-card-hover {
    opacity: 1;
}

.team-card-content {
    padding: 1rem;
    text-align: center;
}

.team-member-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.35rem;
    line-height: 1.25;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-specialty {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.team-member-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.team-member-location i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* ========================================
   MOBİL SIDEBAR İÇERİĞİ
======================================== */
.mobile-sidebar-content {
    display: none;
    background: var(--bg-light);
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.mobile-info-cards {
    display: grid;
    gap: 1.5rem;
}

.mobile-info-cards .info-card {
    margin: 0;
}

.mobile-info-cards .info-list a {
    color: var(--text-medium);
    text-decoration: none;
}

@media (max-width: 992px) {
    .mobile-sidebar-content {
        display: block;
    }

    /* Desktop sidebar'daki info-card'ları gizle */
    .sidebar .info-card {
        display: none;
    }
}

/* ========================================
   YENİ CTA KARTLARI
======================================== */

/* Ana CTA - Kişisel */
.cta-card-primary {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

.cta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-person-info {
    display: flex;
    flex-direction: column;
}

.cta-person-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
}

.cta-person-role {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.cta-message {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-message i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: block;
}

.cta-message p {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    min-height: 3rem;
}

.cta-message p::after {
    content: none;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.cta-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 92, 36, 0.35);
    margin-bottom: 1rem;
}

.cta-phone-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 92, 36, 0.45);
}

.cta-phone-btn i {
    font-size: 1.5rem;
}

.cta-phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.cta-phone-label {
    font-size: 0.8125rem;
    opacity: 0.95;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-medium);
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.cta-trust i {
    color: #10B981;
    font-size: 0.75rem;
}

/* İkincil CTA - WhatsApp + Sizi Arayalım */
.cta-card-secondary {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    /* Boşluk daha da artırıldı */
}

.cta-alt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.cta-alt-btn:last-child {
    margin-bottom: 0;
}

.cta-whatsapp {
    background: #25D366;
    color: var(--white);
}

.cta-whatsapp:hover {
    background: #128C7E;
}

.cta-callback {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cta-callback:hover {
    background: var(--border-color);
}

.cta-alt-btn i {
    font-size: 1.25rem;
}

/* Geri Arama Formu */
.callback-form {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.callback-form .form-input {
    width: 100%;
    padding: 0.625rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.callback-form .btn-submit {
    width: 100%;
    padding: 0.625rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 2rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.card-header {
    background-color: var(--white);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.card-body {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: all 0.2s;
    background-color: var(--bg-light);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(242, 92, 36, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider span {
    padding: 0 0.75rem;
}

.btn-whatsapp {
    width: 100%;
    padding: 0.875rem;
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-medium);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trust-badge i {
    color: #10B981;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.info-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list i {
    color: var(--primary);
    font-size: 0.875rem;
}

.content-bottom {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 3rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius);
    grid-column: 1 / -1;
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-state-title {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.empty-state-text {
    color: var(--text-medium);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 0.9rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .sidebar .related-services-card {
        display: none;
    }

    .mobile-related-services {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-detail-page-wrapper {
        padding-top: 42px !important;
    }

    .service-detail-page-wrapper .section-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .service-detail-page-wrapper .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .service-detail-page-wrapper .team-card {
        border-radius: 10px;
    }

    .service-detail-page-wrapper .team-card:hover {
        transform: none;
    }

    .service-detail-page-wrapper .team-card-image {
        padding-top: 130%;
    }

    .service-detail-page-wrapper .team-card-content {
        padding: 0.75rem 0.5rem;
    }

    .service-detail-page-wrapper .team-member-name {
        font-size: 0.9rem;
        line-height: 1.2;
        min-height: 2.15rem;
        margin-bottom: 0.3rem;
    }

    .service-detail-page-wrapper .team-member-specialty {
        font-size: 0.75rem;
        line-height: 1.25;
        margin-bottom: 0.35rem;
    }

    .service-detail-page-wrapper .team-member-specialty + .team-member-specialty {
        display: none;
    }

    .service-detail-page-wrapper .team-member-location {
        font-size: 0.72rem;
        gap: 0.25rem;
        margin-top: 0.35rem;
    }

    .service-detail-page-wrapper .team-member-location i {
        font-size: 0.65rem;
    }

    .service-detail-page-wrapper .sidebar {
        width: 100%;
    }

    .service-detail-page-wrapper .cta-card-secondary {
        margin-bottom: 0;
    }

    .mobile-sidebar-content {
        margin-top: 0;
        padding-bottom: 6rem;
    }

    .mobile-related-services {
        order: 10;
    }
}

/* ========================================
   SERVICE-DETAIL.PHP UYUMLULUK STILLERI
======================================== */

.breadcrumb-wrapper {
    background: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.breadcrumb-wrapper .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.breadcrumb-wrapper .breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.breadcrumb-wrapper .breadcrumb-item a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
    color: var(--primary) !important;
}

.breadcrumb-wrapper .breadcrumb-item.active {
    color: var(--text-medium);
    font-weight: 400;
}

.breadcrumb-wrapper .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    padding: 0 12px !important;
    color: #ccc !important;
    float: none;
}

/* Service Detail Page Layout */
.service-detail-content {
    background: var(--bg-light);
}

/* Page Header (Service Detail) */
.page-header {
    background: linear-gradient(135deg, #5a5a5a 0%, #7a7a7a 100%);
    color: white;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 24px;
    }
    
    .page-header h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    .breadcrumb-wrapper {
        padding: 8px 0;
    }
    
    .breadcrumb-wrapper .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    .breadcrumb-wrapper .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 8px !important;
    }
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: var(--primary);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Content Top Box */
.content-top-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Content Bottom Box */
.content-bottom-box {
    background: #fcfcfc;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
    box-shadow: inset 0 0 0 1px var(--border-color);
    line-height: 1.8;
    color: var(--text-medium);
    border-left: 4px solid var(--primary);
}

.content-bottom-text {
    font-size: 0.95rem;
}

.content-bottom-text h2,
.content-bottom-text h3 {
    color: var(--text-dark);
    line-height: 1.3;
}

.content-bottom-text h2 {
    font-size: 1.6rem;
    margin: 2rem 0 0.75rem;
}

.content-bottom-text h2:first-child {
    margin-top: 0;
}

.content-bottom-text h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.625rem;
}

.content-bottom-text p {
    margin: 0 0 1rem;
}

.content-bottom-text ul {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}

.content-bottom-text li + li {
    margin-top: 0.4rem;
}

/* Related Services Sidebar */
.related-services-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.mobile-related-services {
    display: none;
}

@media (max-width: 992px) {
    .mobile-related-services {
        display: block;
    }
}

.related-services-header {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
    color: white;
    padding: 20px 24px;
}

.related-services-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.related-service-link {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
}

.related-service-link:hover {
    background: #fff5f2;
    padding-left: 28px;
}

.related-service-link i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 0.9rem;
}

/* Bootstrap Accordion Override for FAQ */
.accordion-button {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: white;
    border: none;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========================================
   ÇOKLU UZMANLIK ROZETLERİ
   ======================================== */

.team-member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.specialty-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.specialty-badge.current {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.specialty-badge.link {
    background: var(--bg-light);
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

.specialty-badge.link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .team-member-specialties {
        gap: 0.25rem;
    }
    
    .specialty-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }
}
