#servicesShowcase {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50px;
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.showcase-title {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.showcase-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

#serviceCardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
}

.serviceCard {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.serviceCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.serviceCard:hover::before {
    transform: translateX(100%);
}

.serviceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-iconWrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-iconBg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    opacity: 0.1;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.serviceCard:hover .card-iconBg {
    opacity: 0.2;
    transform: scale(1.1);
}

.card-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.serviceCard:hover .card-icon {
    transform: scale(1.1);
    color: #60a5fa;
}

.card-title {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;
}

.card-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #000000;
    font-size: 14px;
}

.feature-item.cards {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-check::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.card-action:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.card-arrow {
    transition: transform 0.3s ease;
}

.card-action:hover .card-arrow {
    transform: translateX(5px);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 36px;
    }

    #serviceCardsGrid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .serviceCard {
        padding: 30px 20px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.serviceCard {
    animation: fadeInUp 0.6s ease backwards;
}

.serviceCard:nth-child(1) {
    animation-delay: 0.1s;
}

.serviceCard:nth-child(2) {
    animation-delay: 0.2s;
}

.serviceCard:nth-child(3) {
    animation-delay: 0.3s;
}
