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

.about-page-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-section.anim-in {
    opacity: 1;
    transform: translateY(0);
}

.about-section h2 {
    font-size: 32px;
    color: #043366;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FFC107;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Vurgulanmış metinler */
.highlight {
    color: #043366;
    font-weight: 600;
    background: rgba(255, 193, 7, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
}

/* Değerler Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.value-item.anim-in {
    opacity: 1;
    transform: scale(1);
}

.value-item.delay-1 {
    transition-delay: 0.1s;
}

.value-item.delay-2 {
    transition-delay: 0.2s;
}

.value-item.delay-3 {
    transition-delay: 0.3s;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-item i {
    font-size: 48px;
    color: #043366;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.value-item:hover i {
    color: #FFC107;
    transform: scale(1.1);
}

.value-item h3 {
    font-size: 22px;
    color: #043366;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Breadcrumb Stilleri */
.page-hero-breadcrumb .breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    background: transparent;
}

.page-hero-breadcrumb .breadcrumb-item {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
}

.page-hero-breadcrumb .breadcrumb-item a:hover {
    color: #FFC107;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.page-hero-breadcrumb .breadcrumb-item.active {
    color: #FFC107;
    font-weight: 600;
}

.page-hero p {
    font-size: 18px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-page-content {
        padding: 40px 0;
    }

    .about-section {
        padding: 30px 20px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .about-section p {
        font-size: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item {
        padding: 25px 20px;
    }

    .value-item i {
        font-size: 40px;
    }

    .value-item h3 {
        font-size: 20px;
    }

    .page-hero p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 25px 15px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .value-item {
        padding: 20px 15px;
    }
}

/* Animasyon sınıfları */
.anim-scale {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-in.anim-scale {
    animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Print stili */
@media print {
    .page-hero {
        background: none !important;
        color: #000 !important;
        padding: 20px 0 !important;
    }

    .page-hero h1 {
        color: #000 !important;
    }

    .about-section {
        box-shadow: none !important;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .value-item {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
}