/* ================================================
   Servis Fiyatları - Listing Sayfası CSS
   Tasarım: Barel Fiyatları sayfası ile birebir aynı
   ================================================ */

.servis-section {
    min-height: 100vh;
    background: #E8E8E8;
    position: relative;
    overflow: hidden;
    padding: 3rem 0 4rem;
}

.servis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.3) 3px, transparent 3px),
        radial-gradient(circle at 80% 70%, rgba(196, 30, 58, 0.28) 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, rgba(196, 30, 58, 0.08) 2.5px, transparent 2.5px);
    background-size: 60px 60px, 100px 100px, 80px 80px;
    background-position: 0 0, 50px 50px, 25px 25px;
    animation: servisRedDots 25s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes servisRedDots {
    0% {
        background-position: 0 0, 50px 50px, 25px 25px;
    }
    100% {
        background-position: 60px 60px, 150px 150px, 105px 105px;
    }
}

.servis-content {
    position: relative;
    z-index: 10;
}

.servis-title {
    font-size: 3rem;
    font-weight: 900;
    color: #2d3748;
    text-align: center;
    margin-bottom: 0.5rem;
}

.servis-title .accent {
    color: #c41e3a;
}

.servis-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* Kart Temel Stili */
.servis-card {
    display: block;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

/* Renk Varyantları */
.servis-card.color-red {
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2), 0 0 35px rgba(196, 30, 58, 0.25);
    border: 3px solid rgba(196, 30, 58, 0.3);
}
.servis-card.color-red:hover {
    border-color: rgba(196, 30, 58, 0.8);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.35), 0 0 60px rgba(196, 30, 58, 0.5);
    transform: translateY(-15px);
}

.servis-card.color-blue {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2), 0 0 35px rgba(59, 130, 246, 0.25);
    border: 3px solid rgba(59, 130, 246, 0.3);
}
.servis-card.color-blue:hover {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.35), 0 0 60px rgba(59, 130, 246, 0.5);
    transform: translateY(-15px);
}

.servis-card.color-green {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2), 0 0 35px rgba(16, 185, 129, 0.25);
    border: 3px solid rgba(16, 185, 129, 0.3);
}
.servis-card.color-green:hover {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.35), 0 0 60px rgba(16, 185, 129, 0.5);
    transform: translateY(-15px);
}

.servis-card.color-purple {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2), 0 0 35px rgba(139, 92, 246, 0.25);
    border: 3px solid rgba(139, 92, 246, 0.3);
}
.servis-card.color-purple:hover {
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.35), 0 0 60px rgba(139, 92, 246, 0.5);
    transform: translateY(-15px);
}

.servis-card.color-orange {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2), 0 0 35px rgba(249, 115, 22, 0.25);
    border: 3px solid rgba(249, 115, 22, 0.3);
}
.servis-card.color-orange:hover {
    border-color: rgba(249, 115, 22, 0.8);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.35), 0 0 60px rgba(249, 115, 22, 0.5);
    transform: translateY(-15px);
}

.servis-card.color-pink {
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2), 0 0 35px rgba(236, 72, 153, 0.25);
    border: 3px solid rgba(236, 72, 153, 0.3);
}
.servis-card.color-pink:hover {
    border-color: rgba(236, 72, 153, 0.8);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.35), 0 0 60px rgba(236, 72, 153, 0.5);
    transform: translateY(-15px);
}

/* Görsel Alanı */
.servis-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.servis-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fiyatları Gör Badge */
.servis-detay-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(196, 30, 58, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
}

/* Alt Başlık Overlay */
.servis-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    padding: 40px 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

.servis-title-overlay h3 {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.servis-title-overlay i {
    color: #c41e3a;
    margin-right: 8px;
}

/* İlçe Bilgisi */
.servis-ilce-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    z-index: 3;
}

/* Kırmızı çizgi */
.red-line {
    height: 2px;
    background: linear-gradient(135deg, #b80211 0%, #f93f48 50%, #b80211 100%);
    box-shadow: 0 0 15px rgba(242, 39, 70, 0.8);
    z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
    .servis-title {
        font-size: 2rem;
    }

    .servis-img-wrapper {
        height: 250px;
    }

    .servis-title-overlay h3 {
        font-size: 1.1rem;
    }
}
