/* Services Section Stilleri */
.services {
    background: #fefefe;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: #fefefe;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 36, 79, 0.06);
    border-left: 4px solid #4c9fd4;
}

.service-card:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 36, 79, 0.12);
}

.service-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    margin-top: 0.3rem;
}

.service-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #00244f;
    font-weight: 700;
}

.service-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.service-features li {
    color: #4c9fd4;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-card {
        gap: 1.5rem;
    }

    .service-body h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        min-width: 82vw;
        max-width: 82vw;
        scroll-snap-align: start;
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem;
        flex-shrink: 0;
    }

    .service-icon {
        font-size: 1.8rem;
        min-width: auto;
        margin-top: 0;
    }

    .service-body h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-body p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    .service-features {
        flex-direction: column;
        gap: 0.3rem;
    }

    .service-features li {
        font-size: 0.82rem;
    }

    .service-card:hover {
        transform: none;
    }

    /* Kaydırma ipucu */
    #services .container::after {
        content: '← Kaydırın →';
        display: block;
        text-align: center;
        font-size: 0.75rem;
        color: #aaa;
        margin-top: 0.5rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .service-card {
        min-width: 88vw;
        max-width: 88vw;
        padding: 1rem;
    }
}
