.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 0;
    padding-left: 100px;
    padding-right: 100px;
    margin: 0 0 0 0;
    background: #111111;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.services-container {
    position: relative;
    width: 100%;
    padding-top: 0;
    padding-bottom: 100px;
    padding-left: 100px;
    padding-right: 100px;
    /*background: #222222;*/
    border-radius: 0;
}

/* Görsel */
.services-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}

/* Başlık */
.services-title {
    font-size: clamp(3.7rem, 5vw, 5rem);
    line-height: 1.2;
    margin: 0 0 0 0;
    font-weight: 200;
    letter-spacing: -1px;
    text-align: center;
}

.services-title strong {
    font-weight: 500;
}

/* Tablet ≤1024px */
@media (max-width:1024px){
    .services {
        padding-left: 50px;
        padding-right: 50px;
    }

    .services-container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .services-img {
        border-radius: 20px;
    }

    .services-title {
        font-size: 2.9rem;
    }
    .services-subtitle {
        font-size: 1.4rem;
    }
}

/* Telefon ≤740px */
@media (max-width:740px){
    .services {
        padding-left: 10px;
        padding-right: 10px;
    }

    .services-container {
        padding-left: 0;
        padding-right: 0;
    }

    .services-img {
       border-radius: 15px;
    }
    .services-title {
        font-size: 2rem;
    }
    .services-subtitle {
        font-size: 1.2rem;
    }
}

/* Desktop / Tablet yatay (1025px - 1599px) */
@media (min-width:1025px) and (max-width:1599px){
    .services-container {
        border-radius: 25px;
        overflow: hidden;
        position: relative;
        max-width: 1599px; /* opsiyonel, container’ı sınırla */
        margin-left: auto;
        margin-right: auto;
    }

    .services-img {
        width: 100%;
        height: auto;
        min-height: 400px;       /* minimum yükseklik */
        object-fit: cover;
        aspect-ratio: 16 / 9;    /* oranı hero gibi koru */
        display: block;
        margin: 0 auto;
        border-radius: 25px;
    }
}

/* Geniş ekranlar ≥1600px */
@media (min-width:1600px){
    .services-container {
        max-width: 1600px;       /* hero ile uyumlu */
        margin-left: auto;
        margin-right: auto;
        border-radius: 25px;
        overflow: hidden;
        position: relative;
    }

    .services-img {
        width: 100%;
        height: auto;
        min-height: 400px;
        object-fit: cover;
        aspect-ratio: 16 / 9;
        display: block;
        margin: 0 auto;
        border-radius: 25px;
    }
}

/* Telefon ≤500px */
@media (max-width:500px) {

    /* mevcut <br> korunacak */
    .services-title br {
        display: block; /* her zaman alt satıra düşsün */
    }

    /* Mobilde kural: Check out / Professional Demos */
    .services-title .mobile-break {
        display: block; /* satırı burada kır */
        content: ''; /* pseudo-element değil, span kullanıyoruz */
        height: 0; /* görsel boşluk yaratmaz */
    }
}

.section-subtitle {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 100px;
    margin-right: 100px;
    font-size: 1.6rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.section-subtitle strong {
    font-weight: 500;
}

@media (max-width:1024px){
    .section-subtitle {
        font-size: 1.4rem;
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (max-width:740px){
    .section-subtitle {
        font-size: 1.2rem;
        margin-left: 10px;
        margin-right: 10px;
    }
}