/* =========================================================
   FOOD PROCESSING PAGE - GENEL
========================================================= */
.foodprocessing-page {
    background: #f8fafc;
    padding-bottom: 56px;
}

.foodprocessing-container {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   BREADCRUMB
========================================================= */
.foodprocessing-breadcrumb {
    padding: 18px 0 16px;
    background: transparent;
}

.foodprocessing-breadcrumb .foodprocessing-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #64748b;
}

.foodprocessing-breadcrumb a {
    color: #102a56;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.foodprocessing-breadcrumb a:hover {
    color: #f59e0b;
}

/* =========================================================
   HERO
========================================================= */
.foodprocessing-hero {
    margin-bottom: 42px;
}

.foodprocessing-hero-content {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(15, 43, 91, 0.08);
    min-height: 460px;
}

.foodprocessing-hero-text {
    padding: 54px 44px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.foodprocessing-hero-text h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1.08;
    font-weight: 800;
    color: #102a56;
    letter-spacing: -0.03em;
    max-width: 560px;
}

.foodprocessing-hero-line {
    width: 64px;
    height: 4px;
    background: #f59e0b;
    border-radius: 999px;
    margin: 22px 0 24px;
}

.foodprocessing-hero-text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: #334155;
    max-width: 560px;
}

.foodprocessing-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 30px;
    max-width: 580px;
}

.foodprocessing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.foodprocessing-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #d9e2ec;
    color: #102a56;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.foodprocessing-feature-text strong {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    color: #102a56;
    font-weight: 800;
    margin-bottom: 4px;
}

.foodprocessing-feature-text span {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: #64748b;
}

.foodprocessing-hero-image {
    position: relative;
    min-height: 460px;
    height: 100%;
    overflow: hidden;
    background: #e2e8f0;
}

.foodprocessing-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================================
   KATEGORİ BÖLÜMÜ
========================================================= */
.foodprocessing-category-section {
    margin-bottom: 42px;
}

.foodprocessing-category-section-title {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #102a56;
    letter-spacing: -0.02em;
}

.foodprocessing-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

/* =========================================================
   KART
========================================================= */
.foodprocessing-category-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 43, 91, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.foodprocessing-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(15, 43, 91, 0.14);
}

.foodprocessing-category-card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #e5e7eb;
}

.foodprocessing-category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.foodprocessing-category-card:hover .foodprocessing-category-card-image img {
    transform: scale(1.04);
}

.foodprocessing-category-card-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #102a56;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    z-index: 2;
}

.foodprocessing-category-card-body {
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.foodprocessing-category-card-title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.22;
    font-weight: 800;
    color: #102a56;
    letter-spacing: -0.02em;
}

.foodprocessing-category-card-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    flex-grow: 1;
}

.foodprocessing-category-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-size: 15px;
    font-weight: 700;
    color: #102a56;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.foodprocessing-category-card-link:hover {
    color: #f59e0b;
    transform: translateX(3px);
}

/* =========================================================
   AVANTAJ / SERVİS BANDI
========================================================= */
.foodprocessing-benefits {
    margin: 0 0 42px;
    padding: 24px 28px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(15, 43, 91, 0.08);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.foodprocessing-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.foodprocessing-benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    color: #102a56;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.foodprocessing-benefit-text strong {
    display: block;
    font-size: 15px;
    line-height: 1.25;
    color: #102a56;
    font-weight: 800;
    margin-bottom: 4px;
}

.foodprocessing-benefit-text span {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;
}

/* =========================================================
   ALT BİLGİ / HIGHLIGHT KUTUSU
========================================================= */
.foodprocessing-category-highlight {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 34px 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e4edf5;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(15, 43, 91, 0.07);
}

.foodprocessing-category-highlight-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #102a56;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 12px 28px rgba(16, 42, 86, 0.24);
}

.foodprocessing-category-highlight-content h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #102a56;
    letter-spacing: -0.02em;
}

.foodprocessing-category-highlight-content p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
}

.foodprocessing-category-highlight-content p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1199.98px) {
    .foodprocessing-hero-content {
        grid-template-columns: 1fr;
    }

    .foodprocessing-hero-image {
        min-height: 360px;
    }

    .foodprocessing-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .foodprocessing-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   SMALL TABLET
========================================================= */
@media (max-width: 991.98px) {
    .foodprocessing-container {
        width: min(100%, calc(100% - 28px));
    }

    .foodprocessing-hero-text {
        padding: 42px 28px 34px;
    }

    .foodprocessing-hero-text h1 {
        font-size: 36px;
    }

    .foodprocessing-hero-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .foodprocessing-hero-features {
        gap: 16px 18px;
    }

    .foodprocessing-feature-item {
        min-width: calc(50% - 10px);
    }

    .foodprocessing-category-card-title {
        font-size: 22px;
    }

    .foodprocessing-category-card-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .foodprocessing-category-highlight {
        padding: 28px 24px;
    }

    .foodprocessing-category-highlight-content h2 {
        font-size: 24px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767.98px) {
    .foodprocessing-page {
        padding-bottom: 42px;
    }

    .foodprocessing-breadcrumb {
        padding: 14px 0 14px;
    }

    .foodprocessing-hero {
        margin-bottom: 32px;
    }

    .foodprocessing-hero-content {
        border-radius: 22px;
        min-height: auto;
    }

    .foodprocessing-hero-text {
        padding: 34px 22px 28px;
    }

    .foodprocessing-hero-text h1 {
        font-size: 30px;
        line-height: 1.12;
    }

    .foodprocessing-hero-line {
        margin: 18px 0 20px;
    }

    .foodprocessing-hero-text p {
        font-size: 15px;
        line-height: 1.75;
    }

    .foodprocessing-hero-features {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .foodprocessing-feature-item {
        min-width: 100%;
    }

    .foodprocessing-hero-image {
        min-height: 280px;
    }

    .foodprocessing-category-section-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .foodprocessing-category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .foodprocessing-category-card-image {
        height: 220px;
    }

    .foodprocessing-category-card-badge {
        width: 52px;
        height: 52px;
        left: 14px;
        bottom: 14px;
        font-size: 21px;
    }

    .foodprocessing-category-card-body {
        padding: 22px 20px 22px;
    }

    .foodprocessing-category-card-title {
        font-size: 21px;
    }

    .foodprocessing-category-card-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .foodprocessing-benefits {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 20px;
        margin-bottom: 32px;
    }

    .foodprocessing-category-highlight {
        flex-direction: column;
        gap: 18px;
        padding: 24px 20px;
    }

    .foodprocessing-category-highlight-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .foodprocessing-category-highlight-content h2 {
        font-size: 22px;
    }

    .foodprocessing-category-highlight-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */
@media (max-width: 575.98px) {
    .foodprocessing-container {
        width: min(100%, calc(100% - 20px));
    }

    .foodprocessing-hero-text {
        padding: 28px 18px 24px;
    }

    .foodprocessing-hero-text h1 {
        font-size: 27px;
    }

    .foodprocessing-feature-icon,
    .foodprocessing-benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .foodprocessing-feature-text strong,
    .foodprocessing-benefit-text strong {
        font-size: 14px;
    }

    .foodprocessing-feature-text span,
    .foodprocessing-benefit-text span {
        font-size: 12px;
    }

    .foodprocessing-category-card-image {
        height: 205px;
    }

    .foodprocessing-category-card-title {
        font-size: 20px;
    }
}