/* Section Wrapper */
.beklentiler-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin: 100px auto;
   max-width:1400px!important;
    padding: 0 20px;
}

/* Card */
.beklenti-card {
    background: #ffffff;
    padding: 60px 45px;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Hover Effect */
.beklenti-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.12);
}

/* Subtle top glow */
.beklenti-card::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Icon */
.beklenti-icon {
    margin-bottom: 35px;
}

.beklenti-icon img {
    width: 75px;
    height: auto;
    transition: transform 0.3s ease;
}

.beklenti-card:hover .beklenti-icon img {
    transform: scale(1.08);
}

/* Title */
.beklenti-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
    letter-spacing: -0.5px;
}

/* Content */
.beklenti-icerik {
    text-align: left;
}

/* List */
.beklenti-icerik ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.beklenti-icerik ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 16px;
    color: #444;
}

/* Check Icon */
.beklenti-icerik ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    font-weight: bold;
    color: #2ecc71;
}

/* Paragraph */
.beklenti-icerik p {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {

    /* GRID'i tamamen kapat */
    .beklentiler-wrapper {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 20px 20px;
        margin: 60px auto;
    }

    .beklentiler-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Kartları slide yap */
    .beklenti-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
        padding: 45px 30px;
    }

}