/* Temel Stil Ayarları */
.servis-agi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.servis-arama {
    display: flex;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

#servis-ara {
    flex: 1;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-right: 1px solid #eee;
    outline: none;
}

#servis-ara-btn {
    padding: 0 25px;
    background: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

#servis-ara-btn:hover {
    background: #1a252f;
}

.servis-filtreleme {
    margin-bottom: 20px;
}

#il-filtresi {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.servis-istatistik {
    text-align: right;
    margin-bottom: 20px;
    font-style: italic;
    color: #7f8c8d;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Servis Listesi */
.servis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.servis-karti {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.servis-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.servis-kart-baslik {
    padding: 15px;
    background: #3498db;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.servis-kart-baslik h3 {
    margin: 0;
    font-size: 18px;
}

.servis-il {
   background: rgba(11, 17, 98, 0.91);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.servis-kart-icerik {
    padding: 15px;
}

.servis-kart-icerik p {
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.servis-kart-aksiyon {
    padding: 0 15px 15px 15px;
}

.servis-detay-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    width: 100%;
}

.servis-detay-btn:hover {
    background: #27ae60;
}

.servis-bulunamadi {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.uyari-ikon {
    margin-bottom: 20px;
}

.uyari-ikon svg {
    width: 60px;
    height: 60px;
    color: #e74c3c;
}

/* Popup Kapsayıcı */
.servis-popup-kapsayici {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Popup Stilleri */
.servis-popup {
    width: 100%;
    max-width: 700px;
    margin: auto;
}

.servis-popup-icerik {
    background: white;
    width: 100%;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    max-height: 90vh;
}

.servis-popup-kapat {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #7f8c8d;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s;
}

.servis-popup-kapat:hover {
    color: #e74c3c;
    transform: rotate(90deg);
}

#servis-detay-bilgileri {
    padding: 40px;
}

.servis-detay-baslik {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.servis-detay-baslik h2 {
    margin: 0;
    color: #2c3e50;
}

.servis-detay-il {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.servis-detay-icerik {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servis-detay-sol p, .servis-detay-sag p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.harita-linki {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2c3e50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s;
}

.harita-linki:hover {
    background: #1a252f;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .servis-detay-icerik {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .servis-grid {
        grid-template-columns: 1fr;
    }
    
    .servis-popup-kapsayici {
        padding: 10px;
    }
    
    .servis-popup {
        max-width: 95%;
    }
    
    .servis-popup-icerik {
        max-height: 85vh;
    }
    
    #servis-detay-bilgileri {
        padding: 20px;
    }
    
    .servis-popup-kapat {
        top: 10px;
        right: 15px;
        font-size: 24px;
        background: rgba(255, 255, 255, 0.9);
    }
}