/* Yeni Hizmetler Alanı */
.services-showcase {
    padding: 100px 0;
    /*background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);*/
    background-color: #f8faff;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #4F46E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    z-index: 0;
    transition: all 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .service-icon,
.service-card h3,
.service-card p {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}


.service-icon {
    width: 64px;
    height: 64px;
    margin: 8px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 1400px) {
    .services-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .services-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .service-card {
        padding: 16px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .service-card p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .services-showcase {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
        padding: 0 20px;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 20px;
    }

    .service-card {
        padding: 12px 8px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .service-card h3 {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .service-card p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 8px;
    }

    .service-card {
        padding: 10px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 6px;
    }

    .service-card h3 {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .service-card p {
        font-size: 13px;
    }
} 