﻿.academy-title {
    text-align: center;
    font-size: 26px;
}

.academy-hero {
    text-align: center;
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 50px;
    color: #444;
}

.academy-category {
    margin-top: 70px;
    margin-bottom: 30px;
    padding-left: 14px;
    border-left: 5px solid var(--orange);
    font-size: 22px;
    font-weight: 700;
    color: #0E516D;
}

/* ===== EĞİTMENLER ===== */
.trainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 24px;
}

.trainer-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

    .trainer-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

.trainer-info {
    position: absolute;
    inset: 0;
    background: rgba(14,81,109,.92);
    color: #fff;
    padding: 24px;
    transition: .3s;
}

    .trainer-info h5 {
        font-size: 18px;
        font-weight: 700;
    }

    .trainer-info span {
        font-size: 14px;
        opacity: .9;
    }

/* ===== TIMELINE ===== */
.academy-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
}

.step {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .step span {
        font-size: 12px;
        font-weight: 500;
    }

.line {
    flex: 1;
    height: 4px;
    background: #ddd;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 24px;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

    .stat-card h2 {
        font-size: 42px;
        color: var(--orange);
        font-weight: 800;
    }

/* ===== CTA ===== */
.academy-cta {
    margin-top: 90px;
    padding: 50px 30px;
    border-radius: 22px;
    background: linear-gradient(135deg,#0E516D,#08384d);
    color: #fff;
    text-align: center;
}

.academy-btn {
    display: inline-block; /* margin düzgün çalışsın */
    margin-top: 24px; /* yukarıdan boşluk */
    background: var(--orange);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .academy-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 12px;
    }

        .academy-timeline .step {
            flex: 0 0 calc(33.333% - 16px);
            text-align: center;
            font-size: 16px;
        }

        .academy-timeline .line {
            display: none;
        }
}
