/* ================= HERO ================= */

.surdur-hero {
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(to bottom, #f8f2ff, #f3ecff);
}

.surdur-hero h1 {
    font-size: 54px;
    font-weight: 800;
    color: #6c2ef4;
    letter-spacing: 0.07em;
}

.surdur-hero p {
    max-width: 750px;
    margin: 20px auto;
    font-size: 19px;
    color: #555;
    line-height: 1.7;
}

/* ================== ROW ================== */

.surdur-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 90px 10%;
}

.surdur-row.reverse {
    flex-direction: row-reverse;
}

.surdur-img img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

.surdur-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #6c2ef4;
    margin-bottom: 18px;
}

.surdur-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* ================= ICON LIST ================== */

.surdur-list {
    padding: 90px 10%;
    background: #faf7ff;
}

.surdur-list h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #6c2ef4;
    margin-bottom: 40px;
}

.surdur-iconlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.surdur-iconlist .item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.surdur-iconlist .item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.surdur-iconlist h3 {
    font-size: 20px;
    color: #6c2ef4;
    margin-bottom: 10px;
}

.surdur-iconlist p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 900px) {

    .surdur-row,
    .surdur-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .surdur-iconlist {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {

    .surdurul-section {
        padding: 40px 20px !important;
        text-align: center !important;
    }

    .surdurul-section h2,
    .surdurul-baslik,
    .surdurul-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        letter-spacing: 1px;
        word-break: break-word !important; /* taşmayı engeller */
        margin-bottom: 20px !important;
    }

    .surdurul-section p,
    .surdurul-text {
        font-size: 15px !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
    }

    /* Arka plan kutusu çok genişse küçült */
    .surdurul-bg,
    .surdurul-container {
        padding: 25px 15px !important;
        border-radius: 16px !important;
    }
}
/* =======================
   SÜRDÜRÜLEBİLİRLİK — MOBİL FIX
======================= */

@media (max-width: 768px) {

    .surdur-hero {
        padding: 80px 20px 60px !important;
        text-align: center;
    }

    .surdur-hero h1 {
        font-size: 32px !important;   /* 54px → 32px */
        line-height: 1.25 !important;
        letter-spacing: 0.02em !important; /* taşmayı önler */
        word-break: break-word !important; /* uzun kelime bölünür */
        white-space: normal !important; /* tek satıra zorlamayı kapatır */
        margin-bottom: 18px !important;
    }

    .surdur-hero p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        max-width: 90% !important;
        margin: 0 auto 30px !important;
    }

    /* Row düzeltme */
    .surdur-row {
        padding: 50px 20px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 35px !important;
    }

    .surdur-text h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .surdur-text p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* İkon grid tek sütun */
    .surdur-iconlist {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}
