/* Hizmet Detay Stili */
.service-detail {
    width: 90%;
    height: 90%;
    background-color: #1E1E1E;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.website-content {
    transition: opacity 0.3s ease;
}

.service-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.service-detail-icon i {
    font-size: 24px;
    color: #fff;
}

.service-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.service-detail-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-body p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.service-detail-features {
    margin: 20px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    animation: fadeInRight 0.5s forwards;
    opacity: 0;
}

.feature:nth-child(1) {
    animation-delay: 0.2s;
}

.feature:nth-child(2) {
    animation-delay: 0.4s;
}

.feature:nth-child(3) {
    animation-delay: 0.6s;
}

.feature i {
    color: #4F46E5;
    margin-right: 10px;
    font-size: 18px;
}

.feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.service-detail-btn {
    margin-top: auto;
    padding: 12px 25px;
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
    align-self: flex-start;
}

.service-detail-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.service-detail-btn:active {
    transform: translateY(0);
}

/* Aktif Kart Stili */
.service-card-item.active {
    border-color: #4F46E5;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    background-color: rgba(79, 70, 229, 0.1);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 767.98px) {
    .service-detail {
        width: 100%;
        height: 100%;
        padding: 15px;
    }
    
    .service-detail-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-detail-title {
        font-size: 20px;
    }
    
    .service-detail-body p {
        font-size: 14px;
    }
    
    .service-detail-btn {
        width: 100%;
        text-align: center;
    }
}
