/* Ana Sayfa Hizmetler Bölümü - Slider */
.home-services-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.home-services-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Slider navigation */
.services-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.services-slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.home-service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-width: 320px;
    flex-shrink: 0;
}

.home-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.home-service-card:hover::before {
    opacity: 1;
}

.home-service-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.home-service-card__icon i {
    font-size: 2rem;
    color: white;
}

.home-service-card:hover .home-service-card__icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.home-service-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.home-service-card__description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.home-service-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-service-card__features li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.home-service-card__features li:last-child {
    border-bottom: none;
}

.home-service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.home-service-card__features li:hover {
    color: #1e293b;
    padding-left: 1.75rem;
    transition: all 0.2s ease;
}

/* CTA Button */
.home-services-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.btn-primary.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-primary.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: white;
    text-decoration: none;
}

.btn-primary.btn-large i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-primary.btn-large:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .home-service-card {
        padding: 1.5rem;
    }
    
    .home-service-card__icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }
    
    .home-service-card__icon i {
        font-size: 1.75rem;
    }
    
    .home-service-card__title {
        font-size: 1.1rem;
    }
    
    .btn-primary.btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-service-card {
        padding: 1.25rem;
    }
    
    .home-service-card__features li {
        font-size: 0.85rem;
        padding: 0.4rem 0 0.4rem 1.25rem;
    }
    
    .btn-primary.btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* Animasyon efektleri */
.home-service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.home-service-card:nth-child(1) { animation-delay: 0.1s; }
.home-service-card:nth-child(2) { animation-delay: 0.2s; }
.home-service-card:nth-child(3) { animation-delay: 0.3s; }
.home-service-card:nth-child(4) { animation-delay: 0.4s; }
.home-service-card:nth-child(5) { animation-delay: 0.5s; }
.home-service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover efektleri için ek animasyonlar */
.home-service-card__features li::before {
    transition: all 0.2s ease;
}

.home-service-card:hover .home-service-card__features li::before {
    background: #059669;
    transform: translateY(-50%) scale(1.2);
}

/* Gradient hover efekti */
.home-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(5, 150, 105, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.home-service-card:hover::after {
    opacity: 1;
}