/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hakkimizda-bg.jpg') center center/cover no-repeat;
    background-attachment: fixed; /* Parallax efekti için (opsiyonel) */
    padding: 80px 0 60px;
    margin-bottom: 0;
}

    .page-header h1 {
        color: var(--white-color);
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

    .breadcrumb-item a {
        color: var(--white-color);
        text-decoration: none;
    }

    .breadcrumb-item.active {
        color: var(--white-color);
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.6);
    }

/* About Story Section */
.about-image-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--main-color);
    color: var(--white-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .about-badge span {
        font-size: 14px;
        font-weight: 400;
    }

    .about-badge strong {
        font-size: 20px;
        font-weight: 700;
    }

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .mission-card .icon-wrapper,
    .vision-card .icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--main-color), var(--link-hover-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

        .mission-card .icon-wrapper i,
        .vision-card .icon-wrapper i {
            font-size: 2.5rem;
            color: var(--white-color);
        }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.8rem;
        color: var(--dark-color);
        margin-bottom: 20px;
        font-weight: 600;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

    .feature-list li {
        padding: 10px 0;
        color: var(--gray-color);
        font-size: 1rem;
    }

        .feature-list li i {
            color: var(--main-color);
            margin-right: 10px;
            font-size: 1.1rem;
        }

/* Values Section */
.value-card {
    padding: 40px 20px;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

    .value-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--main-color), var(--link-hover-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .value-icon i {
        font-size: 2rem;
        color: var(--white-color);
    }

.value-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Team Section */
.team-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

    .team-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.team-image {
    position: relative;
    overflow: hidden;
}

    .team-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: all 0.3s ease;
    }

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

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--white-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .team-social a:hover {
        background: var(--main-color);
        color: var(--white-color);
        transform: translateY(-3px);
    }

.team-info {
    padding: 25px;
    text-align: center;
}

    .team-info h5 {
        font-size: 1.2rem;
        color: var(--dark-color);
        margin-bottom: 5px;
        font-weight: 600;
    }

    .team-info span {
        color: var(--main-color);
        font-size: 0.9rem;
    }

/* Statistics Section */
.stat-card {
    padding: 30px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main-color), var(--link-hover-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .stat-icon i {
        font-size: 2.5rem;
        color: var(--white-color);
    }

.stat-card h3 {
    font-size: 3rem;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--main-color), var(--link-hover-color));
}

    .cta-section h2 {
        color: var(--white-color);
    }

    .cta-section p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
    }

    .cta-section .btn-light {
        background: var(--white-color);
        color: var(--main-color);
        border: none;
        padding: 15px 40px;
        font-weight: 600;
        border-radius: 50px;
    }

        .cta-section .btn-light:hover {
            background: var(--dark-color);
            color: var(--white-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

/* Responsive Design */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-badge {
        width: 80px;
        height: 80px;
        bottom: 10px;
        right: 10px;
    }

        .about-badge span {
            font-size: 12px;
        }

        .about-badge strong {
            font-size: 16px;
        }

    .mission-card,
    .vision-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 60px 0 40px;
    }

        .page-header h1 {
            font-size: 2rem;
        }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .team-image img {
        height: 250px;
    }
}
