/* Container */
.services-showcase-container {
    width: 100%;
    max-width: 100vw;
    padding: 50px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.services-showcase-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 30px;
    align-items: start;
}

/* Sol Taraf - Metin */
.services-text-section {
    padding-right: 0;
    position: sticky;
    top: 100px;
}

.services-main-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.services-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
    white-space: pre-line;
}

.services-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.services-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.services-button svg {
    transition: transform 0.3s ease;
}

.services-button:hover svg {
    transform: translateX(5px);
}

/* Sağ Taraf - Kartlar */
.services-cards-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.services-cards-scroll {
    display: flex;
    gap: 12px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    cursor: grab;
    user-select: none;
}

.services-cards-scroll:active {
    cursor: grabbing;
}

.services-cards-scroll::-webkit-scrollbar {
    display: none;
}

/* Service Card */
.service-card {
    flex: 0 0 260px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    transition: background 0.3s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.service-card-title {
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    background: #ffffff;
}

/* Custom Scrollbar */
.services-scrollbar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    position: relative;
    margin-top: 10px;
    cursor: pointer;
}

.services-scrollbar-thumb {
    position: absolute;
    height: 100%;
    background: #007bff;
    border-radius: 3px;
    width: 30%;
    left: 0;
    transition: background 0.2s ease;
    cursor: grab;
}

.services-scrollbar-thumb:hover {
    background: #0056b3;
}

.services-scrollbar-thumb:active {
    cursor: grabbing;
    background: #004085;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .services-showcase-wrapper {
        grid-template-columns: 380px 1fr;
        gap: 25px;
        padding: 0 25px;
    }
    
    .services-main-title {
        font-size: 28px;
    }
    
    .service-card {
        flex: 0 0 240px;
    }
    
    .service-card-image {
        height: 170px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .services-showcase-container {
        padding: 40px 0;
    }
    
    .services-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .services-text-section {
        padding-right: 0;
        text-align: center;
    }
    
    .services-main-title {
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .services-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .service-card {
        flex: 0 0 220px;
    }
    
    .service-card-image {
        height: 160px;
    }
    
    .service-card-title {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-showcase-container {
        padding: 35px 0;
    }
    
    .services-main-title {
        font-size: 22px;
    }
    
    .services-description {
        font-size: 13px;
    }
    
    .service-card {
        flex: 0 0 200px;
    }
    
    .service-card-image {
        height: 150px;
    }
}
