/* Kalite, referanslar ve kurumsal içerik sayfaları */

/* İç sayfa hero + breadcrumb (hakkimizda.css ile uyumlu) */
.page-hero {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, #1E293B 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 116, 144, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: #fff;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-light);
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-nav i {
    font-size: 0.65rem;
    opacity: 0.8;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .page-hero {
        height: 220px;
    }

    .page-hero-content h1 {
        font-size: 1.75rem;
    }
}

.content-box {
    border: 1px solid #E2E8F0;
}

.reference-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reference-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
}

.reference-card__logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.sidebar-widget h5 {
    color: var(--dark);
}