/* Polaris Hizmet Alanları Widget Styles */

/* Ana Section */
.service-section {
    padding: 0;
    background-color: #0a160e;
}

.service-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Kartlar Container */
.service-cards-wrapper {
    display: flex;
    flex-direction: column;
    height: 700px;
    width: 100%;
    gap: 8px;
    padding: 0;
    overflow: hidden;
}

/* Her Bir Kart */
.service-card {
    position: relative;
    flex: 1;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    flex-grow: 2;
}

/* Link Stili */
.service-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    text-decoration: none;
    color: inherit;
}

/* Kart İçindeki Görsel */
.service-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: transform 0.7s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* Gradient Overlay */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(16, 34, 22, 0.9), transparent);
    z-index: 1;
}

/* Metin İçeriği */
.service-card-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
}

.service-card-title {
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-card-description {
    color: rgba(255, 255, 255, 0);
    font-family: 'Noto Sans', sans-serif;
    max-width: 320px;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-card:hover .service-card-description {
    color: rgba(255, 255, 255, 1);
    height: auto;
}

/* Responsive Tasarım */
@media (min-width: 768px) {
    .service-cards-wrapper {
        flex-direction: row;
    }

    .service-card-title {
        font-size: 1.875rem;
    }
}

