/* Hakkımızda Sayfası Stilleri */

.page-header {
    background: linear-gradient(135deg, #2C2C2C 0%, #4A4A4A 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C2C2C, #4A4A4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-card p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 60px 0;
}

.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-center h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title-center p {
    font-size: 1.1rem;
    color: #333;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: #C19882;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 152, 130, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2C2C2C, #4A4A4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.value-card h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.about-stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #4A4A4A 100%);
    color: white;
}

.about-stats-section *,
.about-stats-section .stat-item-about *,
.about-stats-section .about-stat-number,
.about-stats-section .about-stat-label,
.about-stats-section i {
    color: white !important;
}

.stat-item-about {
    text-align: center;
    color: white;
}

.stat-item-about i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-item-about .about-stat-number {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}

.stat-item-about .about-stat-label {
    font-size: 1.1rem !important;
    opacity: 0.95;
    color: white !important;
}

/* CTA Section */
.cta-about {
    padding: 80px 0;
    background: #2c3e50;
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-light-custom {
    background: white;
    color: #1a1a1a;
    border: 2px solid white;
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }

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

    .page-header p {
        font-size: 1rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .section-title-center h2 {
        font-size: 1.8rem;
    }

    .mv-card h3 {
        font-size: 1.5rem;
    }

    .stat-item-about .about-stat-number {
        font-size: 3rem !important;
    }

    .cta-about h2 {
        font-size: 1.8rem;
    }

    .cta-about p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}