/*
 * DOSYA: hizmet-bolgesi.css
 * KONUM: wwwroot/css/hizmet-bolgesi.css
 * KULLANIM: Hizmet Bölgesi Sayfaları (İlçe bazlı SEO sayfaları)
 */

/* İlçe Kartları */
.district-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg, 12px);
    background: var(--white, #fff);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    color: var(--text-dark, #333);
}

.district-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color, #1a365d);
}

.district-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color, #1a365d), var(--primary-dark, #0f2440));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.district-card:hover .district-card-icon {
    transform: scale(1.1);
}

.district-card-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.district-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color, #1a365d);
    margin-bottom: 0.5rem;
}

.district-card-text {
    font-size: 0.9rem;
    color: var(--text-muted, #6c757d);
    margin-bottom: 1rem;
}

.district-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color, #b8a179);
    transition: all 0.3s ease;
}

.district-card:hover .district-card-link {
    color: var(--primary-color, #1a365d);
}

/* CTA Kutusu */
.cta-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg, 12px);
    border: 2px dashed var(--primary-color, #1a365d);
}

.cta-box h3 {
    color: var(--primary-color, #1a365d);
    font-weight: 700;
}

/* İlçe Detay Sayfası */
.district-info-card {
    padding: 2rem 0;
}

.district-info-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color, #1a365d);
    margin-bottom: 1.5rem;
}

.district-info-card .lead {
    font-size: 1.1rem;
    color: var(--text-muted, #6c757d);
    line-height: 1.8;
}

.district-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

/* Harita Placeholder */
.district-map-card {
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-color, #1a365d), var(--primary-dark, #0f2440));
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Hizmet Kartları (İlçe Detay) */
.service-district-card {
    background: var(--white, #fff);
    border-radius: var(--radius-lg, 12px);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-district-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-district-card .service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color, #1a365d);
}

.service-district-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color, #1a365d);
    margin-bottom: 0.75rem;
}

.service-district-card p {
    font-size: 0.9rem;
    color: var(--text-muted, #6c757d);
    margin-bottom: 1rem;
}

/* CTA Bölümü */
.district-cta {
    background: linear-gradient(135deg, var(--primary-color, #1a365d), var(--primary-dark, #0f2440));
}

/* Diğer İlçeler */
.other-districts {
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .district-info-card h2 {
        font-size: 1.5rem;
    }

    .map-placeholder {
        min-height: 250px;
        padding: 3rem 1.5rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }
}
