/* ==========================================
   BASİT PROFİL - MİNİMAL TASARIM
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.basit-profil-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
}

/* ==========================================
   HERO BÖLÜMÜ
   ========================================== */

.basit-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.basit-hero-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Avatar */
.basit-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.basit-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.basit-verified {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #1d9bf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #ffffff;
    box-shadow: 0 2px 8px rgba(29, 155, 240, 0.4);
}

.basit-verified svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

/* Bilgiler */
.basit-info {
    flex: 1;
}

.basit-name {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.2;
}

.basit-title {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 16px;
}

.basit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.basit-tag {
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.basit-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}

.basit-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: #475569;
}

.basit-meta-item i {
    color: #667eea;
    font-size: 1rem;
}

.basit-social {
    display: flex;
    gap: 12px;
	margin-top: 20px;
}

.basit-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: all 0.3s;
    text-decoration: none;
}

.basit-social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.basit-social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Aksiyon Butonları */
.basit-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.basit-btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.basit-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.basit-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.basit-btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.basit-btn-secondary:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.basit-btn-secondary.active {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-color: #667eea;
}

.basit-btn-full {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   İÇERİK BÖLÜMÜ
   ========================================== */

.basit-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.basit-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
}

.basit-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.basit-section-title i {
    color: #667eea;
    font-size: 1.375rem;
}

/* Hakkında */
.basit-about {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
}

/* Empty State */
.basit-empty-state {
    text-align: center;
    padding: 48px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.basit-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 2rem;
}

.basit-empty-text {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Timeline */
.basit-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-left: 48px;
}

.basit-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: #e2e8f0;
}

.basit-timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
}

.basit-timeline-icon {
    position: absolute;
    left: -48px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.basit-timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.basit-timeline-org {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
}

.basit-timeline-detail {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 8px;
}

.basit-timeline-date {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Sertifikalar Grid */
.basit-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.basit-cert-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.basit-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #667eea;
}

.basit-cert-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
}

.basit-cert-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.basit-cert-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 8px;
}

.basit-cert-date {
    display: inline-block;
    font-size: 0.8125rem;
    color: #94a3b8;
    background: rgba(102, 126, 234, 0.08);
    padding: 4px 12px;
    border-radius: 12px;
}

.basit-skill-card .basit-cert-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.basit-skill-card:hover {
    border-color: #10b981;
}

/* Diller */
.basit-langs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.basit-lang {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.basit-lang-name {
    font-weight: 600;
    color: #1e293b;
}

.basit-lang-level {
    font-size: 0.875rem;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

/* Yorumlar */
.basit-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.basit-review {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.basit-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.basit-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.basit-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basit-review-avatar i {
    color: #94a3b8;
    font-size: 1.25rem;
}

.basit-review-info {
    flex: 1;
}

.basit-review-info strong {
    display: block;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.basit-review-stars {
    display: flex;
    gap: 2px;
}

.basit-review-date {
    font-size: 0.875rem;
    color: #94a3b8;
}

.basit-review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .basit-profil-container {
        padding: 24px 16px;
    }
    
    .basit-hero {
        padding: 32px 24px;
    }
    
    .basit-hero-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .basit-avatar {
        width: 120px;
        height: 120px;
    }
    
    .basit-verified {
        width: 24px;
        height: 24px;
    }
    
    .basit-verified svg {
        width: 14px;
        height: 14px;
    }
    
    .basit-name {
        font-size: 1.75rem;
    }
    
    .basit-title {
        font-size: 1rem;
    }
    
    .basit-tags,
    .basit-meta {
        justify-content: center;
    }
    
    .basit-social {
        justify-content: center;
    }
    
    .basit-section {
        padding: 24px 20px;
    }
    
    .basit-section-title {
        font-size: 1.25rem;
    }
    
    .basit-timeline {
        padding-left: 40px;
    }
    
    .basit-timeline-icon {
        left: -40px;
        width: 32px;
        height: 32px;
    }
    
    .basit-timeline::before {
        left: 15px;
    }
    
    .basit-certs-grid {
        grid-template-columns: 1fr;
    }
    
    .basit-langs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .basit-hero {
        padding: 24px 16px;
    }
    
    .basit-name {
        font-size: 1.5rem;
    }
    
    .basit-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .basit-section {
        padding: 20px 16px;
    }
}

/* ==========================================
   PRINT
   ========================================== */

@media print {
    .basit-profil-container {
        padding: 0;
    }
    
    .basit-social {
        display: none;
    }
    
    .basit-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ==========================================
   MODAL STYLES
   ========================================== */

.basit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1050;
    padding: 20px;
    overflow-y: auto;
}

.basit-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.basit-modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.basit-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.2s;
    z-index: 10;
}

.basit-modal-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.basit-modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.basit-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.basit-modal-header h2 i {
    color: #667eea;
}

.basit-modal-header p {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0;
}

.basit-modal-content form {
    padding: 32px;
}

.basit-form-group {
    margin-bottom: 20px;
}

.basit-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.basit-form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: #1e293b;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s;
    font-family: inherit;
}

.basit-form-control:hover {
    border-color: #cbd5e1;
}

.basit-form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.08);
}

.basit-form-control:read-only {
    background: #f8fafc;
    color: #94a3b8;
}

textarea.basit-form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Star Rating */
.basit-review-stars {
    display: flex;
    gap: 3px;
}

.basit-review-stars .star {
    color: #fbbf24;
    font-size: 0.875rem;
}

/* ==========================================
   RESPONSIVE UPDATES
   ========================================== */

@media (max-width: 768px) {
    .basit-actions {
        flex-direction: column;
    }
    
    .basit-actions .basit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .basit-modal-content {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .basit-modal-header {
        padding: 24px 20px 20px;
    }
    
    .basit-modal-header h2 {
        font-size: 1.25rem;
    }
    
    .basit-modal-content form {
        padding: 24px 20px;
    }
    
    .basit-modal-close {
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .basit-form-control {
        font-size: 16px; /* iOS zoom prevention */
    }
}

/* Eğitim Geçmişi Timeline Badge */
.basit-timeline-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Timeline Detail with Icon */
.basit-timeline-detail i,
.basit-timeline-org i,
.basit-timeline-date i {
    width: 16px;
    margin-right: 6px;
    color: #667eea;
    font-size: 0.85em;
}

/* Durum Badge'leri */
.basit-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    margin-top: 8px;
}

.basit-badge.badge-success {
    background: rgba(72, 187, 120, 0.15);
    color: #22543d;
}

.basit-badge.badge-primary {
    background: rgba(102, 126, 234, 0.15);
    color: #434190;
}

.basit-badge.badge-warning {
    background: rgba(237, 137, 54, 0.15);
    color: #7b341e;
}

.basit-badge.badge-danger {
    background: rgba(245, 101, 101, 0.15);
    color: #742a2a;
}

/* Timeline Icon Renkleri (Opsiyonel - tip'e göre) */
.basit-timeline-item[data-tip="lise"] .basit-timeline-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.basit-timeline-item[data-tip="yuksekokul"] .basit-timeline-icon {
    background: linear-gradient(135deg, #4299e1, #3182ce);
}

.basit-timeline-item[data-tip="universite"] .basit-timeline-icon {
    background: linear-gradient(135deg, #667eea, #5a67d8);
}

.basit-timeline-item[data-tip="yuksek_lisans"] .basit-timeline-icon {
    background: linear-gradient(135deg, #9f7aea, #805ad5);
}

.basit-timeline-item[data-tip="doktora"] .basit-timeline-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
}

.basit-timeline-item[data-tip="diger"] .basit-timeline-icon {
    background: linear-gradient(135deg, #718096, #4a5568);
}