/* 'OLCME VE DEGERLENDIRME' PAGE - PREMIUM DESIGN */
/* Consistent with manevi.css, misyon.css, ogretmenler.css */

/* 1. HERO SECTION */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(26, 86, 219, 0.65)),
        url('../image/olcum_bg.png') center/cover no-repeat fixed;
    color: white;
    padding: 180px 0 140px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    margin-bottom: -60px;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-section p {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.divider {
    height: 4px;
    width: 80px;
    margin: 20px auto 30px;
    border-radius: 2px;
    background: linear-gradient(90deg, #1a56a7, #f9a826);
}

/* 2. MAIN CONTENT SECTION */
.assessment-system {
    background-color: #f8f9fa;
    padding: 100px 0 80px;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header .lead {
    font-size: 1.2rem;
    color: #6c757d;
}

/* 3. ASSESSMENT CARDS */
.assessment-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
}

.assessment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Specific Card Colors */
/* A - Blue */
.assessment-card.card-a {
    border-top-color: #1a56db;
}

.assessment-card.card-a .assessment-number {
    background: linear-gradient(135deg, #1a56db, #4a90e2);
}

.assessment-card.card-a .assessment-features i {
    color: #1a56db;
}

.assessment-card.card-a .highlight-box {
    background-color: rgba(26, 86, 219, 0.08);
    border-left-color: #1a56db;
}

/* B - Green */
.assessment-card.card-b {
    border-top-color: #2ecc71;
}

.assessment-card.card-b .assessment-number {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.assessment-card.card-b .assessment-features i {
    color: #2ecc71;
}

.assessment-card.card-b .highlight-box {
    background-color: rgba(46, 204, 113, 0.08);
    border-left-color: #2ecc71;
}

/* C - Yellow/Orange */
.assessment-card.card-c {
    border-top-color: #f39c12;
}

.assessment-card.card-c .assessment-number {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.assessment-card.card-c .assessment-features i {
    color: #f39c12;
}

.assessment-card.card-c .highlight-box {
    background-color: rgba(243, 156, 18, 0.08);
    border-left-color: #f39c12;
}

/* D - Purple/Info */
.assessment-card.card-d {
    border-top-color: #9b59b6;
}

.assessment-card.card-d .assessment-number {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.assessment-card.card-d .assessment-features i {
    color: #9b59b6;
}

.assessment-card.card-d .highlight-box {
    background-color: rgba(155, 89, 182, 0.08);
    border-left-color: #9b59b6;
}


.assessment-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.assessment-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.assessment-header h3 {
    margin: 0 0 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.assessment-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    height: 220px;
    position: relative;
}

.assessment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.assessment-card:hover .assessment-image img {
    transform: scale(1.1);
}

.assessment-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.assessment-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.assessment-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #444;
    font-size: 0.95rem;
}

.assessment-features li i {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.1rem;
}

.highlight-box {
    padding: 20px;
    border-radius: 10px;
    border-left-width: 4px;
    border-left-style: solid;
}

.highlight-box p {
    margin: 0;
    font-weight: 600;
    font-style: italic;
    color: #333;
    font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section {
        padding: 150px 0 100px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .assessment-card {
        padding: 30px;
    }
}