﻿/* ================================
   ABOUT PAGE STYLES
   Hakkımızda Sayfası
   ================================ */

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/images/pattern-overlay.png') repeat;
        opacity: 0.1;
    }

    .page-header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

        .page-header h1 i {
            margin-right: 15px;
            color: #FFD700;
        }

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
}

/* HİKAYE */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
}

    .about-image::after {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        bottom: 20px;
        left: 20px;
        border: 3px solid rgba(255,255,255,0.5);
        border-radius: 15px;
        pointer-events: none;
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

.about-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

    .about-content h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #4CAF50, #FFD700);
        border-radius: 2px;
    }

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* MİSYON & VİZYON */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .mission-card::before,
    .vision-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(to right, #4CAF50, #FFD700);
    }

    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    }

.card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* DEĞERLERİMİZ */
.values-section {
    margin-bottom: 100px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

    .section-title.text-center {
        text-align: center;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .value-card:hover {
        border-color: #4CAF50;
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
    }

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.value-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* NİÇİN BİZ? */
.why-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 40px;
    border-radius: 30px;
    margin-bottom: 80px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

.why-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #FFD700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.why-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 20px 0 15px;
    font-weight: 600;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* CTA */
.about-cta {
    text-align: center;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
}

    .about-cta h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        font-weight: 600;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #4CAF50;
}

    .btn-primary:hover {
        background: #f8f9fa;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

    .btn-outline:hover {
        background: white;
        color: #4CAF50;
        transform: translateY(-3px);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision-grid,
    .values-grid,
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content h2,
    .section-title {
        font-size: 1.8rem;
    }

    .mission-vision-grid,
    .values-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }

    .card-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .about-cta h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .about-image::after {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .why-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
