/* ==========================================
   HİZMET BÖLGELERİ SAYFASI STİLLERİ
   ========================================== */
.locations-wrap {
    padding: 60px 0;
}

.location-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.loc-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.loc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.loc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.loc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.loc-title h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.loc-badge {
    font-size: 11px;
    font-weight: 700;
    background: #e0f2fe;
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.loc-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.loc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.loc-pills span {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: #475569;
}

.loc-shift-info {
    font-size: 12px;
    font-weight: 600;
    color: #0369a1;
    background: #f0f9ff;
    border-left: 3px solid var(--primary);
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loc-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    text-align: center;
    padding: 12px;
    border-radius: var(--radius);
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    box-sizing: border-box;
}

.loc-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

/* ==========================================
   RESPONSIVE (MOBİL) DÜZENLEMELER
   ========================================== */
@media (max-width: 768px) {
    .locations-wrap {
        padding: 35px 0;
    }

    .location-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .loc-card {
        padding: 20px;
    }

    .loc-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .loc-title h3 {
        font-size: 1.15rem;
    }

    .loc-btn {
        width: 100%;
    }
}