/* ==========================================================
   FEATURE SECTION — DESKTOP (3 KART)
========================================================== */

.features-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.feature-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.feature-card p {
    margin-top: 14px;
    font-size: 20px;
    font-weight: 500;
    color: #3A3A3A;
    font-family: 'Inter18Regular', sans-serif;
}



/* ==========================================================
   FEATURE — MOBILE SWIPER
========================================================== */

/* Swiper container — Masaüstünde gizli */
.features-swiper-mobile {
    display: none !important;
    width: 100%;
    padding: 0;
    position: relative;
}

.swiper-slide.feature-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Mobil görseller */
.feature-slide img {
    width: 90%;
    max-width: 420px;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    margin: 0 auto;
    display: block;
}

/* Mobil yazılar */
.feature-slide p {
    margin-top: 12px;
    width: 90%;
    font-size: 17px;
    color: #3A3A3A;
    font-family: 'Inter18Regular', sans-serif;
}



/* Pagination — Swiper default stil override */

.features-swiper-mobile .swiper-pagination {
    position: absolute;
    bottom: 55px !important;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    z-index: 20;
}

.features-swiper-mobile .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.8;
}

.features-swiper-mobile .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}



/* ==========================================================
   RESPONSIVE — MOBILE (0–600px)
========================================================== */

@media (max-width: 600px) {

    /* Desktop kartları kapat */
    .features-section {
        display: none !important;
    }

    /* Swiper’ı aç */
    .features-swiper-mobile {
        display: block !important;
        padding: 30px 0 60px 0;
    }

    .feature-slide img {
        height: 220px;
    }

    .feature-slide p {
        margin-top: 10px;
        font-size: 16px;
    }
}



/* ==========================================================
   RESPONSIVE — TABLET (600–900px)
========================================================== */

@media (max-width: 900px) and (min-width: 600px) {

    .features-section {
        gap: 20px;
        padding: 40px 10px;
    }

    .feature-card img {
        height: 220px;
    }

    .feature-card p {
        font-size: 18px;
    }
}
