

/* GLOBAL */
.about-section {
    padding: 70px 20px;
    background: #f4f5f7;
}

.about-cards {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 50px;
}

   /* HERO SECTION */
.about-hero-section {
    padding: 70px 0 30px 0;
    background: linear-gradient(135deg, #480202 0%, #e23434 100%);
}

.about-hero-card {
    text-align: center;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.about-hero-image {
    width: 120px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 22px rgba(0,0,0,0.25);
}

.about-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
}

.about-hero-text {
    font-size: 1.05rem;
    color: #ffebef;
    margin-top: 12px;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

   /* ABOUT CARDS */
.about-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 45px 35px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.18);
}

.about-card h2 {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: #e91010;
    margin-bottom: 30px;
}

   /* VİZYON & MİSYON */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 25px;
}

.mission-box {
    background: #f7f8fa;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.10);
}

.mission-box h3 {
    color: #b3003f;
    font-size: 1.4rem;
    margin-bottom: 12px;
}
   /* DEĞERLER */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
}

.value-box {
    background: #f8f9fb;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: 0.30s ease;
}

.value-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.10);
}

.value-box h4 {
    color: #b3003f;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* ============================================================
   CTA
============================================================ */
.about-cta {
    background: linear-gradient(135deg, #da2424, #a26d6d);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    color: #fff;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.05rem;
}

.btn-cta {
    display: inline-block;
    margin-top: 15px;
    background: #fff;
    color: #b3003f;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-cta:hover {
    background: #ffe3e8;
    color: #8a002c;
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-card {
        padding: 30px;
    }

    .about-card {
        padding: 30px;
    }
}
