/* ======================================================
    1. ANA YAPI VE ZEMİN (Mevcut yapı korundu)
====================================================== */
.quality-policy-wrap { 
    padding: 150px 0; 
    background: #ffffff; 
    font-family: 'Inter', sans-serif; 
    position: relative;
    overflow: hidden;
}

.quality-policy-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(245, 124, 34, 0.03) 0%, transparent 35%),
                radial-gradient(circle at 100% 100%, rgba(15, 42, 107, 0.02) 0%, transparent 35%);
    pointer-events: none;
}

/* ======================================================
    2. BAŞLIK BÖLÜMÜ
====================================================== */
.policy-header-section { 
    text-align: center; 
    margin-bottom: 80px; 
    position: relative;
    z-index: 2;
}

.badge-quality { 
    background: rgba(245, 124, 34, 0.1); 
    color: #F57C22; 
    padding: 10px 24px; 
    border-radius: 100px; 
    font-size: 13px; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    border: 1px solid rgba(245, 124, 34, 0.2);
    display: inline-block;
}

.display-title { 
    font-size: 56px; 
    color: #0F2A6B; 
    font-weight: 800; 
    margin-top: 25px; 
    line-height: 1.1; 
}

.display-title small { 
    display: block; 
    font-size: 20px; 
    font-weight: 400; 
    color: #94a3b8; 
    margin-top: 10px;
}

.header-line { 
    width: 60px; 
    height: 5px; 
    background: linear-gradient(90deg, #F57C22, #0F2A6B); 
    margin: 30px auto 0; 
    border-radius: 10px; 
}

/* ======================================================
    3. METİN VE GRID ALANI
====================================================== */
.quality-text-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    position: relative;
    z-index: 2;
}

.lead-text { 
    font-size: 24px; 
    line-height: 1.6; 
    color: #0F2A6B; 
    font-weight: 500; 
    text-align: center;
    margin-bottom: 70px;
}

.quality-details-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    margin-bottom: 80px; 
}

.column-title { 
    font-size: 24px; 
    color: #0F2A6B; 
    margin-bottom: 20px; 
    font-weight: 700; 
}

.quality-column p { 
    font-size: 16px; 
    line-height: 1.8; 
    color: #475569; 
    text-align: justify; 
}

/* ======================================================
    4. İLKELER KARTI
====================================================== */
.policy-principles { 
    background: linear-gradient(145deg, #0F2A6B 0%, #091d4f 100%); 
    padding: 70px; 
    border-radius: 40px; 
    box-shadow: 0 30px 60px rgba(15, 42, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.policy-principles::after {
    content: "CLEMIX";
    position: absolute;
    bottom: -15px;
    right: 20px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.quality-list-full { 
    list-style: none; 
    padding: 0; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 35px; 
}

.quality-list-full li { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    font-size: 16px; 
    font-weight: 600; 
    color: #ffffff; 
    transition: transform 0.3s ease;
}

.quality-list-full li:hover {
    transform: translateX(10px);
}

.check-box { 
    width: 38px; 
    height: 38px; 
    background: #F57C22; 
    color: #fff; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    box-shadow: 0 4px 15px rgba(245, 124, 34, 0.4);
    font-size: 18px;
}

/* ======================================================
    5. VİZYON KAPANIŞ (Yeni Eklenen)
====================================================== */
.quality-vision-footer {
    margin-top: 100px;
    text-align: center;
    padding: 40px;
    position: relative;
}

.quality-vision-footer p {
    font-size: 28px;
    font-weight: 700;
    color: #0F2A6B;
    font-style: italic;
    opacity: 0.9;
    position: relative;
    display: inline-block;
}

/* Tırnak İşareti Süsü */
.quality-vision-footer p::before {
    content: "“";
    position: absolute;
    top: -40px;
    left: -30px;
    font-size: 100px;
    color: #F57C22;
    opacity: 0.2;
    font-family: serif;
}

/* ================================================================
   KALİTE POLİTİKASI MOBİL DÜZENLEME (768px VE ALTI)
   ================================================================ */
@media screen and (max-width: 768px) {
    .quality-policy-wrap {
        padding: 60px 15px !important;
    }

    .display-title {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }

    .display-title small {
        font-size: 16px !important;
    }

    .lead-text {
        font-size: 18px !important;
        margin-bottom: 40px !important;
    }

    .quality-details-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .quality-column p {
        text-align: center !important;
    }

    .policy-principles {
        padding: 30px 20px !important;
        border-radius: 25px !important;
    }

    .quality-list-full {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .policy-principles::after {
        font-size: 50px !important;
    }

    .quality-vision-footer {
        margin-top: 50px !important;
    }

    .quality-vision-footer p {
        font-size: 20px !important;
    }
}