/* === ÖLÇEKLER ÖZEL HEADER === */
.olcekler-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
   
}

.header-icon {
    margin-bottom: 15px;
}

.header-image-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.olcekler-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.olcekler-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* === SOCIAL MEDIA ICONS === */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* === MOBILE RESPONSIVE UPDATES === */
@media (max-width: 768px) {
    .header-image-icon {
        width: 60px;
        height: 60px;
    }
    
    .olcekler-header h1 {
        font-size: 2rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .header-image-icon {
        width: 50px;
        height: 50px;
    }
    
    .olcekler-header h1 {
        font-size: 1.8rem;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .social-links {
        gap: 10px;
    }
}

/* === MEVCUT STİLLER AYNI KALIYOR === */
.olcekler-filters {
    padding: 25px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
}

.category-filter {
    min-width: 200px;
}

.category-filter select {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

/* === KATEGORİLER BÖLÜMÜ === */
.olcekler-categories {
    padding: 20px 30px;
}

.category-group {
    margin-bottom: 10px;
}

.category-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
}

.category-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.scale-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.category-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 0 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-content.active {
    max-height: 2000px;
}

/* === ÖLÇEK KARTLARI === */
.scale-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.scale-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.scale-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.scale-card p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.scale-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #95a5a6;
}

.scale-time, .scale-questions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.start-btn {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.start-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

/* === ÖLÇEK MODAL === */
.scale-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-weight: 500;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.modal-body {
    padding: 20px;
}

.question {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.question-text {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.option:hover {
    background: #f8f9fa;
}

.option input {
    margin: 0;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-right: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    transition: width 0.3s ease;
}

/* === ÖLÇEK SONUÇ SAYFASI === */
.results-container {
    text-align: center;
    padding: 40px 20px;
}

.result-score {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.result-message {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.result-description {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.recommendations {
    text-align: left;
    margin-bottom: 30px;
}

.recommendations h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.recommendations ul {
    list-style: none;
    padding: 0;
}

.recommendations li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recommendations li:before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .olcekler-header h1 {
        font-size: 2rem;
    }
    
    .olcekler-header p {
        font-size: 1rem;
    }
    
    .olcekler-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box, .category-filter {
        min-width: 100%;
    }
    
    .category-content {
        grid-template-columns: 1fr;
    }
    
    .scale-card {
        margin-bottom: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .progress-bar {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .olcekler-header {
        padding: 30px 20px;
    }
    
    .olcekler-header h1 {
        font-size: 1.8rem;
    }
    
    .olcekler-categories {
        padding: 15px 20px;
    }
    
    .category-header {
        padding: 12px 15px;
    }
    
    .scale-card {
        padding: 15px;
    }
    
    .options {
        gap: 5px;
    }
    
    .option {
        padding: 6px;
    }
}

/* === ANİMASYONLAR === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.scale-card {
    animation: fadeIn 0.5s ease;
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content {
    animation: slideIn 0.3s ease;
}