/* Gelişime Etki Düzeyi - Özel Tasarım */
.development-impact-section {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.development-impact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.development-impact-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.impact-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.impact-main-stat {
    text-align: center;
    flex: 1;
}

.impact-percentage {
    font-size: 4rem;
    font-weight: 800;
    color: #4ECDC4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-progress-ring {
    width: 200px;
    height: 200px;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 200px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-in-out forwards;
    stroke: #4ECDC4;
}

.circular-chart.green .circle {
    stroke: #4ECDC4;
}

.percentage {
    fill: white;
    font-family: 'Galano Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
    font-weight: bold;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.impact-description {
    flex: 2;
    padding-left: 20px;
}

.impact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4ECDC4;
}

.impact-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Gelişime Etki Responsive */
@media (max-width: 768px) {
    .impact-showcase {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .impact-description {
        padding-left: 0;
    }
    
    .impact-percentage {
        font-size: 3rem;
    }
    
    .development-impact-section h3 {
        font-size: 1.5rem;
    }
}

/* Modern İl ve İlçe Bazlı Sonuçlar Stilleri */
.category-tabs {
    margin: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-tab-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-tab-btn {
    padding: 25px 20px;
    background: white;
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tab kartları için ikon alanı */
.category-tab-btn::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Her kategori için özel ikonlar */
.category-tab-btn[data-category="para_yonetimi_guveni"]::before {
    content: '💰';
}

.category-tab-btn[data-category="butce_planlamasi"]::before {
    content: '💰';
}

.category-tab-btn[data-category="finansal_urun_secimi"]::before {
    content: '🏦';
}

.category-tab-btn[data-category="isletme_hane_butcesi_ayrimi"]::before {
    content: '📊';
}

.category-tab-btn[data-category="enflasyon_korunma"]::before {
    content: '🛡️';
}

.category-tab-btn[data-category="duzenli_tasarruf"]::before {
    content: '💎';
}

.category-tab-btn[data-category="yatirim_arastirmasi"]::before {
    content: '🔍';
}

.category-tab-btn[data-category="borc_odeme_disiplini"]::before {
    content: '⏰';
}

.category-tab-btn[data-category="getiri_hesaplamalari"]::before {
    content: '📈';
}

.category-tab-btn[data-category="gelir_gider_takibi"]::before {
    content: '📋';
}

.category-tab-btn[data-category="kredi_notu_iyilestirme"]::before {
    content: '⭐';
}

.category-tab-btn[data-category="enflasyon_etkisi"]::before {
    content: '📉';
}

.category-tab-btn[data-category="bilesik_faiz"]::before {
    content: '🧮';
}

/* Tab başlık alanı */
.category-tab-btn .tab-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-left: 80px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* Tab açıklama alanı */
.category-tab-btn .tab-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 80px;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* Hover ve aktif durumlar */
.category-tab-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.category-tab-btn:hover::before {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: scale(1.1);
}

.category-tab-btn:hover .tab-title {
    color: #28a745;
}

.category-tab-btn.active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
    border-color: #28a745;
}

.category-tab-btn.active::before {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.category-tab-btn.active .tab-title,
.category-tab-btn.active .tab-description {
    color: white;
}

.category-tab-content {
    display: none;
    animation: fadeInUp 0.5s ease-in-out;
}

.category-tab-content.active {
    display: block;
}

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

.results-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.result-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
    border-radius: 20px 20px 0 0;
}

.result-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.result-card-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
    position: relative;
}

.result-card-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid #20c997;
}

.result-card-header h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.result-card-body {
    padding: 30px 25px;
    position: relative;
}

.result-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 15px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-increase {
    text-align: center;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #c3e6cb;
    position: relative;
    overflow: hidden;
}

.result-increase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.increase-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #28a745;
    text-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
    position: relative;
    z-index: 1;
}

/* Para Yönetimi Güveni Kartları için Özel Modern Stil */
.para-yonetimi-guveni .result-card-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.para-yonetimi-guveni .result-card-header::after {
    border-top-color: #20c997;
}

.para-yonetimi-guveni .result-increase {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #c3e6cb;
}

.para-yonetimi-guveni .increase-value {
    color: #28a745;
    text-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

/* Kart Yorum Alanı */
.result-card-comment {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid #28a745;
    position: relative;
}

.result-card-comment::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.result-card-comment p {
    margin: 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    padding-left: 15px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .results-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .category-tabs {
        margin: 20px 0;
        padding: 20px;
        border-radius: 15px;
    }
    
    .category-tab-buttons {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .category-tab-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .results-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-card-header {
        padding: 20px 15px;
    }
    
    .result-card-header h4 {
        font-size: 1.2rem;
    }
    
    .result-card-body {
        padding: 20px 15px;
    }
    
    .result-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .result-increase {
        padding: 15px;
    }
    
    .increase-value {
        font-size: 1.4rem;
    }
    
    .result-card-comment {
        padding: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .category-tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .result-card-header h4 {
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .increase-value {
        font-size: 1.3rem;
    }
}

/* Cinsiyet Bazlı Analiz Stilleri */
.gender-comparison-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.comparison-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.comparison-card {
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.women-advantage {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
}

.men-advantage {
    background: linear-gradient(135deg, #4ecdc4, #6dd5ed);
    color: white;
}

.comparison-header h5 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.area-name {
    font-weight: 500;
}

.advantage {
    font-weight: 700;
    font-size: 1.1rem;
}

.gender-specific-section {
    margin: 50px 0;
    padding: 30px;
    border-radius: 15px;
}

.men-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.women-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

.men-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.women-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.men-card .stat-number,
.women-card .stat-number {
    color: #4ECDC4;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.men-card .stat-label,
.women-card .stat-label {
    color: white;
    font-weight: 600;
}

.men-card .stat-description,
.women-card .stat-description {
    color: rgba(255,255,255,0.9);
}

/* Responsive için cinsiyet analizi */
@media (max-width: 768px) {
    .comparison-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .men-stats, .women-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .men-stats, .women-stats {
        grid-template-columns: 1fr;
    }
}
